bdaf758712
* fix ts types * feat(code-generation): ♻️ update code-generation formats * new scope * add step button * fix linter error * update code-generation tags * feat(backend): ✨ start multi-tenant support * feat(backend): ✨ group invitation token generation and signup * refactor(backend): ♻️ move group admin actions to admin router * set url base to include `/admin` * feat(frontend): ✨ generate user sign-up links * test(backend): ✅ refactor test-suite to further decouple tests (WIP) * feat(backend): 🐛 assign owner on backup import for recipes * fix(backend): 🐛 assign recipe owner on migration from other service Co-authored-by: hay-kot <hay-kot@pm.me>
39 lines
1.2 KiB
JSON
39 lines
1.2 KiB
JSON
{
|
|
"conventionalCommits.scopes": [
|
|
"frontend",
|
|
"docs",
|
|
"backend",
|
|
"code-generation"
|
|
],
|
|
"cSpell.enableFiletypes": ["!javascript", "!python", "!yaml"],
|
|
"cSpell.words": ["compression", "hkotel", "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,
|
|
"search.mode": "reuseEditor",
|
|
"vetur.validation.template": false
|
|
}
|