summaryrefslogtreecommitdiff
path: root/pylintrc
blob: 9e03c7dc867d221b7437148f451f7136c81671f3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
[MASTER]
jobs = 0

[MESSAGES CONTROL]
disable=missing-docstring

ignore=ndk-gdb.py

[BASIC]
good-names=i,j,k,ex,Run,_

[VARIABLES]
dummy-variables-rgx=_

[SIMILARITIES]
ignore-imports=yes

[FORMAT]
max-line-length=88
ignore-long-lines=(?x)(
  ^\s*(\#\ )?<?https?://\S+>?$|
  ^\s*\#\ \S+$)