Skip to content

Commit

Permalink
fix: eslint issues
Browse files Browse the repository at this point in the history
Signed-off-by: Manuel Ruck <[email protected]>
  • Loading branch information
Manuel Ruck committed May 25, 2024
1 parent 1b37e65 commit 52c2f36
Showing 1 changed file with 3 additions and 12 deletions.
15 changes: 3 additions & 12 deletions democracy/desktop/.eslintrc
Original file line number Diff line number Diff line change
@@ -1,10 +1,7 @@
{
"root": true,
// Configuration for JavaScript files
"extends": [
"airbnb-base",
"next/core-web-vitals",
"plugin:prettier/recommended"
],
"extends": ["airbnb-base", "next/core-web-vitals", "plugin:prettier/recommended"],
"rules": {
"prettier/prettier": [
"error",
Expand All @@ -25,9 +22,6 @@
"next/core-web-vitals",
"plugin:prettier/recommended"
],
"parserOptions": {
"project": "./tsconfig.json"
},
"rules": {
"prettier/prettier": [
"error",
Expand Down Expand Up @@ -70,10 +64,7 @@
], // Follow the same ordering as the official plugin `prettier-plugin-tailwindcss`
"@typescript-eslint/no-unused-vars": "off",
"unused-imports/no-unused-imports": "error",
"unused-imports/no-unused-vars": [
"error",
{ "argsIgnorePattern": "^_" }
]
"unused-imports/no-unused-vars": ["error", { "argsIgnorePattern": "^_" }]
}
}
]
Expand Down

0 comments on commit 52c2f36

Please sign in to comment.