File: .flake8

package info (click to toggle)
pystache 0.6.5-1
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 952 kB
  • sloc: python: 2,990; makefile: 26; sh: 15
file content (17 lines) | stat: -rw-r--r-- 254 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
[flake8]
exclude =
    .git,
    __pycache__,
    pystache/tests,
    test_pystache.py,
    build,
    dist

max-line-length = 110
max-complexity = 25
addons = file,open,basestring,xrange,unicode,long,cmp
ignore =
    E266,
    E731,
    E203,
    E221,