-
Notifications
You must be signed in to change notification settings - Fork 95
/
.pyflymakerc
40 lines (31 loc) · 952 Bytes
/
.pyflymakerc
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
# -*- python -*-
# the Python virtual environment to use when running check tools
VIRTUALENV = None
# the unit test runner command or None if no unit tests should be run
TEST_RUNNER_COMMAND = None
# the list of command line arguments for the unit test runner
TEST_RUNNER_FLAGS = []
# the device on which messages are output by the test runner
TEST_RUNNER_OUTPUT = 'stderr'
# additional environment variables when running check tools
ENV = {}
# enable PyLint
PYLINT = True
# enable PyChecker
PYCHECKER = False
# enable Pep8
PEP8 = False
# enable PyFlakes
PYFLAKES = False
# error codes to ignore (in addition to sane defaults)
IGNORE_CODES = ()
USE_SANE_DEFAULTS = False
# ignore the following error codes in PyLint:
# C0103 Naming convention
# C0111 Missing Docstring
# E1002 Use super on old-style class
# W0232 No __init__
# R0904 Too many public methods
# R0903 Too few public methods
# R0201 Method could be a function
# End