Files
service-aware-frontend/pkgs/ui/.eslintrc.json
sara-pervana c179ac2424
Some checks failed
checks-impure / test (pull_request) Successful in 26s
checks / test (pull_request) Failing after 1m59s
some changes for the tailwind classes and turned the rule for custom classes off
2024-01-14 15:12:47 +01:00

19 lines
392 B
JSON

{
"root": true,
"extends": [
"next/core-web-vitals",
"plugin:tailwindcss/recommended",
"plugin:@typescript-eslint/recommended"
],
"parser": "@typescript-eslint/parser",
"plugins": [
"@typescript-eslint"
],
"ignorePatterns": [
"**/src/api/*"
],
"rules": {
"@typescript-eslint/no-explicit-any": "off",
"tailwindcss/no-custom-classname": "off"
}
}