You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
994 B
35 lines
994 B
{
|
|
"typescript.tsdk": "./node_modules/typescript/lib",
|
|
"editor.tabSize": 2,
|
|
"editor.formatOnSave": true,
|
|
"editor.codeActionsOnSave": {
|
|
"quickfix.biome": "explicit",
|
|
"source.organizeImports.biome": "explicit"
|
|
},
|
|
"editor.quickSuggestions": {
|
|
"strings": "on"
|
|
},
|
|
"tailwindCSS.experimental.classRegex": [
|
|
["cn\\(([^)]*)\\)", "[\"'`]([^\"'`]*).*?[\"'`]"]
|
|
],
|
|
"npm.packageManager": "pnpm",
|
|
"i18n-ally.localesPaths": ["src/locales/lang"],
|
|
"i18n-ally.enabledParsers": ["json"],
|
|
"i18n-ally.pathMatcher": "{locale}/{namespaces}.{ext}",
|
|
"i18n-ally.keystyle": "flat",
|
|
"i18n-ally.sortKeys": true,
|
|
"i18n-ally.sourceLanguage": "en_US",
|
|
"i18n-ally.displayLanguage": "zh_CN",
|
|
"[javascript]": {
|
|
"editor.defaultFormatter": "biomejs.biome"
|
|
},
|
|
"[typescript]": {
|
|
"editor.defaultFormatter": "biomejs.biome"
|
|
},
|
|
"[typescriptreact]": {
|
|
"editor.defaultFormatter": "biomejs.biome"
|
|
},
|
|
"[json]": {
|
|
"editor.defaultFormatter": "biomejs.biome"
|
|
}
|
|
}
|
|
|