Preconfigured ESLint rules and Prettier formatting for plug and play usage in projects.
For NX projects simply copy over the rules for now.
- Install @schablone/eslint-config with:
yarn add @schablone/eslint-config -D
ornpm install @schablone/eslint-config --save-dev
- Install the required peer dependencies if not present:
yarn add eslint prettier -D
ornpm install eslint prettier --save-dev
- Use it within your .eslintrc:
{ "extends": "@schablone/eslint-config" }
- Be aware, that this config is meant to be used with React versions 17 and above, because it turns off the
react/react-in-jsx-scope
rule
Please note, that any change to the linting rules that produces an error and not just a warning needs to be major release, because it will break dependent code.
These are all the rules which differ from the AirBnB config or the default Prettier settings:
arrow-body-style
: Turned off, because we want to keep the option to be explicitimport/prefer-default-export
: Default imports are not preferredimport/extensions
: Turned off, because it is not necessary with Typescriptno-await-in-loop
: It is more common to have dependent calls in a loop than parallelizable callsno-cond-assign
: Turned off to allow assigning in while loopsno-restricted-imports
: Make sure all Material UI components are imported directly from coreno-restricted-syntax
:for (of)
considered fast enough for our use cases, bewarefor (in)
and check object property yourselfno-return-await
: Debugging is improved with return await at the cost of an extra microtaskno-useless-constructor
: Empty constructor required by some redux implementationssort-imports
: Members in a multiple member import declaration should be sorted alphabetically
react/function-component-definition
: Set to warn if not an arrow-functionreact/react-in-jsx-scope
: Turned off, because it is not necessary anymore since React 17react/require-default-props
: Turned off, because it will be deprecated in upcoming React versions anyway (use default parameters instead)
@typescript-eslint/consistent-type-imports
: Produce a warning if the type imports are not marked as such@typescript-eslint/explicit-member-accessibility
: Require explicit accessibility declaration of all class members@typescript-eslint/explicit-module-boundary-types
: Not necessary because IntelliSense catches this in a sufficient fashion@typescript-eslint/no-unused-vars
: Only produce warnings for unused variables
printWidth
: Print width is set to 120, instead of 80 for better readabilitysemi
: Semicolons are requiredsingleQuote
: Single quotes are used instead of double quotes in normal code
- List of all ESLint rules
- AirBnB Javascript styleguide with reasoning and explanations for rules
- Prettier options