Updates to config files.

This commit is contained in:
Alex Manning 2022-10-18 12:00:52 +01:00
parent 14ec6810a6
commit 24cc8b9f2f
Signed by: alex
GPG key ID: 1E325A228EB28358
6 changed files with 10 additions and 7 deletions

View file

@ -1,7 +1,8 @@
[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
# 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
select = B,C,E,F,W,T4,B9
select = B,C,E,F,W,T4,B9,D
docstring-convention = pep257

View file

@ -1,3 +1,3 @@
[mypy]
strict = True
ignore_missing_imports = True
install_types = True

View file

@ -140,7 +140,7 @@ confidence=
# exception-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
# either give multiple identifier separated by comma (,) or put this option

View file

@ -19,3 +19,6 @@
required = true
clean = git-lfs clean -- %f
smudge = git-lfs smudge -- %f
[core]
hooksPath = ~/.alex-environ/private/home/git_hooks

View file

@ -8,7 +8,6 @@ let g:ale_linters = {
\ 'python': [
\ 'pylint',
\ 'flake8',
\ 'pydocstyle',
\ 'mypy',
\ 'bandit',
\ ],

@ -1 +1 @@
Subproject commit ab124dd38b5878f771e5e8deaeb663a363268a40
Subproject commit 0e34233ad56224b2096022a2c8b0f4b4bd87d2d0