mirror of
https://github.com/mealie-recipes/mealie.git
synced 2025-12-06 02:15:22 -05:00
* feat: ✨ base-shoppinglist infra (WIP) * add type checker * implement controllers * apply router fixes * add checked section hide/animation * add label support * formatting * fix overflow images * add experimental banner * fix #912 word break issue * remove any type errors * bump dependencies * remove templates * fix build errors * bump node version * fix template literal
50 lines
1.4 KiB
JSON
50 lines
1.4 KiB
JSON
{
|
|
"conventionalCommits.scopes": [
|
|
"frontend",
|
|
"docs",
|
|
"backend",
|
|
"code-generation"
|
|
],
|
|
"cSpell.enableFiletypes": ["!javascript", "!python", "!yaml"],
|
|
"cSpell.words": [
|
|
"chowdown",
|
|
"compression",
|
|
"hkotel",
|
|
"nextcloud",
|
|
"performant",
|
|
"postgres",
|
|
"webp"
|
|
],
|
|
"editor.codeActionsOnSave": {
|
|
"source.fixAll.eslint": true,
|
|
"source.organizeImports": false
|
|
},
|
|
"editor.formatOnSave": true,
|
|
"eslint.workingDirectories": ["./frontend"],
|
|
"files.exclude": {
|
|
"**/__pycache__": true,
|
|
"**/.DS_Store": true,
|
|
"**/.git": true,
|
|
"**/.hg": true,
|
|
"**/.svn": true,
|
|
"**/CVS": true
|
|
},
|
|
"i18n-ally.enabledFrameworks": ["vue"],
|
|
"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.pythonPath": ".venv/bin/python3.9",
|
|
"python.testing.autoTestDiscoverOnSaveEnabled": false,
|
|
"python.testing.pytestArgs": ["tests"],
|
|
"python.testing.pytestEnabled": true,
|
|
"python.testing.unittestEnabled": false,
|
|
"python.analysis.typeCheckingMode": "off",
|
|
"search.mode": "reuseEditor",
|
|
"vetur.validation.template": false,
|
|
"python.sortImports.path": "${workspaceFolder}/.venv/bin/isort"
|
|
}
|