Skip to content
This repository has been archived by the owner on Sep 25, 2023. It is now read-only.

Commit

Permalink
fix(misc): fix misc rule issues
Browse files Browse the repository at this point in the history
  • Loading branch information
spudly committed Nov 2, 2021
1 parent 4b33322 commit a1f2a77
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions index.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ module.exports = {
project: "./tsconfig.json",
sourceType: "module",
warnOnUnsupportedTypeScriptVersion: true,
extraFileExtensions: [".js", ".jsx", ".ts", ".tsx", ".cjs", ".mjs"],
extraFileExtensions: [".cjs", ".mjs"],
},
plugins: [
"@typescript-eslint",
Expand Down Expand Up @@ -84,7 +84,7 @@ module.exports = {
"eslint-comments/no-unlimited-disable": "warn",
"eslint-comments/no-unused-disable": "warn",
"eslint-comments/no-unused-enable": "warn",
"eslint-comments/no-use": "warn",
"eslint-comments/no-use": "off", // allow directive comments
"eslint-comments/require-description": "warn",
"for-direction": "error",
"func-call-spacing": "off",
Expand Down Expand Up @@ -869,7 +869,7 @@ module.exports = {
"node/no-sync": "error",
"node/no-unpublished-bin": "error",
"node/no-unpublished-import": "off",
"node/no-unpublished-require": "error",
"node/no-unpublished-require": "off",
"node/no-unsupported-features/es-builtins": "error",
"node/no-unsupported-features/es-syntax": "off",
"node/no-unsupported-features/node-builtins": "error",
Expand Down

0 comments on commit a1f2a77

Please sign in to comment.