forked from ML-Bioinfo-CEITEC/genomic_benchmarks
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsettings.json
More file actions
29 lines (29 loc) · 746 Bytes
/
Copy pathsettings.json
File metadata and controls
29 lines (29 loc) · 746 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
{
"python.linting.pylintEnabled": true,
"python.linting.flake8Enabled": true,
"python.linting.enabled": true,
"python.linting.flake8Args": [
"--max-line-length=135",
"--ignore=E402,F841,F401,E302,E305"
],
"python.linting.pylintArgs": [
"-d",
"C0301"
],
"editor.formatOnSave": true,
"python.formatting.provider": "black",
"python.formatting.blackArgs": [
"--line-length=135"
],
"python.sortImports.args": [
"--profile",
"black"
],
"[python]": {
"files.trimTrailingWhitespace": true,
"editor.codeActionsOnSave": {
"source.organizeImports": true
}
},
"autoDocstring.docstringFormat": "numpy"
}