mirror of
https://github.com/reduxjs/redux-devtools.git
synced 2025-07-27 00:19:55 +03:00
Fix
This commit is contained in:
parent
3022c55330
commit
6c7da5775f
|
@ -19,7 +19,8 @@
|
||||||
"max-len": ["warn", { "code": 120 , "ignoreComments": true }],
|
"max-len": ["warn", { "code": 120 , "ignoreComments": true }],
|
||||||
"quotes": ["warn", "single", "avoid-escape"],
|
"quotes": ["warn", "single", "avoid-escape"],
|
||||||
"jsx-quotes": ["warn", "prefer-double"],
|
"jsx-quotes": ["warn", "prefer-double"],
|
||||||
"react/prop-types": 0
|
"react/prop-types": 0,
|
||||||
|
"prettier/prettier": "error"
|
||||||
},
|
},
|
||||||
"plugins": [
|
"plugins": [
|
||||||
"prettier",
|
"prettier",
|
||||||
|
|
10
package.json
10
package.json
|
@ -19,10 +19,10 @@
|
||||||
"publish": "lerna publish",
|
"publish": "lerna publish",
|
||||||
"canary": "lerna publish --canary preminor --npm-tag alpha",
|
"canary": "lerna publish --canary preminor --npm-tag alpha",
|
||||||
"next": "lerna publish --bump prerelease --npm-tag next",
|
"next": "lerna publish --bump prerelease --npm-tag next",
|
||||||
"lint": "eslint '**/*.{js,jsx}' --cache",
|
"lint": "eslint \"**/*.{js,jsx}\" --cache",
|
||||||
"lint:fix": "eslint '**/*.{js,jsx}' --fix --cache",
|
"lint:fix": "eslint \"**/*.{js,jsx}\" --fix --cache",
|
||||||
"lint:all": "eslint '**/*.{js,jsx}'",
|
"lint:all": "eslint \"**/*.{js,jsx}\"",
|
||||||
"prettify": "prettier '**/*.{js,jsx,json,css,html,md}' --ignore-path .eslintignore --single-quote --write",
|
"prettify": "prettier \"**/*.{js,jsx,json,css,html,md}\" --ignore-path .eslintignore --single-quote --write",
|
||||||
"precommit": "lint-staged",
|
"precommit": "lint-staged",
|
||||||
"test": "jest --onlyChanged",
|
"test": "jest --onlyChanged",
|
||||||
"test:all": "jest"
|
"test:all": "jest"
|
||||||
|
@ -36,7 +36,7 @@
|
||||||
"packages/redux-slider-monitor/examples/todomvc"
|
"packages/redux-slider-monitor/examples/todomvc"
|
||||||
],
|
],
|
||||||
"engines": {
|
"engines": {
|
||||||
"node": ">=8.0.0"
|
"node": ">=10.0.0"
|
||||||
},
|
},
|
||||||
"lint-staged": {
|
"lint-staged": {
|
||||||
"*.{js,jsx}": [
|
"*.{js,jsx}": [
|
||||||
|
|
Loading…
Reference in New Issue
Block a user