mirror of
https://github.com/theoludwig/theoludwig.git
synced 2024-11-05 04:51:30 +01:00
21 lines
629 B
JSON
21 lines
629 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": "explicit"
|
|
},
|
|
"eslint.options": {
|
|
"ignorePath": ".gitignore"
|
|
},
|
|
"prettier.ignorePath": ".gitignore",
|
|
"tailwindCSS.experimental.classRegex": [
|
|
["cva\\(([^)]*)\\)", "[\"'`]([^\"'`]*).*?[\"'`]"],
|
|
["cx\\(([^)]*)\\)", "(?:'|\"|`)([^']*)(?:'|\"|`)"]
|
|
]
|
|
}
|