6.1.8 • Published 1 month ago

@emerson-eps/eslint-config v6.1.8

Weekly downloads
-
License
MIT
Repository
github
Last release
1 month ago

Shared ESLint Config

GitHub Workflow Status GitHub license npm (scoped) semantic-release Conventional Commits

This is the home of the shared E&P Software ESLint configs. The default config should be used for all React Typescript projects in E&P Software.

Usage

The ESLint config and Prettier config must both be added to get the full shared configuration.

(1) Install the shared Prettier and ESLint configs

npm install --save-dev @emerson-eps/prettier-config @emerson-eps/eslint-config

If you have not already installed prettier and eslint install those as well:

npm install --save-dev prettier eslint

(2) Configure Prettier

Add @emerson-eps/prettier-config to your .prettierrc.js:

module.exports = {
  ...require("@emerson-eps/prettier-config"),
};

For more advanced setups, including how to override settings, see the instructions in the @emerson-eps/prettier-config repository.

(3) Configure ESLint

Specify the package in the extends section of your ESLint configuration:

{
  "extends": "@emerson-eps/eslint-config",
  "rules": {
    // Additional rules...
  }
}

List of current rules

The list of applied rules can be found here

Running ESLint on your code

Add a lint script to your package.json, for example:

{
  "scripts": {
    "lint": "eslint . --max-warnings=0"
  }
}

Code can then be linted with:

npm run lint

CI pipelines should be configured to fail on linting warnings.

Integration with Visual Studio Code

If not already installed, install the Prettier and ESLint extensions.

Overriding the shared configs

Try not to override the shared configs unless you really need to. If you must override them please consider proposing the override as a change to the relevant repository first to avoid divergence of code styles in different projects.

6.1.8

1 month ago

6.1.7

1 month ago

6.1.4

2 months ago

6.1.6

2 months ago

6.1.5

2 months ago

6.1.0

6 months ago

6.0.1

10 months ago

6.0.0

11 months ago

6.1.2

6 months ago

6.0.3

10 months ago

6.1.1

6 months ago

6.0.2

10 months ago

6.0.5

9 months ago

6.1.3

6 months ago

6.0.4

10 months ago

6.0.15

7 months ago

6.0.14

7 months ago

6.0.13

7 months ago

6.0.12

8 months ago

6.0.11

8 months ago

6.0.10

9 months ago

6.0.7

9 months ago

6.0.6

9 months ago

6.0.9

9 months ago

6.0.8

9 months ago

5.0.4

1 year ago

5.0.3

1 year ago

5.0.2

1 year ago

5.0.1

1 year ago

5.0.0

1 year ago

4.0.1

1 year ago

4.0.2

1 year ago

3.0.8

1 year ago

4.0.0

1 year ago

3.0.9

1 year ago

3.0.4

2 years ago

3.0.3

2 years ago

3.0.7

2 years ago

3.0.6

2 years ago

3.0.5

2 years ago

3.0.2

2 years ago

3.0.1

2 years ago

3.0.0

2 years ago

2.0.3

3 years ago

2.0.2

3 years ago

2.0.4

3 years ago

2.0.1

3 years ago

1.0.1

3 years ago

2.0.0

3 years ago

1.0.0

3 years ago