@fullstacksjs/eslint-config

10.11.1 • Public • Published

logo


download status version MIT License

Installation

$ npm install --save-dev @fullstacksjs/eslint-config eslint prettier

Usage

Method 1: Init API

Create .eslintrc.js file and init the configuration.

const { init } = require('@fullstacksjs/eslint-config/init');

module.exports = init({
  modules: {
    auto: true, // If you need auto module detection (refer to Auto Module Detection).
    // Modules configuration check (optional). (refer to Module API)
  },
  // Other ESLint configurations
});

Method 2: Extends API

You can also use the configuration within a json or yaml files by extending from @fullstacksjs, the Auto Module Detection is enabled on this method

{
  "extends": ["@fullstacksjs"]
}

Auto Module Detection

When auto module detection is turned on, the configuration reads the metadata from your root "package.json" file and automatically adds the rules and plugins that are needed. It's enabled for the extends API, and you should set modules.auto to true when you use the init API.

Modules API

interface Modules {
    auto?: boolean; // Auto module detection
    react?: boolean; // controls react, react-hooks, jsx/a11y plugins
    typescript?: { // controls typescript plugin
      parserProject?: boolean | string[] | string; // controls parserOptions.project
      resolverProject?: string[] | string // controls settings['import/resolver'].typescript.project
    };
    node?: boolean; // controls node plugin
    strict?: boolean; // controls strict plugin
    import?: boolean; // controls import plugin
    esm?: boolean; // controls esm plugin
    graphql?: boolean; // controls graphql plugin
    test?: boolean; // controls jest/vitest plugin
    cypress?: boolean; // controls cypress plugin
    storybook?: boolean; // controls storybook plugin
    tailwind?: boolean; // controls tailwindcss plugin
    next?: boolean; // controls next plugin
    prettier?: boolean; // controls prettier plugin
    disableExpensiveRules?: boolean; // controls expensive rules
}

Typescript configuration

If you need more advanced typescript-eslint rule you need to specify modules.typescript.resolverProject.

module.exports = init({
  modules: {
    typescript: {
      parserProject: true, // parserOptions.project
      resolverProject: "<PATH_TO_TSCONFIG>", // settings['import/resolver']
    },
  },
});

Speed Optimization!

It's crucial to balance the benefits of linting rules against their performance impact. Below is a table highlighting the most resource-intensive linting rules encountered in a real-world React project:

Rule Time (ms) Relative
prettier/prettier 3299.631 19.2%
@typescript-eslint/no-misused-promises 2473.767 14.4%
import/no-cycle 1177.111 6.8%
import/namespace 1148.731 6.7%

As illustrated, certain rules significantly increase linting time, potentially hindering the developer experience by slowing down the feedback loop. To mitigate this, you may consider disabling these resource-intensive rules in the development environment. However, they can remain active in environments where performance is less critical, such as Continuous Integration (CI) systems or during pre-commit checks (git hooks).

To conditionally disable expensive linting rules, you can modify your configuration as follows:

list of expensiveRules to be effected:

@typescript-eslint/no-misused-promises
import/no-cycle
import/named *
import/namespace *
import/default *
import/no-named-as-default-member *

*: If you are using Typescript these rules are not needed and disabled by default.

module.exports = init({
  modules: {
    disableExpensiveRules: !process.env.CI || !process.env.HUSKY // Or anywhere you want
    prettier: false // So you should run the formatter explicitly.
  },
});

This approach ensures a smoother development experience while still enforcing rigorous code quality checks in environments where performance is less of a concern.

React/NextJS configuration

React/NextJS configuration should automatically work with Auto Module Detection, but if you need to have more control over the rules you can configure it through modules.react.

module.exports = init({
  modules: {
    react: true // for React/CRA/Vite
  },
});

and

module.exports = init({
  modules: {
    react: true,
    next: true // for NextJS
  },
});

Migration Guid

to v9

v9 does not have any breaking change, which means the current configuration you have should work without any problem, but in order to migrate to new Module API:

  1. Move your configs to .eslintrc.js file.
  2. Use init API.
    -module.exports = {
    -  extends: [
    -    "@fullstacksjs",
    -    "@fullstacksjs/eslint-config/esm",
    -    "@fullstacksjs/eslint-config/typecheck",
    -    "@fullstacksjs/eslint-config/graphql"
    -  ],
    -  "parserOptions": {
    -    "project": ["./tsconfig.eslint.json"]
    -  },
    -  "settings": {
    -    "import/resolver": {
    -      "typescript": {
    -        "project": ["./tsconfig.json"]
    -      },
    -    },
    -  },
    -  // your configuration
    -};
    +const { init } = require('@fullstacksjs/eslint-config/init');
    +
    +module.exports = init({
    +  modules: {
    +    auto: true,
    +    esm: true,
    +    graphql: true,
    +    typescript: {
    +      parserProject: ['./tsconfig.eslint.json'],
    +      resolverProject: ['./tsconfig.json'],
    +    },
    +  },
    +  // your configuration
    +});

What's included?

That's all. Feel free to use 💛

Readme

Keywords

none

Package Sidebar

Install

npm i @fullstacksjs/eslint-config

Weekly Downloads

100

Version

10.11.1

License

MIT

Unpacked Size

63.9 kB

Total Files

28

Last publish

Collaborators

  • fullstacksjs