Eslint Config
Eslint configuration with Typescript and Prettier support by default. This settings is used across all JavaScript/Typescript projects at Platos Educational.
Using
1. Install the library and its dependencies
npm:
npm install --save-dev eslint @platosedu/eslint-config prettier
yarn:
yarn add dev @platosedu/eslint-config prettier
2. Set up the prettier configuration
.prettierrc.json
2.1. Add file {
"trailingComma": "none",
"semi": false,
"singleQuote": true,
"endOfLine": "auto"
}
.vscode/settings.json
2.2. If you use VSCode, add the file This settings is needed to automatize code formatting when a file is saved
{
"editor.formatOnSave": false,
"editor.codeActionsOnSave": {
"source.fixAll.eslint": true,
"source.fixAll.tslint": true,
"source.fixAll.stylelint": true
}
}
3. Setup config by enviroment
3.1. NodeJS
.eslintrc.json
Add file {
"extends": [
"@platosedu/eslint-config"
],
"env": {
"node": true
}
}
3.2. Vanilla JS
.eslintrc.json
Add file {
"extends": [
"@platosedu/eslint-config"
],
"env": {
"browser": true
}
}
3.3. React JS with create-react-app + import resolver
Install babel-plugin-module-resolver
npm:
npm install --save-dev babel-plugin-module-resolver
yarn:
yarn add dev babel-plugin-module-resolver
.eslintrc.json
Add file {
"extends": ["@platosedu/eslint-config/react"],
"env": {
"browser": true
},
"settings": {
"import/resolver": {
"babel-module": {
"root": ["./src/"]
}
}
}
}
4. Editor config
.editorconfig
Add file root = true
[*]
indent_style = spaces
indent_size = 2
end_of_line = lf
charset = utf-8
trim_trailing_whitespace = true
insert_final_newline = true
5. Typescript support
This eslint settings was setted up to support typescript by default.
5.1.
In order to support typescript on your project, you will need your own typescript config with your preferences. See below an example.
tsconfig.json
{
"compilerOptions": {
"allowJs": true,
"alwaysStrict": true,
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"isolatedModules": true,
"jsx": "preserve",
"lib": ["dom", "es2017"],
"module": "esnext",
"moduleResolution": "node",
"noEmit": true,
"noFallthroughCasesInSwitch": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"resolveJsonModule": true,
"skipLibCheck": true,
"strict": true,
"target": "esnext"
},
"exclude": ["node_modules"],
"include": ["**/*.ts", "**/*.tsx"]
}
5.2. Typescript module resolver
To support a customized base path for imports you need to add the baseUrl
option on your tsconfig.json
file. See below:
{
"compilerOptions": {
"allowJs": true,
"alwaysStrict": true,
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"isolatedModules": true,
"jsx": "preserve",
"lib": ["dom", "es2017"],
"module": "esnext",
"moduleResolution": "node",
"noEmit": true,
"noFallthroughCasesInSwitch": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"resolveJsonModule": true,
"skipLibCheck": true,
"strict": true,
"target": "esnext",
"baseUrl": "./src"
},
"exclude": ["node_modules"],
"include": ["**/*.ts", "**/*.tsx"]
}