@@ -11,7 +11,6 @@ lint.ignore = [
1111 # pycodestyle (E, W)
1212 # https://docs.astral.sh/ruff/rules/#pycodestyle-e-w
1313 " E" ,
14- " W" ,
1514
1615 # mccabe (C90)
1716 # https://docs.astral.sh/ruff/rules/#mccabe-c90
@@ -26,22 +25,10 @@ lint.ignore = [
2625 # (D-1) Permanent
2726 " D105" , # Missing docstring in magic method
2827 # (D-2) Temporary, to be removed when we are more compliant. Rare cases mmove to (1).
29- " D417" , # Missing argument descriptions in the docstring
3028 " D101" , # Missing docstring in public class
3129 " D102" , # Missing docstring in public method
32- " D104" , # Missing docstring in public package
33- " D106" , # Missing docstring in public nested class
34- # (D-3) Temporary, before an initial review, either fix ocurrenvces or move to (2).
35- " D100" , # Missing docstring in public module
30+ # (D-3) Temporary, before an initial review, either fix ocurrences or move to (2).
3631 " D103" , # Missing docstring in public function
37- " D200" , # One-line docstring should fit on one line
38- " D202" , # No blank lines allowed after function docstring
39- " D205" , # 1 blank line required between summary line and description
40- " D401" , # First line of docstring should be in imperative mood: ...
41- " D404" , # First word of the docstring should not be "This"
42- " D405" , # Section name should be properly capitalized
43- " D406" , # Section name should end with a newline
44- " D407" , # Missing dashed underline after section
4532
4633 # pyupgrade (UP)
4734 # https://docs.astral.sh/ruff/rules/#pyupgrade-up
@@ -71,10 +58,6 @@ lint.ignore = [
7158 # https://docs.astral.sh/ruff/rules/#flake8-builtins-a
7259 " A" ,
7360
74- # flake8-copyright (CPY)
75- # https://docs.astral.sh/ruff/rules/#flake8-copyright-cpy
76- " CPY" ,
77-
7861 # flake8-comprehensions (C4)
7962 # https://docs.astral.sh/ruff/rules/#flake8-comprehensions-c4
8063 " C4" ,
@@ -91,10 +74,6 @@ lint.ignore = [
9174 # https://docs.astral.sh/ruff/rules/#flake8-future-annotations-fa
9275 " FA" ,
9376
94- # flake8-implicit-str-concat (ISC)
95- # https://docs.astral.sh/ruff/rules/#flake8-implicit-str-concat-isc
96- " ISC" ,
97-
9877 # flake8-logging-format (G)
9978 # https://docs.astral.sh/ruff/rules/#flake8-logging-format-g
10079 " G" ,
@@ -187,10 +166,6 @@ lint.ignore = [
187166 # https://docs.astral.sh/ruff/rules/#flynt-fly
188167 " FLY" ,
189168
190- # Airflow (AIR)
191- # https://docs.astral.sh/ruff/rules/#airflow-air
192- " AIR" ,
193-
194169 # Perflint (PERF)
195170 # https://docs.astral.sh/ruff/rules/#perflint-perf
196171 " PERF" ,
0 commit comments