kicad/.vscode/settings.json

24 lines
617 B
JSON
Raw Normal View History

2022-09-20 18:17:16 -06:00
{
2022-09-20 22:55:56 -06:00
"editor.rulers": [
120
],
"editor.formatOnSave": true,
"python.formatting.provider": "black",
"python.linting.lintOnSave": true,
"python.linting.flake8Enabled": true,
"python.analysis.autoImportCompletions": false,
"python.sortImports.args": [
"--profile",
"black"
],
"[python]": {
"gitlens.codeLens.symbolScopes": [
"!Module"
],
2024-05-01 22:58:06 -06:00
"editor.wordBasedSuggestions": "off",
2022-09-20 22:55:56 -06:00
"editor.codeActionsOnSave": {
2024-05-01 22:58:06 -06:00
"source.organizeImports": "explicit"
2022-09-20 22:55:56 -06:00
}
},
2022-09-20 18:17:16 -06:00
"editor.foldingMaximumRegions": 10000
}