feat: add unicorn plugin

This commit is contained in:
bubkoo
2021-03-21 02:45:38 +08:00
parent f7cae167ef
commit cc17b75a6e
3 changed files with 10 additions and 7 deletions

View File

@ -1,3 +0,0 @@
{
"extends": "./lib/index.js"
}

View File

@ -9,16 +9,21 @@
],
"scripts": {
"clean": "rimraf lib",
"lint": "eslint 'src/**/*.{js,ts}' --fix",
"lint": "eslint 'src/**/*.{js,ts}?(x)' --fix",
"build": "tsc --outDir ./lib",
"build:watch": "yarn build --w",
"prebuild": "run-s clean",
"preinstall": "run-s build"
"preinstall": "run-s build",
"precommit": "lint-staged"
},
"lint-staged": {
"*.ts": [
"eslint --fix"
]
},
"dependencies": {
"@typescript-eslint/eslint-plugin": "^4.17.0",
"@typescript-eslint/parser": "^4.17.0",
"eslint": "^7.22.0",
"eslint-config-airbnb-typescript": "^12.3.1",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-eslint-comments": "^3.2.0",
@ -30,10 +35,10 @@
"eslint-plugin-react": "^7.22.0",
"eslint-plugin-react-hooks": "^4.2.0",
"eslint-plugin-unicorn": "^28.0.2"
},
"devDependencies": {
"eslint": "^7.22.0",
"lint-staged": "^10.5.3",
"npm-run-all": "^4.1.5",
"rimraf": "^3.0.2",
"typescript": "^4.2.3"

View File

@ -39,6 +39,7 @@ module.exports = {
parserOptions: {
ecmaVersion: 2020,
sourceType: 'module',
project: './tsconfig.json',
ecmaFeatures: {
jsx: true,
},