NewsBlur/.vscode/settings.json
2024-07-06 08:01:28 -04:00

68 lines
2.1 KiB
JSON

{
"black-formatter.args": [
"--line-length 110"
],
"isort.args": [
"--profile",
"black"
],
"editor.formatOnSave": true,
"editor.codeActionsOnSave": {
"source.organizeImports": "explicit"
},
"python.linting.enabled": true,
"python.linting.pylintEnabled": false,
"python.linting.flake8Enabled": false,
"python.linting.pylamaEnabled": false,
"python.linting.flake8Args": [
"--ignore=E501,W293,W503,W504,E302,E722,E226,E221,E402,E401"
],
// "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",
"editor.defaultFormatter": "ms-python.black-formatter",
"black-formatter.args": [
"--line-length=110"
],
"python.analysis.typeCheckingMode": "basic",
"[python]": {
"editor.defaultFormatter": "ms-python.black-formatter"
},
"python.formatting.provider": "none",
"cSpell.words": [
"NEWSBLUR"
],
}