Skip to content

Commit

Permalink
Fix prettier issue
Browse files Browse the repository at this point in the history
  • Loading branch information
francisli committed Nov 18, 2023
1 parent 6b78b38 commit 8b4e586
Showing 1 changed file with 6 additions and 21 deletions.
27 changes: 6 additions & 21 deletions .eslintrc.json
Original file line number Diff line number Diff line change
@@ -1,28 +1,18 @@
{
"parser": "@typescript-eslint/parser",
"extends": [
"next/core-web-vitals",
"plugin:storybook/recommended"
],
"ignorePatterns": [
"*.json"
],
"extends": ["next/core-web-vitals", "plugin:storybook/recommended"],
"ignorePatterns": ["*.json"],
"overrides": [
{
"files": [
"*.ts",
"*.tsx"
],
"files": ["*.ts", "*.tsx"],
"extends": [
"eslint:recommended",
"plugin:@next/next/recommended",
"plugin:@typescript-eslint/recommended",
"plugin:@typescript-eslint/recommended-requiring-type-checking"
],
"parserOptions": {
"project": [
"./tsconfig.json"
]
"project": ["./tsconfig.json"]
},
"rules": {
"@typescript-eslint/no-non-null-assertion": "off",
Expand All @@ -31,13 +21,8 @@
}
],
"rules": {
"@next/next/no-html-link-for-pages": [
"error",
"src/pages/"
]
"@next/next/no-html-link-for-pages": ["error", "src/pages/"]
},
"plugins": [
"@typescript-eslint"
],
"plugins": ["@typescript-eslint"],
"root": true
}

0 comments on commit 8b4e586

Please sign in to comment.