Skip to content

Commit

Permalink
chore: Update ESLint rules
Browse files Browse the repository at this point in the history
  • Loading branch information
microshine committed Jun 3, 2024
1 parent ac7b639 commit 55580e8
Showing 1 changed file with 14 additions and 14 deletions.
28 changes: 14 additions & 14 deletions .eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,19 +20,19 @@
"website"
],
"rules": {
"@typescript-eslint/ban-ts-ignore": 0,
"@typescript-eslint/camelcase": 0,
"@typescript-eslint/explicit-function-return-type": 0,
"@typescript-eslint/interface-name-prefix": 0,
"@typescript-eslint/no-explicit-any": 0,
"semi": 0,
"@typescript-eslint/semi": 2,
"quotes": 0,
"@typescript-eslint/quotes": 2,
"no-duplicate-imports": 2,
"@typescript-eslint/explicit-module-boundary-types": 0,
"@typescript-eslint/triple-slash-reference": 0,
"no-trailing-spaces": 2,
"deprecation/deprecation": 2
"@typescript-eslint/ban-ts-ignore": "off",
"@typescript-eslint/camelcase": "off",
"@typescript-eslint/explicit-function-return-type": "off",
"@typescript-eslint/interface-name-prefix": "off",
"@typescript-eslint/no-explicit-any": "off",
"semi": "off",
"@typescript-eslint/semi": "warn",
"quotes": "off",
"@typescript-eslint/quotes": "warn",
"no-duplicate-imports": "warn",
"@typescript-eslint/explicit-module-boundary-types": "off",
"@typescript-eslint/triple-slash-reference": "off",
"no-trailing-spaces": "warn",
"deprecation/deprecation": "warn"
}
}

0 comments on commit 55580e8

Please sign in to comment.