Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
finam
Manage
Activity
Members
Labels
Plan
Issues
31
Issue boards
Milestones
Code
Merge requests
3
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Monitor
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
FINAM
finam
Commits
0798c3b3
Commit
0798c3b3
authored
3 years ago
by
Sebastian Müller
🐈
Browse files
Options
Downloads
Patches
Plain Diff
add pylint settings
parent
1caea9ed
No related branches found
No related tags found
1 merge request
!56
Increase code quality
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
pyproject.toml
+26
-0
26 additions, 0 deletions
pyproject.toml
with
26 additions
and
0 deletions
pyproject.toml
+
26
−
0
View file @
0798c3b3
...
...
@@ -23,3 +23,29 @@ target-version = [
[tool.isort]
profile
=
"black"
multi_line_output
=
3
[tool.pylint]
[tool.pylint.master]
extension-pkg-whitelist
=
[
"numpy"
,
"scipy"
,
"mpi4py"
,
]
ignore
=
"_version.py"
[tool.pylint.message_control]
max-line-length
=
120
disable
=
[
"C0103"
,
# ignore invalid-names like "x", "y"
"C0415"
,
# ignore defered imports
"R0801"
,
# ignore code duplications
]
[tool.pylint.reports]
output-format
=
"colorized"
[tool.pylint.design]
max-args
=
7
max-attributes
=
15
max-parents
=
8
min-public-methods
=
0
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment