Our one for all eslint-config to use across our JavaScript/TypeScript projects
Many different configurations can be combined with this package. There are some entry level configurations which should not be combined in between themselves that provide most essential configuration depending on the technologies used within the project you are working on. Additional configurations are provided to extend the entry level configuration with some of the optional tooling that can be used within your project.
All eslint plugins are installed as a peerDependency as defined in the official eslint guide on sharable configurations.
To install dependencies for all plugins you can simply run following command:
npx install-peerdeps --dev @sudolabs-io/eslint-config-sudolabsThis might installed dependencies that you might not use (eslint-plugin-jest, eslint-plugin-cypress). All dependencies are marked as optional so you can then remove them if it bothers you.
If you prefer manually installing peerDependencies they will be included in the installation examples to the according configurations.
These configurations should not be used together. All of the common functionality is already being modularized within the scope of this package.
This is due to different air-bnb rules and plugins being included in the respective configurations.
For simple node projects your .eslintrc configuration should look like this:
{
"extends": ["@sudolabs-io/eslint-config-sudolabs/typescript"]
}This configuration needs following dependencies to be installed:
npm i -D eslint @sudolabs-io/eslint-config-sudolabs @typescript-eslint/eslint-plugin @typescript-eslint/parser eslint-config-airbnb-base eslint-config-airbnb-typescript eslint-plugin-import eslint-plugin-simple-import-sortYou don't have to install these dependencies if you've installed all dependencies with
npx install-peerdeps --dev @sudolabs-io/eslint-config-sudolabs
Typescript projects with React should use different entry configuration:
{
"extends": ["@sudolabs-io/eslint-config-sudolabs/typescript-react"]
}This configuration needs following dependencies to be installed:
npm i -D eslint @sudolabs-io/eslint-config-sudolabs @typescript-eslint/eslint-plugin @typescript-eslint/parser eslint-config-airbnb eslint-config-airbnb-typescript eslint-plugin-import eslint-plugin-simple-import-sort eslint-plugin-jsx-a11y eslint-plugin-react eslint-plugin-react-hooksYou don't have to install these dependencies if you've installed all dependencies with
npx install-peerdeps --dev @sudolabs-io/eslint-config-sudolabs
Note: This configuration can be used in projects that are also
nodeprojects. You don't have to include multiple configurations for mono-repo projects.
For simple node projects your .eslintrc configuration should look like this:
{
"extends": ["@sudolabs-io/eslint-config-sudolabs/javascript"]
}This configuration needs following dependencies to be installed:
npm i -D eslint @sudolabs-io/eslint-config-sudolabs eslint-config-airbnb eslint-plugin-importYou don't have to install these dependencies if you've installed all dependencies with
npx install-peerdeps --dev @sudolabs-io/eslint-config-sudolabs
Projects with React should use different entry configuration:
{
"extends": ["@sudolabs-io/eslint-config-sudolabs/javascript-react"]
}This configuration needs following dependencies to be installed:
npm i -D eslint @sudolabs-io/eslint-config-sudolabs eslint-config-airbnb eslint-plugin-import eslint-plugin-jsx-a11y eslint-plugin-react eslint-plugin-react-hooksYou don't have to install these dependencies if you've installed all dependencies with
npx install-peerdeps --dev @sudolabs-io/eslint-config-sudolabs
Note: This configuration can be used in projects that are also
nodeprojects. You don't have to include multiple configurations for mono-repo projects.
These extenders serve as optional recommended rules that could be plugged in to the configuration.
Plugins are located in the with folder to be recognized as extending plugins.
Example usage with typescript-react configuration:
{
"extends": [
"@sudolabs-io/eslint-config-sudolabs/typescript-react",
"@sudolabs-io/eslint-config-sudolabs/with/jest"
]
}To enable this configuration you need to install additional peerDependecies:
npm i -D eslint-plugin-jestYou don't have to install these dependencies if you've installed all dependencies with
npx install-peerdeps --dev @sudolabs-io/eslint-config-sudolabs
Cypress .eslintrc configuration file should be placed within your projects /cypress folder.
{
"extends": ["@sudolabs-io/eslint-config-sudolabs/with/cypress"]
}If you use TypeScript, you should use separate tsconfig.json for your /cypress folder to correctly inherit Cypress typings. You will need to tell @typescript-eslint/parser to look for this configuration:
{
"extends": ["@sudolabs-io/eslint-config-sudolabs/with/cypress"],
"parserOptions": {
"project": "./cypress/tsconfig.json"
}
}To enable this configuration you need to install additional peerDependecies:
npm i -D eslint-plugin-cypressYou don't have to install these dependencies if you've installed all dependencies with
npx install-peerdeps --dev @sudolabs-io/eslint-config-sudolabs
Many projects use lodash as their main utility library.
Our configuration includes only necessary rules which should prevent wrong usage but we don't prefer usage of lodash over native functions.
Add lodash configuration to .eslintrc configuration:
{
"extends": ["@sudolabs-io/eslint-config-sudolabs/with/lodash"]
}Very controversial rule lodash/import-scope is not set as every project can be set up to support different imports for tree-shakeable lodash modules.
It is recommended to specify this additional rule according to convention / project setup:
{
"rules": {
"lodash/import-scope": [2, "method"],
}
}
To enable this configuration you need to install additional `peerDependecies`:
```bash
npm i -D eslint-plugin-lodashYou don't have to install these dependencies if you've installed all dependencies with
npx install-peerdeps --dev @sudolabs-io/eslint-config-sudolabs
Most of the projects use prettier for formatting.
To enable prettier with recommended rules you should add it at the last position in the extends array field.
{
"extends": [
"@sudolabs-io/eslint-config-sudolabs/typescript-react",
"@sudolabs-io/eslint-config-sudolabs/with/jest",
"@sudolabs-io/eslint-config-sudolabs/with/prettier"
]
}To enable this configuration you need to install additional peerDependecies:
npm i -D eslint-plugin-prettier eslint-config-prettierYou don't have to install these dependencies if you've installed all dependencies with
npx install-peerdeps --dev @sudolabs-io/eslint-config-sudolabs