Add config files

This commit is contained in:
NanoCode012
2023-05-29 03:11:19 +09:00
parent 36596adaf7
commit a98deb31a6
2 changed files with 14 additions and 0 deletions

5
.flake8 Normal file
View File

@@ -0,0 +1,5 @@
[flake8]
max-line-length = 88
select = C,E,F,W,B,B950
extend-ignore = E203, E501

9
.pylintrc Normal file
View File

@@ -0,0 +1,9 @@
[TYPECHECK]
# List of members which are set dynamically and missed by Pylint inference
# system, and so shouldn't trigger E1101 when accessed.
generated-members=numpy.*, torch.*
[pylint.messages_control]
disable=W1203