generated from aicoe-aiops/project-template
-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Chore: Update DevOps tooling from central repository [skip ci] (#90)
* Chore: Update DevOps tooling from central repository [skip ci] Signed-off-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> * Chore: pre-commit autoupdate --------- Signed-off-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
- Loading branch information
1 parent
cf5cfa1
commit f1db3d2
Showing
5 changed files
with
47 additions
and
45 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
[lint] | ||
extend-fixable = [ | ||
#Instead of trailing-whitespace | ||
"W291", "W293" | ||
] | ||
|
||
extend-select = [ | ||
# Instead of pydocstyle | ||
"D", | ||
#Instead of flake8 | ||
"E", "F","B", | ||
# Instead of pep8-naming | ||
"N", | ||
# Instead of flake8-debugger or debug-statements | ||
"T10", | ||
] | ||
|
||
ignore = [ | ||
"E203", | ||
"E501", | ||
|
||
# Avoid incompatible rules | ||
"D203", | ||
"D213", | ||
] | ||
|
||
[lint.pycodestyle] | ||
max-line-length = 160 |