[go: up one dir, main page]

File: setup.cfg

package info (click to toggle)
dnf-plugins-core 4.10.1-5
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 2,752 kB
  • sloc: python: 7,441; sh: 23; makefile: 15; xml: 7
file content (16 lines) | stat: -rw-r--r-- 516 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
[flake8]
# C0111: docstrings
# I0011: locally disabled warnings
# R0801: similar lines
# R0904: too many public methods
# R0911: too many return statements
# R0912: too many branches
# R0913: too many arguments
# R0903: too few public methods
# W0141: used builtin 'map' function
# W0142: used star magic
# W0212: access to a protected member
# W0503: line break before binary operator
ignore = C0111,I0011,R0801,R0904,R0911,R0912,R0913,R0903,W0141,W0142,W0212,W0503
exclude = .git,__pycache__
max-line-length = 120