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

65 lines
1.5 KiB
JSON
Raw Normal View History

2021-01-02 13:50:06 -09:00
{
"cSpell.enableFiletypes": [
"!javascript",
"!python",
"!yaml"
],
"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,
"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.defaultInterpreterPath": "${workspaceFolder}/.venv/bin/python",
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": "off",
2021-08-28 15:36:06 -08:00
"search.mode": "reuseEditor",
"python.testing.unittestArgs": [
"-v",
"-s",
"./tests",
"-p",
"test_*.py"
],
"explorer.fileNesting.enabled": true,
"explorer.fileNesting.patterns": {
"package.json": "package-lock.json, yarn.lock, .eslintrc.js, tsconfig.json, .prettierrc, .editorconfig",
"pyproject.toml": "poetry.lock, alembic.ini, .pylintrc",
"netlify.toml": "runtime.txt",
2022-05-31 08:29:45 -08:00
"README.md": "LICENSE, SECURITY.md"
},
"[vue]": {
"editor.formatOnSave": false
2024-04-11 20:36:55 -05:00
}
2021-01-02 13:50:06 -09:00
}