2021-01-02 13:50:06 -09:00
|
|
|
{
|
2021-09-09 08:51:29 -08:00
|
|
|
"conventionalCommits.scopes": [
|
|
|
|
"frontend",
|
|
|
|
"docs",
|
|
|
|
"backend",
|
|
|
|
"code-generation"
|
|
|
|
],
|
2022-03-16 17:37:56 +01:00
|
|
|
"cSpell.enableFiletypes": [
|
|
|
|
"!javascript",
|
|
|
|
"!python",
|
|
|
|
"!yaml"
|
|
|
|
],
|
2021-12-09 19:52:53 -09:00
|
|
|
"cSpell.words": [
|
|
|
|
"chowdown",
|
|
|
|
"compression",
|
|
|
|
"hkotel",
|
|
|
|
"nextcloud",
|
|
|
|
"performant",
|
|
|
|
"postgres",
|
|
|
|
"webp"
|
|
|
|
],
|
2021-08-01 19:23:54 -08:00
|
|
|
"editor.codeActionsOnSave": {
|
2021-08-21 15:05:00 -08:00
|
|
|
"source.fixAll.eslint": true,
|
|
|
|
"source.organizeImports": false
|
2021-08-01 19:23:54 -08:00
|
|
|
},
|
2021-08-28 15:36:06 -08:00
|
|
|
"editor.formatOnSave": true,
|
2022-03-16 17:37:56 +01:00
|
|
|
"eslint.workingDirectories": [
|
|
|
|
"./frontend"
|
|
|
|
],
|
2021-08-28 15:36:06 -08:00
|
|
|
"files.exclude": {
|
|
|
|
"**/__pycache__": true,
|
|
|
|
"**/.DS_Store": true,
|
|
|
|
"**/.git": true,
|
|
|
|
"**/.hg": true,
|
|
|
|
"**/.svn": true,
|
|
|
|
"**/CVS": true
|
|
|
|
},
|
2022-03-16 17:37:56 +01:00
|
|
|
"i18n-ally.enabledFrameworks": [
|
|
|
|
"vue"
|
|
|
|
],
|
2021-08-28 15:36:06 -08:00
|
|
|
"i18n-ally.keystyle": "nested",
|
|
|
|
"i18n-ally.localesPaths": "frontend/lang/messages",
|
|
|
|
"i18n-ally.sourceLanguage": "en-US",
|
|
|
|
"python.formatting.provider": "black",
|
|
|
|
"python.linting.enabled": true,
|
|
|
|
"python.linting.flake8Enabled": true,
|
|
|
|
"python.linting.pylintEnabled": false,
|
2022-03-16 17:37:56 +01:00
|
|
|
"python.linting.pylintArgs": [
|
|
|
|
"--rcfile=${workspaceFolder}/.pylintrc"
|
|
|
|
],
|
2021-08-28 15:36:06 -08:00
|
|
|
"python.testing.autoTestDiscoverOnSaveEnabled": false,
|
2022-03-16 17:37:56 +01:00
|
|
|
"python.testing.pytestArgs": [
|
|
|
|
"tests"
|
|
|
|
],
|
2021-08-28 15:36:06 -08:00
|
|
|
"python.testing.pytestEnabled": true,
|
|
|
|
"python.testing.unittestEnabled": false,
|
2022-03-15 15:01:56 -08:00
|
|
|
"python.analysis.typeCheckingMode": "basic",
|
|
|
|
"python.linting.mypyEnabled": true,
|
|
|
|
"python.sortImports.path": "${workspaceFolder}/.venv/bin/isort",
|
2021-08-28 15:36:06 -08:00
|
|
|
"search.mode": "reuseEditor",
|
2021-10-02 11:37:04 -08:00
|
|
|
"vetur.validation.template": false,
|
2022-03-16 17:37:56 +01:00
|
|
|
"coverage-gutters.lcovname": "${workspaceFolder}/.coverage",
|
|
|
|
"python.testing.unittestArgs": [
|
|
|
|
"-v",
|
|
|
|
"-s",
|
|
|
|
"./tests",
|
|
|
|
"-p",
|
|
|
|
"test_*.py"
|
|
|
|
]
|
2021-01-02 13:50:06 -09:00
|
|
|
}
|