* ci: fix false positive rule for split js translate - limit regex to must match end of line. - expand previous check to take care of other ways to split multi-line calls. * ci: update tests for rules, ignore rules in sider * ci: enable semgrep on v13 branches * ci: fix false positive for python split strings
33 lines
358 B
INI
33 lines
358 B
INI
[flake8]
|
|
ignore =
|
|
E121,
|
|
E126,
|
|
E127,
|
|
E128,
|
|
E203,
|
|
E225,
|
|
E226,
|
|
E231,
|
|
E241,
|
|
E251,
|
|
E261,
|
|
E265,
|
|
E302,
|
|
E303,
|
|
E305,
|
|
E402,
|
|
E501,
|
|
E741,
|
|
W291,
|
|
W292,
|
|
W293,
|
|
W391,
|
|
W503,
|
|
W504,
|
|
F403,
|
|
B007,
|
|
B950,
|
|
W191,
|
|
|
|
max-line-length = 200
|
|
exclude=.github/helper/semgrep_rules
|