eslint-config-badboyku
v1.0.36
Published
Shared eslint+prettier configuration with react/jest/typescript support.
Downloads
30
Readme
eslint-config-badboyku
Shared eslint+prettier configuration with react/jest/typescript support.
Setup
Install the package:
npm install --save-dev eslint-config-badboyku
oryarn add --dev eslint-config-badboyku
Create a file named
.eslintrc.js
at the root and add the following:module.exports = { extends: ['badboyku'], rules: {}, };
Add the following to your package.json scripts:
"scripts": { "lint": "eslint \"./src/**/*.{js,jsx,ts,tsx}\"", "lint:fix": "eslint \"./src/**/*.{js,jsx,ts,tsx}\" --fix", "prettier": "prettier --check \"./src/**/*.{css,scss,json}\"", "prettier:fix": "prettier --write \"./src/**/*.{css,scss,json}\"" },
Configure Rules (optional)
If you would like to configure a rule, then you can add to the rules
object inside the .eslintrc.js
file (from setup step 2).
Example:
rules: {
'no-console': 'error',
},
See https://eslint.org/docs/user-guide/configuring/rules