Skip to content

Commit 196dc83

Browse files
committed
chore: consistency updates
1 parent 8a1824e commit 196dc83

5 files changed

Lines changed: 232 additions & 111 deletions

File tree

.dockerignore

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
## /.gitignore
2+
3+
# IDE: Visual Studio Code
4+
/.vscode
5+
6+
# OS: macOS
7+
.DS_Store
8+
9+
# OS: Windows
10+
desktop.ini
11+
System Volume Information
12+
Thumbs.db
13+
Thumbs.db*
14+
15+
# Python
16+
/build
17+
/dist
18+
/.cache
19+
__pycache__
20+
*.egg
21+
*.egg-info
22+
*.pyc
23+
24+
# Python: coverage
25+
/htmlcov
26+
/.coverage
27+
28+
# Python: Jupyter notebooks
29+
.ipynb_checkpoints
30+
*-checkpoint.ipynb

.gitignore

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,14 @@
1+
# IDE: Visual Studio Code
2+
/.vscode
3+
14
# OS: macOS
25
.DS_Store
36

47
# OS: Windows
58
desktop.ini
9+
System Volume Information
10+
Thumbs.db
11+
Thumbs.db*
612

713
# Python
814
/build

pyproject.toml

Lines changed: 25 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,26 @@
11
[build-system]
2-
requires=['docutils', 'GitPython', 'packaging', 'semver', 'setuptools', 'wheel']
2+
requires = ['docutils', 'GitPython', 'packaging', 'semver', 'setuptools', 'wheel']
3+
4+
[tool.pydocstyle]
5+
ignore = ['D102', 'D103', 'D105', 'D107', 'D203', 'D213', 'D406', 'D407', 'D412', 'D413']
6+
7+
[tool.pylint.MASTER]
8+
load-plugins = [
9+
'pylint.extensions.mccabe',
10+
'pylint.extensions.redefined_variable_type',
11+
'pylint.extensions.broad_try_clause'
12+
]
13+
14+
[tool.pylint.'MESSAGES CONTROL']
15+
docstring-min-length = 5
16+
17+
[tool.pylint.SIMILARITIES]
18+
ignore-imports = 'yes'
19+
min-similarity-lines = 5
20+
21+
[tool.pylint.BASIC]
22+
no-docstring-rgx = '^(test)?_|.*Tests$'
23+
unsafe-load-any-extension = 'yes'
24+
25+
[tool.pylint.REPORTS]
26+
output-format = 'colorized'

0 commit comments

Comments
 (0)