0.6.2 • Published 7 months ago

@ayuhito/eslint-config v0.6.2

Weekly downloads
-
License
MIT
Repository
github
Last release
7 months ago

eslint-config

Personal ESLint Config for Node.js and TypeScript.

// .eslintrc.cjs
module.exports = {
  extends: ["@ayuhito/eslint-config"],
};

You can remove ESM restrictions by using the following config:

// .eslintrc.cjs
module.exports = {
  extends: ["@ayuhito/eslint-config"],
  rules: {
    "unicorn/prefer-module": "off",
  },
};