Return True if file is a CSS file.
(self)
| 517 | return self.src_uri.endswith(('.js', '.javascript', '.mjs')) |
| 518 | |
| 519 | def is_css(self) -> bool: |
| 520 | """Return True if file is a CSS file.""" |
| 521 | return self.src_uri.endswith('.css') |
| 522 | |
| 523 | |
| 524 | _default_exclude = pathspec.gitignore.GitIgnoreSpec.from_lines(['.*', '/templates/']) |
no outgoing calls