1
0
Fork 0
mirror of https://github.com/mealie-recipes/mealie.git synced 2025-08-08 23:15:27 +02:00
mealie/.vscode/settings.json

71 lines
1.6 KiB
JSON
Raw Normal View History

2021-01-02 13:50:06 -09:00
{
"conventionalCommits.scopes": [
"frontend",
"docs",
"backend",
"code-generation"
],
"cSpell.enableFiletypes": [
"!javascript",
"!python",
"!yaml"
],
"cSpell.words": [
"chowdown",
"compression",
"hkotel",
"nextcloud",
"performant",
"postgres",
"webp"
],
2021-08-01 19:23:54 -08:00
"editor.codeActionsOnSave": {
"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,
"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
},
"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,
"python.linting.pylintArgs": [
"--rcfile=${workspaceFolder}/.pylintrc"
],
2021-08-28 15:36:06 -08:00
"python.testing.autoTestDiscoverOnSaveEnabled": false,
"python.testing.pytestArgs": [
"tests"
],
2021-08-28 15:36:06 -08:00
"python.testing.pytestEnabled": true,
"python.testing.unittestEnabled": false,
"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",
"vetur.validation.template": false,
"coverage-gutters.lcovname": "${workspaceFolder}/.coverage",
"python.testing.unittestArgs": [
"-v",
"-s",
"./tests",
"-p",
"test_*.py"
]
2021-01-02 13:50:06 -09:00
}