mirror of
https://github.com/theoludwig/theoludwig.git
synced 2025-09-11 23:09:22 +02:00
33 lines
1002 B
JSON
33 lines
1002 B
JSON
{
|
|
"typescript.tsdk": "node_modules/typescript/lib",
|
|
"editor.bracketPairColorization.enabled": true,
|
|
"editor.wordWrap": "on",
|
|
"prettier.configPath": ".prettierrc.json",
|
|
"editor.defaultFormatter": "esbenp.prettier-vscode",
|
|
"editor.formatOnSave": true,
|
|
"editor.codeActionsOnSave": {
|
|
"source.fixAll": "explicit",
|
|
"source.organizeImports": "never"
|
|
},
|
|
"eslint.workingDirectories": [
|
|
{
|
|
"mode": "auto"
|
|
}
|
|
],
|
|
"files.associations": {
|
|
"*.css": "tailwindcss"
|
|
},
|
|
"editor.quickSuggestions": {
|
|
"strings": "on"
|
|
},
|
|
"tailwindCSS.classFunctions": ["classNames", "cva"],
|
|
"tailwindCSS.experimental.configFile": "./configs/config-tailwind/styles.css",
|
|
"i18n-ally.localesPaths": ["./packages/i18n/src/translations/"],
|
|
"i18n-ally.keystyle": "nested",
|
|
"i18n-ally.sortKeys": false,
|
|
"i18n-ally.sourceLanguage": "en-US",
|
|
"i18n-ally.displayLanguage": "en-US",
|
|
"i18n-ally.enabledFrameworks": ["next-intl", "general"],
|
|
"i18n-ally.extract.autoDetect": true
|
|
}
|