Skip to content

Commit

Permalink
fix: lint error
Browse files Browse the repository at this point in the history
  • Loading branch information
ekraffmiller committed Nov 7, 2023
1 parent 76af54e commit 3768758
Showing 1 changed file with 5 additions and 23 deletions.
28 changes: 5 additions & 23 deletions .eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,7 @@
},
"import/resolver": {
"node": {
"extensions": [
".js",
".jsx",
".ts",
".tsx"
]
"extensions": [".js", ".jsx", ".ts", ".tsx"]
}
}
},
Expand Down Expand Up @@ -41,12 +36,7 @@
"./packages/design-system/tests/tsconfig.json"
]
},
"plugins": [
"react",
"simple-import-sort",
"import",
"unused-imports"
],
"plugins": ["react", "simple-import-sort", "import", "unused-imports"],
"rules": {
"@typescript-eslint/no-unused-vars": "off",
"react/prop-types": "off",
Expand All @@ -63,9 +53,7 @@
"@typescript-eslint/no-empty-function": [
"error",
{
"allow": [
"arrowFunctions"
]
"allow": ["arrowFunctions"]
}
],
"react/react-in-jsx-scope": "off",
Expand All @@ -83,10 +71,7 @@
},
"overrides": [
{
"files": [
"**/e2e/**/*.spec.ts",
"**/component/**/*.spec.tsx"
],
"files": ["**/e2e/**/*.spec.ts", "**/component/**/*.spec.tsx"],
"rules": {
"testing-library/await-async-query": 0,
"@typescript-eslint/no-unsafe-member-access": 0,
Expand All @@ -95,8 +80,5 @@
}
}
],
"ignorePatterns": [
"packages/design-system/dist/**",
"dev-env/vite.config.ts"
]
"ignorePatterns": ["packages/design-system/dist/**", "dev-env/vite.config.ts"]
}

0 comments on commit 3768758

Please sign in to comment.