2021-01-02 13:50:06 -09:00
|
|
|
{
|
2023-03-23 12:22:06 -05: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": {
|
2023-12-11 03:28:00 +00:00
|
|
|
"source.fixAll.eslint": "explicit",
|
|
|
|
"source.organizeImports": "never"
|
2021-08-01 19:23:54 -08:00
|
|
|
},
|
2021-08-28 15:36:06 -08:00
|
|
|
"editor.formatOnSave": true,
|
2025-06-20 00:09:12 +07:00
|
|
|
"eslint.useFlatConfig": true,
|
2023-03-23 12:22:06 -05: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
|
|
|
|
},
|
2023-03-23 12:22:06 -05: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",
|
2023-01-28 18:49:09 -06:00
|
|
|
"python.defaultInterpreterPath": "${workspaceFolder}/.venv/bin/python",
|
2021-08-28 15:36:06 -08:00
|
|
|
"python.testing.autoTestDiscoverOnSaveEnabled": false,
|
2023-03-23 12:22:06 -05:00
|
|
|
"python.testing.pytestArgs": [
|
|
|
|
"tests"
|
|
|
|
],
|
2021-08-28 15:36:06 -08:00
|
|
|
"python.testing.pytestEnabled": true,
|
|
|
|
"python.testing.unittestEnabled": false,
|
2022-04-09 19:08:48 -08:00
|
|
|
"python.analysis.typeCheckingMode": "off",
|
2021-08-28 15:36:06 -08:00
|
|
|
"search.mode": "reuseEditor",
|
2023-03-23 12:22:06 -05:00
|
|
|
"python.testing.unittestArgs": [
|
|
|
|
"-v",
|
|
|
|
"-s",
|
|
|
|
"./tests",
|
|
|
|
"-p",
|
|
|
|
"test_*.py"
|
|
|
|
],
|
2022-05-25 19:33:58 -08:00
|
|
|
"explorer.fileNesting.enabled": true,
|
|
|
|
"explorer.fileNesting.patterns": {
|
|
|
|
"package.json": "package-lock.json, yarn.lock, .eslintrc.js, tsconfig.json, .prettierrc, .editorconfig",
|
2022-11-30 20:20:28 -09:00
|
|
|
"pyproject.toml": "poetry.lock, alembic.ini, .pylintrc",
|
2022-05-25 19:33:58 -08:00
|
|
|
"netlify.toml": "runtime.txt",
|
2022-05-31 08:29:45 -08:00
|
|
|
"README.md": "LICENSE, SECURITY.md"
|
2023-03-23 12:22:06 -05:00
|
|
|
},
|
|
|
|
"[vue]": {
|
|
|
|
"editor.formatOnSave": false
|
2025-02-11 09:54:32 -06:00
|
|
|
},
|
|
|
|
"[python]": {
|
|
|
|
"editor.formatOnSave": true,
|
|
|
|
"editor.defaultFormatter": "charliermarsh.ruff"
|
2024-04-11 20:36:55 -05:00
|
|
|
}
|
2021-01-02 13:50:06 -09:00
|
|
|
}
|