123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172 |
- exclude: >
- (?x)(
- LICENSE$|
- \.snap$|
- \.map$|
- \.map\.js$|
- ^tests/sentry/lang/.*/fixtures/|
- ^tests/fixtures/|
- ^src/sentry/static/sentry/vendor/|
- ^tests/sentry/lang/javascript/example-project/|
- ^src/.*/locale/|
- ^src/sentry/data/
- )
- repos:
- # For some tools, we install them locally (in the virtualenv).
- # This makes it easier to use them directly (as opposed to pre-commit run),
- # and it's also faster as pre-commit doesn't have to manage them.
- # The thing we lose here is autoupdate, but we have git hooks that
- # let you know when requirements-pre-commit.txt changes.
- - repo: local
- hooks:
- # Configuration for black exists in pyproject.toml,
- # but we let pre-commit take care of the file filtering.
- - id: black
- name: black
- entry: black
- language: system
- types: [python]
- # Configuration for isort exists in pyproject.toml,
- # but we let pre-commit take care of the file filtering.
- - id: isort
- name: isort
- entry: isort
- language: system
- types: [python]
- # Configuration for flake8 exists in setup.cfg,
- # but we let pre-commit take care of the file filtering.
- - id: flake8
- name: flake8
- entry: flake8
- language: system
- types: [python]
- log_file: '.artifacts/flake8.pycodestyle.log'
- - id: pyupgrade
- name: pyupgrade
- entry: pyupgrade
- args: ['--py36-plus']
- language: system
- types: [python]
- # We can't change this mock to unittest.mock until Python 3.8,
- # refer to the comment in this file.
- exclude: 'src/sentry/utils/compat/mock.py'
- - repo: https://github.com/sirosen/check-jsonschema
- rev: 0.3.0
- hooks:
- - id: check-github-actions
- - id: check-github-workflows
- - repo: https://github.com/pre-commit/pre-commit-hooks
- rev: v3.4.0
- hooks:
- - id: check-case-conflict
- - id: check-executables-have-shebangs
- - id: check-merge-conflict
- - id: check-symlinks
- - id: end-of-file-fixer
- exclude_types: [svg]
- - id: trailing-whitespace
- exclude_types: [svg]
- - id: debug-statements
|