Skip to content

Commit 673f346

Browse files
committed
modified flake8 ignores
1 parent 1a9bc62 commit 673f346

File tree

3 files changed

+20
-11
lines changed

3 files changed

+20
-11
lines changed

.markdownlint.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
"MD013": false,
44
"MD040": true,
55
"MD014": true,
6+
"MD041": false,
67
"ignore": [
78
"venv*/**",
89
"env*/**",

.pylintrc

Lines changed: 15 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ confidence=
5151
# Enable the message, report, category or checker with the given id(s). You can
5252
# either give multiple identifier separated by comma (,) or put this option
5353
# multiple time. See also the "--disable" option for examples.
54-
disable=
54+
# disable=
5555
# too-many-instance-attributes,
5656
# len-as-condition,
5757
# too-few-public-methods,
@@ -126,19 +126,23 @@ disable=
126126
# bad-python3-import,
127127
# deprecated-string-function,
128128
# deprecated-str-translate-call,
129-
import-error,
130-
arguments-differ,
131-
C0114,
132-
C0115,
133-
C0116,
134-
R0801,
135-
W0511,
136-
R0914,
137-
R0915,
138-
C0103,
129+
; import-error,
130+
; arguments-differ,
131+
; F401,
132+
; C0114,
133+
; C0115,
134+
; C0116,
135+
; R0801,
136+
; W0511,
137+
; R0914,
138+
; R0915,
139+
; C0103,
139140
# invalid-name,
140141
# consider-using-enumerate
141142

143+
disable=import-error,arguments-differ,F401,C0114,C0115,C0116,R0801,W0511,R0914,R0915,C0103
144+
145+
142146
# Needs investigation:
143147
# abstract-method (might be indicating a bug? probably not though)
144148
# protected-access (requires some refactoring)

pyproject.toml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -81,3 +81,7 @@ version = { attr = "pygem.meta.__version__" }
8181
[tool.black]
8282
line-length = 80
8383
target-version = ['py39']
84+
85+
[tool.flake8]
86+
ignore = "F401"
87+

0 commit comments

Comments
 (0)