some changes for the tailwind classes and turned the rule for custom classes off
Some checks failed
checks-impure / test (pull_request) Successful in 26s
checks / test (pull_request) Failing after 1m59s

This commit is contained in:
sara-pervana
2024-01-14 15:12:47 +01:00
parent 0d6235e041
commit c179ac2424
4 changed files with 22 additions and 15 deletions

View File

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