import sorted
Showing
This source diff could not be displayed because it is too large. You can view the blob instead.
| ... | ... | @@ -9,7 +9,8 @@ |
| "lint:fix": "eslint --fix --cache --ext .js,.jsx,.ts,.tsx --format=pretty ./ && npm run lint:style", | ||
| "lint:js": "eslint --cache --ext .js,.jsx,.ts,.tsx --format=pretty ./", | ||
| "lint:style": "stylelint --fix \"src/**/*.less\" --syntax less", | ||
| "prettier": "prettier -c --write **/*" | ||
| "prettier": "prettier -c --write **/*", | ||
| "format-imports": "import-sort --write '**/*.{js,jsx,ts,tsx}'" | ||
| }, | ||
| "husky": { | ||
| "hooks": { | ||
| ... | ... | @@ -52,7 +53,11 @@ |
| "umi-plugin-block-dev": "^2.1.11", | ||
| "umi-plugin-react": "^1.7.6", | ||
| "umi-request": "^1.0.0", | ||
| "@umijs/fabric": "^1.0.4" | ||
| "@umijs/fabric": "^1.0.4", | ||
| "import-sort-cli": "^6.0.0", | ||
| "import-sort-parser-babylon": "^6.0.0", | ||
| "import-sort-parser-typescript": "^6.0.0", | ||
| "import-sort-style-module": "^6.0.0" | ||
| }, | ||
| "peerDependencies": { | ||
| "antd": "^3.17.0" | ||
| ... | ... |
Please register or sign in to comment