File tree Expand file tree Collapse file tree 1 file changed +15
-3
lines changed Expand file tree Collapse file tree 1 file changed +15
-3
lines changed Original file line number Diff line number Diff line change @@ -113,9 +113,21 @@ lint.select = [
113
113
]
114
114
115
115
lint.ignore = [
116
- " COM812" , # missing trailing comma, covered by black
117
- " ANN101" , # ignore missing type annotation in self parameter
118
- " S311" , # ignore Standard pseudo-random generators because they are not used for cryptographic purposes
116
+ # missing trailing comma, covered by black
117
+ # docs: https://docs.astral.sh/ruff/rules/missing-trailing-comma/
118
+ " COM812" ,
119
+ # ignore missing type annotation in self parameter
120
+ # docs: https://docs.astral.sh/ruff/rules/missing-type-self/#missing-type-self-ann101
121
+ " ANN101" ,
122
+ # ignore builtin import shadowing
123
+ # docs: https://docs.astral.sh/ruff/rules/builtin-import-shadowing/#builtin-import-shadowing-a004
124
+ " A004" ,
125
+ # ignore Standard pseudo-random generators because they are not used for cryptographic purposes
126
+ # docs: https://docs.astral.sh/ruff/rules/suspicious-non-cryptographic-random-usage/#suspicious-non-cryptographic-random-usage-s311
127
+ " S311" ,
128
+ # ignore stdlib module shadowing
129
+ # docs: https://docs.astral.sh/ruff/rules/stdlib-module-shadowing/
130
+ " A005" ,
119
131
]
120
132
121
133
fix = true
You can’t perform that action at this time.
0 commit comments