Files
clan-core/pkgs/ui/.eslintrc.json
Johannes Kirschbauer 376aee57e9 disable lint rule
2023-11-04 09:46:14 +01:00

12 lines
345 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": {
"no-unused-vars": "off",
"@typescript-eslint/no-explicit-any": "off"
}
}