We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 69dda5a commit 595eaa4Copy full SHA for 595eaa4
1 file changed
status-list-mock/eslint.config.mjs
@@ -2,9 +2,9 @@ import eslint from "@eslint/js";
2
import tseslint from "typescript-eslint";
3
import eslintConfigPrettier from "eslint-config-prettier";
4
5
-const configs = [
+export default tseslint.config(
6
eslint.configs.recommended,
7
- tseslint.configs.recommended,
+ ...tseslint.configs.recommended,
8
eslintConfigPrettier, // Disables ESLint rules that conflict with Prettier
9
{
10
rules: {
@@ -19,6 +19,4 @@ const configs = [
19
],
20
},
21
22
-];
23
-
24
-export default tseslint.config(configs);
+);
0 commit comments