Skip to content

Commit

Permalink
Add pylint configuration
Browse files Browse the repository at this point in the history
  • Loading branch information
externl committed Jan 19, 2024
1 parent efd4d6c commit fb0cd35
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 0 deletions.
8 changes: 8 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
{
"python.analysis.extraPaths": [
"./scripts"
],
"pylint.args": [
"--rcfile=tox.ini"
]
}
6 changes: 6 additions & 0 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -7,3 +7,9 @@ max-line-length = 120
# E402 module level import not at top of file
ignore = E402
max-line-length = 120

[pylint]
max-line-length = 120
disable=
missing-docstring,
wrong-import-position

0 comments on commit fb0cd35

Please sign in to comment.