Skip to content

Commit

Permalink
removed redundant ignorepatterns
Browse files Browse the repository at this point in the history
  • Loading branch information
alex committed Mar 4, 2024
1 parent 09111f8 commit db7b7c3
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 9 deletions.
11 changes: 2 additions & 9 deletions .eslintrc.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
{
"root": true,
"extends": [
"eslint:recommended",
"plugin:react/jsx-runtime",
Expand All @@ -8,12 +9,7 @@
"plugin:tailwindcss/recommended"
],
"parser": "@typescript-eslint/parser",
"ignorePatterns": [
"**/lib/**",
"**/node_modules/**",
"website/public/examples/**"
],
"root": true,
"ignorePatterns": ["**/lib/**"],
"plugins": ["react", "jest", "@typescript-eslint", "tailwindcss"],
"env": {
"browser": true,
Expand All @@ -33,9 +29,6 @@
}
},
"rules": {
"quotes": ["error", "double"],
"semi": ["error", "always"],
"no-plusplus": "off",
"@typescript-eslint/no-explicit-any": "off",
"@typescript-eslint/no-non-null-assertion": "off",
"tailwindcss/no-custom-classname": "off"
Expand Down
1 change: 1 addition & 0 deletions website/.eslintrc.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
{
"extends": "next/core-web-vitals",
"ignorePatterns": ["public/examples/**"],
"rules": {
"@next/next/no-html-link-for-pages": "off"
}
Expand Down

0 comments on commit db7b7c3

Please sign in to comment.