File tree Expand file tree Collapse file tree 1 file changed +16
-13
lines changed
packages/django-google-spanner Expand file tree Collapse file tree 1 file changed +16
-13
lines changed Original file line number Diff line number Diff line change 11[flake8]
22max-line-length = 79
3- ignore =
4- E501 # line too long, defer to black
5- W503 # allow line breaks before binary ops
6- W504 # allow line breaks after binary ops
7- E203 # allow whitespace before ':' (https://github.com/psf/black#slices)
3+
4+ # E501: line too long, defer to black/ruff
5+ # W503: allow line breaks before binary ops
6+ # W504: allow line breaks after binary ops
7+ # E203: allow whitespace before ':' (https://github.com/psf/black#slices)
8+ ignore = E501, W503, W504, E203
9+
10+ # Exclude generated code and standard linting exemptions.
811exclude =
9- # Exclude generated code.
10- **/_build/**
12+ **/_build/**,
13+ __pycache__,
14+ .git,
15+ *.pyc,
16+ conf.py
1117
12- # Standard linting exemptions.
13- __pycache__,
14- .git,
15- *.pyc,
16- conf.py
18+ per-file-ignores =
19+ django_spanner/__init__.py: E402, F401
1720
1821[isort]
1922use_parentheses = True
@@ -23,4 +26,4 @@ include_trailing_comma = True
2326force_grid_wrap = 0
2427line_length = 79
2528multi_line_output = 3
26- ensure_newline_before_comments = True
29+ ensure_newline_before_comments = True
You can’t perform that action at this time.
0 commit comments