File tree Expand file tree Collapse file tree 1 file changed +12
-3
lines changed Expand file tree Collapse file tree 1 file changed +12
-3
lines changed Original file line number Diff line number Diff line change @@ -113,9 +113,18 @@ lint.select = [
113113]
114114
115115lint.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" ,
119128]
120129
121130fix = true
You can’t perform that action at this time.
0 commit comments