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.
The ESLint config and Prettier config must both be added to get the full shared configuration. The ESLint configuration includes the prettier plugin which will load the prettier config and report issues as errors.
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
Add @emerson-eps/prettier-config
to your package.json
:
{
"prettier": "@emerson-eps/prettier-config"
}
For more advanced setups, including how to override settings, see the instructions in the @emerson-eps/prettier-config repository.
Specify the package in the extends
section of your ESLint configuration:
{
"extends": "@emerson-eps/eslint-config",
"rules": {
// Additional rules...
}
}
Add a lint script to your package.json
, for example:
{
"scripts": {
"lint": "eslint ."
}
}
Code can then be linted with:
npm run lint
CI pipelines should be configured to fail on linting warnings.
If not already installed, install the Prettier and ESLint extensions.
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.