NewsBlur-viq/.vscode/settings.json

42 lines
1.3 KiB
JSON

{
"isort.args": [
"--profile",
"black"
],
// "python.linting.enabled": true,
// "python.linting.pylintEnabled": false,
// "python.linting.flake8Enabled": true,
// "python.linting.pylamaEnabled": false,
// "python.linting.flake8Args": [
// "--ignore=E501,W293,W503,W504,E302,E722,E226,E221,E402,E401"
// ],
// "python.pythonPath": "~/.virtualenvs/newsblur/bin/python",
"editor.bracketPairColorization.enabled": true,
"editor.guides.bracketPairs": "active",
"git.ignoreLimitWarning": true,
"search.exclude": {
"clients": true,
"media/android": true,
"media/ios": true,
"**/*.map": true,
"ansible/playbooks/*/*": true,
// "archive/*": true,
"logs/*": true,
"static/*": true,
"media/fonts": true,
"static/*.css": true,
"static/js/*.*.js": true,
"blog/.jekyll-cache": true,
"blog/_site": true,
"docker/volumes": true,
"requirements.txt": true, // It's just a symlink to config/requirements.txt, which has git history
},
// "python.formatting.blackArgs": [
// "--line-length=110",
// "--skip-string-normalization"
// ],
"files.associations": {
"*.yml": "ansible"
},
"ansible.python.interpreterPath": "/opt/homebrew/bin/python3",
}