1
1
mirror of https://github.com/theoludwig/theoludwig.git synced 2024-11-15 00:23:13 +01:00
.profile/.vscode/settings.json

28 lines
938 B
JSON
Raw Normal View History

2021-04-20 05:18:03 +02:00
{
"typescript.tsdk": "node_modules/typescript/lib",
2021-12-04 15:52:51 +01:00
"editor.bracketPairColorization.enabled": true,
"editor.wordWrap": "on",
"prettier.configPath": ".prettierrc.json",
2021-12-04 15:52:51 +01:00
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.formatOnSave": true,
"editor.codeActionsOnSave": {
"source.fixAll": "explicit",
"source.organizeImports": "explicit"
2023-04-02 22:44:09 +02:00
},
"eslint.options": {
"ignorePath": ".gitignore"
},
"prettier.ignorePath": ".gitignore",
"tailwindCSS.experimental.classRegex": [
["cva\\(([^)]*)\\)", "[\"'`]([^\"'`]*).*?[\"'`]"],
["cx\\(([^)]*)\\)", "(?:'|\"|`)([^']*)(?:'|\"|`)"]
2024-10-12 23:51:58 +02:00
],
"i18n-ally.localesPaths": ["./packages/i18n/src/translations/"],
"i18n-ally.keystyle": "nested",
"i18n-ally.sortKeys": true,
"i18n-ally.sourceLanguage": "en-US",
"i18n-ally.displayLanguage": "en-US",
"i18n-ally.enabledFrameworks": ["next-intl", "general"],
"i18n-ally.extract.autoDetect": true
2021-04-20 05:18:03 +02:00
}