File: setup.cfg

package info (click to toggle)
gemmi 0.5.7%2Bds-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 5,344 kB
  • sloc: cpp: 48,972; python: 4,352; ansic: 3,428; sh: 302; makefile: 69; f90: 42; javascript: 12
file content (18 lines) | stat: -rw-r--r-- 761 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
[flake8]
max-line-length = 80
show_source = True
exclude = build
# for table alignment disable:
#   E201 whitespace after '['
#   E203 whitespace before ':'
#   E231 missing whitespace after ','
#   E241 multiple spaces after ','
# E265 comment should start with '# ' - we use just '#' for inactive code
# and sometimes less whitespace is more readable
#   E226 missing whitespace around arithmetic operator
#   E301 expected 1 blank line, found 0
#   E302 expected 2 blank lines, found 1
#   E305 expected 2 blank lines after class or function definition
#   E306 expected 1 blank line before a nested definition
#   W503 line break occurred before a binary operator (opposite to W504)
ignore = E201, E203, E226, E231, E241, E265, E301, E302, E305, E306, W503