mirror of
https://github.com/billsonnn/nitro-react.git
synced 2024-11-23 14:40:50 +01:00
45 lines
1.4 KiB
JSON
45 lines
1.4 KiB
JSON
{
|
|
"typescript.tsdk": "node_modules\\typescript\\lib",
|
|
"typescript.preferences.importModuleSpecifier": "relative",
|
|
"typescript.preferences.quoteStyle": "single",
|
|
"typescript.format.placeOpenBraceOnNewLineForControlBlocks": true,
|
|
"typescript.format.placeOpenBraceOnNewLineForFunctions": true,
|
|
"editor.wordWrap": "on",
|
|
"editor.codeActionsOnSave": {
|
|
"source.fixAll.eslint": "explicit",
|
|
"source.fixAll.sortJSON": "never",
|
|
"source.organizeImports": "always"
|
|
},
|
|
"editor.formatOnSave": true,
|
|
"git.ignoreLimitWarning": true,
|
|
"files.eol": "\n",
|
|
"files.insertFinalNewline": true,
|
|
"files.trimFinalNewlines": true,
|
|
"emmet.showExpandedAbbreviation": "never",
|
|
"eslint.format.enable": true,
|
|
"eslint.validate": [
|
|
"javascript",
|
|
"typescript"
|
|
],
|
|
"eslint.workingDirectories": [
|
|
{
|
|
"pattern": "./src"
|
|
}
|
|
],
|
|
"javascript.format.enable": false,
|
|
"editor.linkedEditing": false,
|
|
"tailwindCSS.includeLanguages": {
|
|
"html": "html",
|
|
"javascript": "javascript",
|
|
"css": "css"
|
|
},
|
|
"tailwindCSS.experimental.classRegex": [
|
|
["classes \\=([^;]*);", "'([^']*)'"],
|
|
["classes \\=([^;]*);", "\"([^\"]*)\""],
|
|
["classes \\=([^;]*);", "\\`([^\\`]*)\\`"]
|
|
],
|
|
"editor.quickSuggestions": {
|
|
"strings": true
|
|
}
|
|
}
|