File tree Expand file tree Collapse file tree 3 files changed +17
-14
lines changed Expand file tree Collapse file tree 3 files changed +17
-14
lines changed Original file line number Diff line number Diff line change 8
8
E302,E305,
9
9
# closing bracket does not match indentation of opening bracket's line
10
10
E123,
11
+ # whitespace before ':'
12
+ E203,
11
13
# multiple spaces before operator
12
14
E221,
13
15
# line break before binary operator
@@ -36,4 +38,4 @@ ignore =
36
38
E226,
37
39
# test for membership should be 'not in'
38
40
E713,
39
- max-line-length =120
41
+ max-line-length =100
Original file line number Diff line number Diff line change 18
18
rev : v0.9.10
19
19
hooks :
20
20
- id : ruff
21
+ - id : ruff-format
21
22
22
23
- repo : https://github.com/pycqa/flake8
23
24
rev : 7.1.2
Original file line number Diff line number Diff line change @@ -60,7 +60,7 @@ dynamic.version = { attr = "cpplint.__VERSION__" }
60
60
[tool .ruff ]
61
61
target-version = " py38"
62
62
63
- line-length = 116
63
+ line-length = 100
64
64
lint.select = [
65
65
" A" , # flake8-builtins
66
66
" AIR" , # Airflow
@@ -155,23 +155,23 @@ class-rgx = "[A-Z_][a-zA-Z0-9]+$"
155
155
156
156
[tool .pylint .messages-control ]
157
157
disable = [
158
+ " anomalous-unicode-escape-in-string" ,
159
+ " bad-continuation" ,
160
+ " bad-option-value" ,
161
+ " consider-merging-isinstance" ,
162
+ " consider-using-dict-comprehension" ,
163
+ " consider-using-in" ,
164
+ " consider-using-min-builtin" ,
165
+ " fixme" ,
158
166
" global-statement" ,
159
- " multiple-statements" ,
160
167
" missing-docstring" ,
168
+ " multiple-statements" ,
161
169
" no-else-return" ,
162
170
" no-self-use" ,
163
- " consider-merging-isinstance" ,
164
- " consider-using-min-builtin" ,
165
- " bad-continuation" ,
166
- " fixme" ,
167
- " bad-option-value" ,
168
- " anomalous-unicode-escape-in-string" ,
171
+ " too-many-positional-arguments" ,
172
+ " unnecessary-pass" ,
169
173
" unused-argument" ,
170
174
" useless-object-inheritance" ,
171
- " consider-using-dict-comprehension" ,
172
- " consider-using-in" ,
173
- " unnecessary-pass" ,
174
- " too-many-positional-arguments" ,
175
175
]
176
176
177
177
[tool .pylint .reports ]
@@ -180,7 +180,7 @@ reports = false
180
180
score = false
181
181
182
182
[tool .pylint .format ]
183
- indent-string = ' '
183
+ indent-string = ' '
184
184
indent-after-paren = 4
185
185
max-module-lines = 10000
186
186
You can’t perform that action at this time.
0 commit comments