This repository has been archived by the owner on May 16, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
.pylintrc
57 lines (46 loc) · 1.75 KB
/
.pylintrc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
# Copyright (C) 2021 Serghei Iakovlev <[email protected]>
#
# This file is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
# as published by the Free Software Foundation; either version 3
# of the License, or (at your option) any later version.
#
# This file is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this file. If not, see <https://www.gnu.org/licenses/>.
[MASTER]
# Ignore files and directories for linting.
ignore=migrations,tests
# A comma-separated list of package or module names from where C extensions may
# be loaded. Extensions are loading into the active Python interpreter and may
# run arbitrary code
extension-pkg-whitelist=unicodedata
[MESSAGES CONTROL]
# Disable the message, report, category or checker with the given id(s).
disable=
fixme,
invalid-name,
too-few-public-methods,
too-many-ancestors,
no-self-use,
duplicate-code,
import-outside-toplevel,
unused-argument,
attribute-defined-outside-init,
# Use multiple processes to speed up Pylint. Specifying 0 will auto-detect the
# number of processors available to use.
#
# Setting this to 1 for now.
# See: https://github.com/PyCQA/pylint-django/issues/276
jobs=1
[LOGGING]
# The type of string formatting that logging methods do. `old` means using %
# formatting, `new` is for `{}` formatting.
logging-format-style=old
[BASIC]
# Good variable names which should always be accepted, separated by a comma.
good-names=i,j,js,k,n,ex,cd,Run,_