2021-04-14 14:24:24 -04:00
|
|
|
{
|
|
|
|
"typescript.tsdk": "node_modules\\typescript\\lib",
|
|
|
|
"typescript.preferences.importModuleSpecifier": "relative",
|
|
|
|
"typescript.preferences.quoteStyle": "single",
|
|
|
|
"typescript.format.placeOpenBraceOnNewLineForControlBlocks": true,
|
|
|
|
"typescript.format.placeOpenBraceOnNewLineForFunctions": true,
|
2023-01-03 02:39:03 -05:00
|
|
|
"editor.wordWrap": "on",
|
2021-04-14 14:24:24 -04:00
|
|
|
"editor.codeActionsOnSave": {
|
2024-06-18 18:58:45 -04:00
|
|
|
"source.fixAll.eslint": "always",
|
2024-03-20 22:39:51 -04:00
|
|
|
"source.fixAll.sortJSON": "never",
|
2024-04-11 20:58:34 -04:00
|
|
|
"source.organizeImports": "always"
|
2021-04-14 14:24:24 -04:00
|
|
|
},
|
2024-04-11 20:58:34 -04:00
|
|
|
"editor.formatOnSave": true,
|
2022-07-12 23:17:51 -04:00
|
|
|
"git.ignoreLimitWarning": true,
|
2021-04-14 14:24:24 -04:00
|
|
|
"files.eol": "\n",
|
|
|
|
"files.insertFinalNewline": true,
|
2021-06-28 12:32:06 -04:00
|
|
|
"files.trimFinalNewlines": true,
|
2022-04-01 13:33:08 -04:00
|
|
|
"emmet.showExpandedAbbreviation": "never",
|
2023-01-03 02:39:03 -05:00
|
|
|
"eslint.format.enable": true,
|
2024-06-18 18:58:45 -04:00
|
|
|
"eslint.validate": ["javascript", "typescript"],
|
2022-07-12 23:17:51 -04:00
|
|
|
"eslint.workingDirectories": [
|
2023-01-03 02:39:03 -05:00
|
|
|
{
|
|
|
|
"pattern": "./src"
|
|
|
|
}
|
|
|
|
],
|
|
|
|
"javascript.format.enable": false,
|
2024-04-11 20:58:34 -04:00
|
|
|
"editor.linkedEditing": false,
|
|
|
|
"tailwindCSS.includeLanguages": {
|
|
|
|
"html": "html",
|
|
|
|
"javascript": "javascript",
|
|
|
|
"css": "css"
|
|
|
|
},
|
|
|
|
"tailwindCSS.experimental.classRegex": [
|
2024-06-18 18:58:45 -04:00
|
|
|
["classes \\=([^;]*);", "'([^']*)'"],
|
|
|
|
["classes \\=([^;]*);", "\"([^\"]*)\""],
|
|
|
|
["classes \\=([^;]*);", "\\`([^\\`]*)\\`"]
|
2024-04-11 20:58:34 -04:00
|
|
|
],
|
|
|
|
"editor.quickSuggestions": {
|
|
|
|
"strings": true
|
|
|
|
}
|
2021-04-14 14:24:24 -04:00
|
|
|
}
|