Skip to content

Commit ac26964

Browse files
author
Lorenz Kästle
committed
Add lots of linter exceptions
1 parent 3dee094 commit ac26964

2 files changed

Lines changed: 16 additions & 1 deletion

File tree

.pylintrc

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
# pylint config
2+
[FORMAT]
3+
good-names=s,r,e
4+
[MESSAGES CONTROL]
5+
disable=fixme,
6+
invalid-name,
7+
consider-using-f-string,
8+
missing-module-docstring,
9+
too-many-instance-attributes,
10+
too-many-arguments,
11+
too-many-branches,
12+
too-many-locals,
13+
too-many-statements,
14+
redefined-outer-name,
15+
no-member,

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
.PHONY: lint
22

33
lint:
4-
python -m pylint check_sensorProbe2plus.py --disable=invalid-name
4+
python -m pylint check_sensorProbe2plus.py

0 commit comments

Comments
 (0)