Skip to content

Commit

Permalink
Add TypeScript ESLint rules
Browse files Browse the repository at this point in the history
  • Loading branch information
EmilianoBruni committed Jan 24, 2024
1 parent 46bd473 commit f3a510e
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion .eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@
},
"extends": [
"eslint:recommended",
"plugin:@typescript-eslint/eslint-recommended",
"plugin:@typescript-eslint/recommended",
"prettier"
],
"plugins": ["import", "prettier"],
Expand All @@ -23,6 +25,13 @@
"order": "asc",
"caseInsensitive": true
}
}]
}],
"@typescript-eslint/consistent-type-imports": [
"error",
{
"prefer": "type-imports"
}
],
"@typescript-eslint/no-explicit-any": "off"
}
}

0 comments on commit f3a510e

Please sign in to comment.