mirror of
https://github.com/ArthurDanjou/website.git
synced 2026-01-14 20:19:35 +01:00
62 lines
1.6 KiB
JSON
62 lines
1.6 KiB
JSON
{
|
|
// TailwindCSS
|
|
"files.associations": {
|
|
"*.css": "tailwindcss"
|
|
},
|
|
"editor.quickSuggestions": {
|
|
"strings": true
|
|
},
|
|
"tailwindCSS.experimental.configFile": "tailwind.config.ts",
|
|
"tailwindCSS.experimental.classRegex": [
|
|
["ui:\\s*{([^)]*)\\s*}", "[\"'`]([^\"'`]*).*?[\"'`]"],
|
|
["/\\*ui\\*/\\s*{([^;]*)}", ":\\s*[\"'`]([^\"'`]*).*?[\"'`]"]
|
|
],
|
|
"tailwindCSS.classAttributes": [
|
|
"class",
|
|
"ui"
|
|
],
|
|
|
|
// Enable the ESlint flat config support
|
|
"eslint.experimental.useFlatConfig": true,
|
|
|
|
// Disable the default formatter, use eslint instead
|
|
"prettier.enable": false,
|
|
"editor.formatOnSave": false,
|
|
|
|
// Auto fix
|
|
"editor.codeActionsOnSave": {
|
|
"source.fixAll.eslint": "explicit",
|
|
"source.organizeImports": "never"
|
|
},
|
|
|
|
// Silent the stylistic rules in you IDE, but still auto fix them
|
|
"eslint.rules.customizations": [
|
|
{ "rule": "style/*", "severity": "off" },
|
|
{ "rule": "*-indent", "severity": "off" },
|
|
{ "rule": "*-spacing", "severity": "off" },
|
|
{ "rule": "*-spaces", "severity": "off" },
|
|
{ "rule": "*-order", "severity": "off" },
|
|
{ "rule": "*-dangle", "severity": "off" },
|
|
{ "rule": "*-newline", "severity": "off" },
|
|
{ "rule": "*quotes", "severity": "off" },
|
|
{ "rule": "*semi", "severity": "off" }
|
|
],
|
|
|
|
// Enable eslint for all supported languages
|
|
"eslint.validate": [
|
|
"javascript",
|
|
"javascriptreact",
|
|
"typescript",
|
|
"typescriptreact",
|
|
"vue",
|
|
"html",
|
|
"markdown",
|
|
"json",
|
|
"jsonc",
|
|
"yaml"
|
|
],
|
|
|
|
// Grammarly
|
|
"grammarly.files.include": ["**/*.txt", "**/*.md"]
|
|
}
|