mirror of
https://github.com/samuelclay/NewsBlur.git
synced 2025-11-01 09:09:51 +00:00
64 lines
2 KiB
JSON
64 lines
2 KiB
JSON
{
|
|
"black-formatter.args": [
|
|
"--line-length 110"
|
|
],
|
|
"isort.args": [
|
|
"--profile",
|
|
"black"
|
|
],
|
|
"editor.formatOnSave": true,
|
|
"editor.codeActionsOnSave": {
|
|
"source.organizeImports": true
|
|
},
|
|
"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.pythonPath": "~/.virtualenvs/newsblur3/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"
|
|
},
|
|
"nrf-connect.toolchain.path": "${nrf-connect.toolchain:1.9.1}",
|
|
"C_Cpp.default.configurationProvider": "nrf-connect",
|
|
"editor.formatOnSave": true,
|
|
"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"
|
|
],
|
|
}
|