File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -40,3 +40,35 @@ Download = "https://pypi.org/project/OMPython/#files"
4040max-line-length = 120
4141extend-ignore = [
4242]
43+
44+ [tool .pylint .main ]
45+ # In verbose mode, extra non-checker-related info will be displayed.
46+ # verbose = true
47+ ignore = [
48+ ]
49+ ignore-paths = [
50+ ]
51+ ignore-patterns = [
52+ ]
53+
54+ [tool .pylint .format ]
55+ # Maximum number of characters on a single line.
56+ max-line-length = 120
57+
58+ [tool .pylint .reports ]
59+ reports = true
60+
61+ [tool .pylint .'MESSAGES CONTROL' ]
62+ disable = [
63+ # 'C0103', # Variable name doesn't conform to snake_case naming style (invalid-name)
64+ # 'C0116', # Missing function or method docstring (missing-function-docstring)
65+ ' C0302' , # Too many lines in module (too-many-lines)
66+ ' R0902' , # Too many instance attributes (too-many-instance-attributes)
67+ ' R0912' , # Too many branches (too-many-branches)
68+ ' R0913' , # Too many arguments (too-many-arguments)
69+ ' R0914' , # Too many local variables (too-many-locals)
70+ ' R0915' , # Too many statements (too-many-statements)
71+ ' R0917' , # Too many positional arguments (too-many-positional-arguments)
72+ ' W0613' , # Unused argument (unused-argument)
73+ # 'W1203', # Use lazy % formatting in logging functions (logging-fstring-interpolation)
74+ ]
You can’t perform that action at this time.
0 commit comments