add vscode settings.json
This commit is contained in:
parent
3af5a0143f
commit
9267ac09fd
24
scripting/plugins/BomGeneration/.vscode/settings.json
vendored
Normal file
24
scripting/plugins/BomGeneration/.vscode/settings.json
vendored
Normal file
|
@ -0,0 +1,24 @@
|
||||||
|
{
|
||||||
|
"editor.formatOnSave": true,
|
||||||
|
"python.pythonPath": "/usr/bin/python3",
|
||||||
|
"python.defaultInterpreterPath": "/usr/bin/python3",
|
||||||
|
"python.formatting.provider": "black",
|
||||||
|
"python.formatting.blackArgs": [
|
||||||
|
"--line-length=120"
|
||||||
|
],
|
||||||
|
"python.linting.flake8Enabled": true,
|
||||||
|
"python.linting.flake8Args": [
|
||||||
|
"--max-line-length=120",
|
||||||
|
"--ignore=E402,F841,F401,E302,E305",
|
||||||
|
],
|
||||||
|
"editor.rulers": [
|
||||||
|
{
|
||||||
|
"column": 80,
|
||||||
|
"color": "#ff9900"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"column": 120,
|
||||||
|
"color": "#ff0000"
|
||||||
|
},
|
||||||
|
],
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user