Skip to content

Commit 733d578

Browse files
committed
pylint and flake8 be gone
1 parent 23b3d27 commit 733d578

1 file changed

Lines changed: 2 additions & 35 deletions

File tree

pyproject.toml

Lines changed: 2 additions & 35 deletions
Original file line numberDiff line numberDiff line change
@@ -108,6 +108,8 @@ lint.extend-select = [
108108
lint.ignore = [
109109
"C901",
110110
"E203",
111+
"W503",
112+
"F824",
111113
]
112114
lint.per-file-ignores."src/**/__init__.py" = [
113115
"D104",
@@ -140,41 +142,6 @@ lint.unfixable = [
140142
# Unlike Flake8, default to a complexity level of 10.
141143
lint.mccabe.max-complexity = 10
142144

143-
[tool.flake8]
144-
ignore = [ "C901", "E203", "W503", "F824" ]
145-
exclude = [
146-
".git",
147-
".github",
148-
".pytest_cache",
149-
".venv",
150-
".vim",
151-
".eggs",
152-
"__pycache__",
153-
"docs",
154-
"apidoc",
155-
"notebooks",
156-
"build",
157-
"dist",
158-
"versioneer.py",
159-
"pdpipe/_version.py",
160-
"*/_version.py",
161-
]
162-
max-complexity = 10
163-
max-line-length = 100
164-
165-
[tool.pylint.'MAIN']
166-
ignore = [ "CVS" ]
167-
load-plugins = [ "pylint.extensions.docparams" ]
168-
169-
[tool.pylint.'FORMAT']
170-
good-names = [ "x", "y", "X", "inter_X", "inter_y", "post_X", "post_y" ]
171-
172-
[tool.pylint.'DESIGN']
173-
exclude-too-few-public-methods = [ ".+" ]
174-
175-
[tool.pylint.'MESSAGES CONTROL']
176-
disable = [ "R0911", "R0913", "R0903" ]
177-
178145
[tool.docformatter]
179146
recursive = true
180147
# some docstring start with r"""

0 commit comments

Comments
 (0)