eslint-config-pureprofile
v4.1.1
Published
An eslint config module
Downloads
140
Readme
eslint-config-pureprofile
what is this?
this is compose config file for (usage of react plugins is autodetected based if a project has react installed in dependencies):
"parser": "@typescript-eslint/parser",
"parserOptions": {
"project": "./tsconfig.json"
},
"plugins": ["@typescript-eslint"],
"extends": [
"eslint:recommended",
"plugin:@typescript-eslint/recommended",
"plugin:@typescript-eslint/recommended-requiring-type-checking",
"plugin:jest/recommended",
"airbnb",
"airbnb/hooks",
"airbnb-typescript",
"react-app",
"react-app/jest",
"prettier"
],
some rules were disabled because they did conflict with the way we write code, but not too many, please see index.js for details
how do i use this?
these will get you started:
npm uninstall --save is-ci husky lint-staged prettier pretty-quick eslint-config-pureprofile
npm install --save is-ci eslint-config-pureprofile
npm install --save-dev husky lint-staged prettier
npx json -I -f package.json -e "this.scripts.prepare=\"is-ci || husky install\""
npx json -I -f package.json -e "this.scripts.eslint=\"eslint --ext=ts,tsx --fix ./src\""
npx json -I -f package.json -e "this.scripts.prettier=\"prettier --write ./src/**/*.{js,jsx,ts,tsx,json,css,scss,md}\""
npx json -I -f package.json -e "this.eslintConfig={\"extends\":\"pureprofile\",\"parserOptions\":{\"project\":\"./tsconfig.json\"}}"
npx json -I -f package.json -e "this.prettier=\"eslint-config-pureprofile/prettier-config\""
npx json -I -f package.json -e "this[\"lint-staged\"]={\"*.{ts,tsx}\":[\"eslint --fix\",\"prettier --write\"],\"*.{js,jsx,json,css,scss}\":[\"prettier --write\"]}"
npx json -I -f package.json -e "delete this.husky"
mkdir -p .husky
echo "_" > .husky/.gitignore
npx husky add ".husky/pre-commit"
sed -i 's/undefined/npx lint-staged/g' .husky/pre-commit
npx husky add ".husky/pre-push"
sed -i 's/undefined/npm run build/g' .husky/pre-push
npm run prepare
old approach (husky v4)
npm install --save eslint-config-pureprofile
npm install --save-dev husky@4 lint-staged prettier
and add these bits into your package.json:
"scripts": {
"eslint": "eslint --ext=ts,tsx ./src",
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"pre-push": "npm run build && npm run eslint"
}
},
"lint-staged": {
"*.{ts,tsx}": [
"eslint --ext=ts,tsx --fix",
"prettier --write",
"git add"
],
"*.{js,jsx,json,css,scss}": [
"prettier --write",
"git add"
]
},
"eslintConfig": {
"extends": "pureprofile",
"parserOptions": { "project": "./tsconfig.json" }
},
"prettier": "eslint-config-pureprofile/prettier-config",