Updates to config files.
This commit is contained in:
parent
14ec6810a6
commit
24cc8b9f2f
6 changed files with 10 additions and 7 deletions
|
@ -1,7 +1,8 @@
|
||||||
[flake8]
|
[flake8]
|
||||||
ignore = E203, E266, E501, W503, B950
|
ignore = E203, E266, E501, W503, B950, D105, D106, D107
|
||||||
# line length is intentionally set to 80 here because black uses Bugbear
|
# line length is intentionally set to 80 here because black uses Bugbear
|
||||||
# See https://github.com/psf/black/blob/master/README.md#line-length for more details
|
# See https://github.com/psf/black/blob/master/README.md#line-length for more details
|
||||||
max-line-length = 80
|
max-line-length = 100
|
||||||
max-complexity = 18
|
max-complexity = 18
|
||||||
select = B,C,E,F,W,T4,B9
|
select = B,C,E,F,W,T4,B9,D
|
||||||
|
docstring-convention = pep257
|
||||||
|
|
|
@ -1,3 +1,3 @@
|
||||||
[mypy]
|
[mypy]
|
||||||
strict = True
|
|
||||||
ignore_missing_imports = True
|
ignore_missing_imports = True
|
||||||
|
install_types = True
|
||||||
|
|
|
@ -140,7 +140,7 @@ confidence=
|
||||||
# exception-escape,
|
# exception-escape,
|
||||||
# comprehension-escape
|
# comprehension-escape
|
||||||
|
|
||||||
disable=bad-continuation,unused-variable,line-too-long,missing-class-docstring
|
disable=bad-continuation,unused-variable,line-too-long,missing-class-docstring,missing-function-docstring
|
||||||
|
|
||||||
# Enable the message, report, category or checker with the given id(s). You can
|
# Enable the message, report, category or checker with the given id(s). You can
|
||||||
# either give multiple identifier separated by comma (,) or put this option
|
# either give multiple identifier separated by comma (,) or put this option
|
||||||
|
|
|
@ -19,3 +19,6 @@
|
||||||
required = true
|
required = true
|
||||||
clean = git-lfs clean -- %f
|
clean = git-lfs clean -- %f
|
||||||
smudge = git-lfs smudge -- %f
|
smudge = git-lfs smudge -- %f
|
||||||
|
|
||||||
|
[core]
|
||||||
|
hooksPath = ~/.alex-environ/private/home/git_hooks
|
||||||
|
|
|
@ -8,7 +8,6 @@ let g:ale_linters = {
|
||||||
\ 'python': [
|
\ 'python': [
|
||||||
\ 'pylint',
|
\ 'pylint',
|
||||||
\ 'flake8',
|
\ 'flake8',
|
||||||
\ 'pydocstyle',
|
|
||||||
\ 'mypy',
|
\ 'mypy',
|
||||||
\ 'bandit',
|
\ 'bandit',
|
||||||
\ ],
|
\ ],
|
||||||
|
|
2
private
2
private
|
@ -1 +1 @@
|
||||||
Subproject commit ab124dd38b5878f771e5e8deaeb663a363268a40
|
Subproject commit 0e34233ad56224b2096022a2c8b0f4b4bd87d2d0
|
Loading…
Reference in a new issue