123456789101112131415161718192021222324252627282930 |
- [flake8]
- extend-ignore = E203,E501,E402,E731,B007,B009,B010,B011,B020,B023
- per-file-ignores =
-
- tests/*: S002
-
- tools/*: S
- .github/*: S
- [flake8:local-plugins]
- paths = .
- extension =
- S=tools.flake8_plugin:SentryCheck
- [bdist_wheel]
- python-tag = py38
- [coverage:run]
- omit =
- src/sentry/migrations/*
- source = .
|