Files
AstralRinth/apps/frontend/.eslintrc.json
Evan Song abec2e48d4 Add TailwindCSS (#1252)
* Setup TailwindCSS

* Fully setup configuration

* Refactor some tailwind variables
2024-07-06 20:57:32 -07:00

19 lines
430 B
JSON

{
"extends": ["@nuxt/eslint-config", "plugin:prettier/recommended", "prettier"],
"env": {
"browser": true,
"node": true
},
"ignorePatterns": [".nuxt/**", ".output/**", "node_modules"],
"overrides": [
{
"files": ["*.ts", "*.tsx", "*.js", "*.jsx", "*.vue"],
"rules": {
"no-console": "off",
"vue/no-v-html": "off",
"vue/multi-word-component-names": "off"
}
}
]
}