Skip to content

Commit

Permalink
chore(.eslintrc.cjs): 💄 update ESLint configuration
Browse files Browse the repository at this point in the history
  • Loading branch information
navin-moorthy committed May 3, 2023
1 parent 810182a commit 7a17cc4
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .eslintrc.cjs
Original file line number Diff line number Diff line change
@@ -1,9 +1,12 @@
const commonIgnoredRules = {
"no-console": ["error", { allow: ["warn", "error"] }],
"no-param-reassign": "off",
"arrow-body-style": ["error", "as-needed"],
"import/no-named-as-default": "off",
"import/no-unassigned-import": ["error", { allow: ["**/*.css"] }],
"import/no-extraneous-dependencies": ["off"],
"import/no-extraneous-dependencies": "off",
"node/callback-return": "off",
"func-style": "off",
"simple-import-sort/imports": "off",
"unicorn/no-array-reduce": "off",
"canonical/sort-keys": "off",
Expand All @@ -12,6 +15,7 @@ const commonIgnoredRules = {
"canonical/filename-match-exported": "off",
"canonical/filename-match-regex": "off",
"canonical/id-match": "off",
"canonical/export-specifier-newline": "off",
"zod/require-strict": "off",
};

Expand Down

0 comments on commit 7a17cc4

Please sign in to comment.