Files
Roman Donchenko 42bc3452bb Fix broken linter workflows (#8933)
* bandit 1.8.1 removed some of the checks, so remove them from our
  config.

* pylint 2.x doesn't support Python 3.12, and GitHub just switched their
  `ubuntu-latest` runners to Ubuntu 24.04, where 3.12 is the default. It's
  complicated to update pylint, so revert the runner back to Ubuntu 22.04
  for now.
2025-01-13 17:55:58 +02:00

8 lines
154 B
Plaintext

[bandit]
# B101 : assert_used
# B102 : exec_used
# B404 : import_subprocess
# B406 : import_xml_sax
skips: B101,B102,B404,B406
exclude: **/tests/**,tests