File: ruff.toml

package info (click to toggle)
python-autarco 3.2.0-1
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 808 kB
  • sloc: python: 742; makefile: 3
file content (8 lines) | stat: -rw-r--r-- 272 bytes parent folder | download
1
2
3
4
5
6
7
8
# This extend our general Ruff rules specifically for the examples
extend = "../pyproject.toml"

lint.extend-ignore = [
  "S106", # Allow hardcoded passwords in examples
  "T201", # Allow the use of print() in examples
  "ERA001", # Allow commented out code in examples
]