mirror of
https://github.com/theoludwig/theoludwig.git
synced 2024-11-04 20:41:30 +01:00
40 lines
727 B
JSON
40 lines
727 B
JSON
{
|
|
"root": true,
|
|
"extends": [
|
|
"conventions",
|
|
"next/core-web-vitals",
|
|
"plugin:tailwindcss/recommended",
|
|
"prettier"
|
|
],
|
|
"plugins": ["prettier"],
|
|
"parserOptions": {
|
|
"project": "./tsconfig.json"
|
|
},
|
|
"settings": {
|
|
"tailwindcss": {
|
|
"callees": ["classNames"]
|
|
},
|
|
"react": {
|
|
"version": "detect"
|
|
}
|
|
},
|
|
"rules": {
|
|
"prettier/prettier": "error",
|
|
"react/self-closing-comp": [
|
|
"error",
|
|
{
|
|
"component": true,
|
|
"html": true
|
|
}
|
|
],
|
|
"react/void-dom-elements-no-children": "error",
|
|
"react/jsx-boolean-value": "error"
|
|
},
|
|
"overrides": [
|
|
{
|
|
"files": ["*.ts", "*.tsx"],
|
|
"parser": "@typescript-eslint/parser"
|
|
}
|
|
]
|
|
}
|