12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- 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:
- - repo: https://github.com/ambv/black
- rev: 19.10b0
- hooks:
- - id: black
- types: [python]
- exclude: (migrations/)
- - repo: local
- hooks:
- - id: flake8
- name: flake8
- entry: flake8
- language: python
- files: \.py$
- log_file: '.artifacts/flake8.pycodestyle.log'
- additional_dependencies:
- - sentry-flake8==0.4.0
- - repo: git://github.com/pre-commit/pre-commit-hooks
- rev: v2.5.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
- # - repo: git://github.com/getsentry/pre-commit-hooks
- # rev: f3237d2d65af81d435c49dee3593dc8f03d23c2d
- # hooks:
- # - id: prettier
- # - id: eslint
- # args: ['--format=checkstyle']
- # log_file: '.artifacts/eslint.checkstyle.xml'
|