Skip to content

Commit

Permalink
Add initial config for VSCode (settings.json)
Browse files Browse the repository at this point in the history
  • Loading branch information
AAClause committed Jul 18, 2020
1 parent 0d23f8b commit 0f436b7
Showing 1 changed file with 32 additions and 0 deletions.
32 changes: 32 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
{
"editor.accessibilitySupport": "on",
"pythonIndent.useTabOnHangingIndent": true,
"editor.tabCompletion": "on",
"files.eol": "\n",
"files.trimTrailingWhitespace": true,
"files.exclude": {
"**/.git": true,
"**/env/**": true,
"**/venv/**": true,
"**/virtualenv/**": true,
"**/__pycache__": true,
"**/**/*.pyc": true
},
"files.watcherExclude": {
"**/.git/objects/**": true,
"**/__pycache__": true,
"**/**/*.pyc": true
},
"python.formatting.provider": "autopep8",
"python.linting.enabled": true,
"python.linting.pylintEnabled": true,
"python.linting.pylintUseMinimalCheckers": false,
"python.linting.pylintArgs": [
"-d W0312",
"--indent-string='\t'",
"--indent-after-paren=1",
"--additional-builtins=_", // _ is used for localization
"--extension-pkg-whitelist=wx",
"--init-hook='import sys; sys.path.append(\"%USERPROFILE%/src/nvaccess/nvda/source\")'"
]
}

0 comments on commit 0f436b7

Please sign in to comment.