ESLint shareable config used @Ubleam
This repository holds the shared ESLint configuration used for all our TypeScript projects at Ubleam.
The current configuration enforces strict dogmatic rules - (too strict you might think)- in addition to those recommended by the various linting extensions available such as ESLint itself, and various plugins such as react
, react-hooks
, typescript-eslint
...
Indeed, at Ubleam we are convinced that the quality of the code depends on clear and consistent coding conventions, with an automated enforcement.
The rules configured are mainly based on two pillars:
- React: We encourage as much as possible an architectural approach focusing on Functional Components. That's why we enforce a strict mode and a High Severity according to the recommendations of Facebook Core (React Team).
- TypeScript: At Ubleam, we love Type Safety, and we are deeply conviced that better type safety means less error in production. That's one of the reasons we chose
TypeScript
overJavaScript
. We've therefore adopted very strict Type Checking rules in order to take advantage of the best ofTypeScript
.
npx install-peerdeps --dev @ubleam/eslint-config
If you want to use yarn
, you must first list all peer dependencies using npm
and add then individually with yarn
.
First, list the peer dependencies and versions:
npm info @ubleam/eslint-config@latest peerDependencies
Then run the following command line for each listed peer dependency.
yarn add --dev <dependency>@<version>
This ESLint configuration is meant to be used with:
- Prettier. All rules handled by Prettier are turned off.
- TypeScript: As we use
@typescript-eslint/parser
, you must have the filetsconfig.json
in the root your project. See documentation for more.
Once the package @ubleam/eslint-config
is installed, you can use it by specifying @ubleam
in the extends section of the ESLint configuration.
For instance:
{
"extends": "@ubleam",
"rules": {
// Additional rules...
}
}
So you want to contribute? Great. We appreciate any help you're willing to give. Don't hesitate to open issues and/or submit pull requests.
Remember that this is the configuration we use at Ubleam, and that we apply everywhere in our private and public projects. This is why we may have to refuse change requests simply because they do not comply with our internal requirements, and not because they are not relevant.