fix ts file error for eslint (#4336)
* fix ts file error for eslint * add format-imports script * sort all code * remove lint:ts * remove tslint * remove lint:ts * up layout * remove a empty test * rm tslint config * use umi config * prettier all code * use @umijs/fabric * [CodeFactor] Apply fixes to commit 69d4f9a [ci skip] [skip ci]
Showing
.prettierrc
deleted
100644 → 0
.prettierrc.js
0 → 100644
.stylelintrc.js
0 → 100644
.stylelintrc.json
deleted
100644 → 0
... | @@ -14,25 +14,23 @@ | ... | @@ -14,25 +14,23 @@ |
"docker:push": "npm run docker-hub:build && npm run docker:tag && docker push antdesign/ant-design-pro", | "docker:push": "npm run docker-hub:build && npm run docker:tag && docker push antdesign/ant-design-pro", | ||
"docker:tag": "docker tag ant-design-pro antdesign/ant-design-pro", | "docker:tag": "docker tag ant-design-pro antdesign/ant-design-pro", | ||
"fetch:blocks": "node ./scripts/fetch-blocks.js", | "fetch:blocks": "node ./scripts/fetch-blocks.js", | ||
"format-imports": "import-sort --write '**/*.{js,jsx,ts,tsx}'", | |||
"functions:build": "netlify-lambda build ./lambda", | "functions:build": "netlify-lambda build ./lambda", | ||
"functions:run": "cross-env NODE_ENV=dev netlify-lambda serve ./lambda", | "functions:run": "cross-env NODE_ENV=dev netlify-lambda serve ./lambda", | ||
"lint": "npm run lint:js && npm run lint:ts && npm run lint:style && npm run lint:prettier", | "lint": "npm run lint:js && npm run lint:style && npm run lint:prettier", | ||
"lint-staged": "lint-staged", | "lint-staged": "lint-staged", | ||
"lint-staged:js": "eslint --ext .js", | "lint-staged:js": "eslint --ext .js,.jsx,.ts,.tsx ", | ||
"lint-staged:ts": "tslint", | "lint:fix": "eslint --fix --cache --ext .js,.jsx,.ts,.tsx --format=pretty ./src && npm run lint:style", | ||
"lint:fix": "eslint --fix --ext .js src tests && npm run lint:style && npm run tslint:fix", | "lint:js": "eslint --cache --ext .js,.jsx,.ts,.tsx --format=pretty ./src", | ||
"lint:js": "eslint --ext .js src tests", | |||
"lint:prettier": "check-prettier lint", | "lint:prettier": "check-prettier lint", | ||
"lint:style": "stylelint --fix \"src/**/*.less\" --syntax less", | "lint:style": "stylelint --fix \"src/**/*.less\" --syntax less", | ||
"lint:ts": "tslint -p . -c tslint.yml", | "prettier": "prettier -c --write **/*", | ||
"prettier": "prettier -c --write '**/*'", | |||
"site": "npm run fetch:blocks && npm run functions:build && umi build", | "site": "npm run fetch:blocks && npm run functions:build && umi build", | ||
"start": "umi dev", | "start": "umi dev", | ||
"start:no-mock": "cross-env MOCK=none umi dev", | "start:no-mock": "cross-env MOCK=none umi dev", | ||
"test": "umi test", | "test": "umi test", | ||
"test:all": "node ./tests/run-tests.js", | "test:all": "node ./tests/run-tests.js", | ||
"test:component": "umi test ./src/components", | "test:component": "umi test ./src/components" | ||
"tslint:fix": "tslint --fix \"src/**/*.ts*\"" | |||
}, | }, | ||
"husky": { | "husky": { | ||
"hooks": { | "hooks": { | ||
... | @@ -41,12 +39,12 @@ | ... | @@ -41,12 +39,12 @@ |
}, | }, | ||
"lint-staged": { | "lint-staged": { | ||
"**/*.less": "stylelint --syntax less", | "**/*.less": "stylelint --syntax less", | ||
"**/*.{js,jsx}": "npm run lint-staged:js", | |||
"**/*.{js,jsx,tsx,ts,less,md,json}": [ | "**/*.{js,jsx,tsx,ts,less,md,json}": [ | ||
"prettier --write", | "prettier --write", | ||
"git add" | "git add" | ||
], | ], | ||
"**/*.{ts,tsx}": "npm run lint-staged:ts" | "**/*.{js,jsx}": "npm run lint-staged:js", | ||
"**/*.{js,ts,tsx}": "npm run lint-staged:js" | |||
}, | }, | ||
"browserslist": [ | "browserslist": [ | ||
"> 1%", | "> 1%", | ||
... | @@ -54,7 +52,7 @@ | ... | @@ -54,7 +52,7 @@ |
"not ie <= 10" | "not ie <= 10" | ||
], | ], | ||
"dependencies": { | "dependencies": { | ||
"@ant-design/pro-layout": "^4.4.2", | "@ant-design/pro-layout": "^4.5.0", | ||
"@antv/data-set": "^0.10.2", | "@antv/data-set": "^0.10.2", | ||
"antd": "^3.19.1", | "antd": "^3.19.1", | ||
"classnames": "^2.2.6", | "classnames": "^2.2.6", | ||
... | @@ -75,6 +73,7 @@ | ... | @@ -75,6 +73,7 @@ |
"react-dom": "^16.8.6", | "react-dom": "^16.8.6", | ||
"react-media": "^1.9.2", | "react-media": "^1.9.2", | ||
"react-media-hook2": "^1.0.5", | "react-media-hook2": "^1.0.5", | ||
"redux": "^4.0.1", | |||
"umi": "^2.7.2", | "umi": "^2.7.2", | ||
"umi-plugin-ga": "^1.1.3", | "umi-plugin-ga": "^1.1.3", | ||
"umi-plugin-pro-block": "^1.3.2", | "umi-plugin-pro-block": "^1.3.2", | ||
... | @@ -82,6 +81,7 @@ | ... | @@ -82,6 +81,7 @@ |
"umi-request": "^1.0.7" | "umi-request": "^1.0.7" | ||
}, | }, | ||
"devDependencies": { | "devDependencies": { | ||
"@ant-design/colors": "^3.1.0", | |||
"@types/classnames": "^2.2.7", | "@types/classnames": "^2.2.7", | ||
"@types/history": "^4.7.2", | "@types/history": "^4.7.2", | ||
"@types/jest": "^24.0.13", | "@types/jest": "^24.0.13", | ||
... | @@ -90,8 +90,7 @@ | ... | @@ -90,8 +90,7 @@ |
"@types/react": "^16.8.19", | "@types/react": "^16.8.19", | ||
"@types/react-document-title": "^2.0.3", | "@types/react-document-title": "^2.0.3", | ||
"@types/react-dom": "^16.8.4", | "@types/react-dom": "^16.8.4", | ||
"antd-pro-merge-less": "^1.0.0", | "@umijs/fabric": "^1.0.4", | ||
"@ant-design/colors": "^3.1.0", | |||
"babel-eslint": "^10.0.1", | "babel-eslint": "^10.0.1", | ||
"chalk": "^2.4.2", | "chalk": "^2.4.2", | ||
"check-prettier": "^1.0.3", | "check-prettier": "^1.0.3", | ||
... | @@ -99,20 +98,15 @@ | ... | @@ -99,20 +98,15 @@ |
"cross-port-killer": "^1.1.1", | "cross-port-killer": "^1.1.1", | ||
"enzyme": "^3.9.0", | "enzyme": "^3.9.0", | ||
"eslint": "^5.16.0", | "eslint": "^5.16.0", | ||
"eslint-config-airbnb": "^17.1.0", | |||
"eslint-config-prettier": "^4.3.0", | |||
"eslint-plugin-babel": "^5.3.0", | |||
"eslint-plugin-compat": "^3.1.1", | |||
"eslint-plugin-import": "^2.17.3", | |||
"eslint-plugin-jsx-a11y": "^6.2.1", | |||
"eslint-plugin-markdown": "^1.0.0", | |||
"eslint-plugin-react": "^7.13.0", | |||
"express": "^4.17.1", | "express": "^4.17.1", | ||
"gh-pages": "^2.0.1", | "gh-pages": "^2.0.1", | ||
"husky": "^2.3.0", | "husky": "^2.3.0", | ||
"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", | |||
"jest-puppeteer": "^4.2.0", | "jest-puppeteer": "^4.2.0", | ||
"jsdom-global": "^3.0.2", | "jsdom-global": "^3.0.2", | ||
"less": "^3.9.0", | |||
"lint-staged": "^8.1.7", | "lint-staged": "^8.1.7", | ||
"mockjs": "^1.0.1-beta3", | "mockjs": "^1.0.1-beta3", | ||
"netlify-lambda": "^1.4.13", | "netlify-lambda": "^1.4.13", | ||
... | @@ -120,17 +114,6 @@ | ... | @@ -120,17 +114,6 @@ |
"prettier": "^1.17.1", | "prettier": "^1.17.1", | ||
"serverless-http": "^2.0.2", | "serverless-http": "^2.0.2", | ||
"slash2": "^2.0.0", | "slash2": "^2.0.0", | ||
"stylelint": "^10.0.1", | |||
"stylelint-config-css-modules": "^1.4.0", | |||
"stylelint-config-prettier": "^5.2.0", | |||
"stylelint-config-rational-order": "^0.1.2", | |||
"stylelint-config-standard": "^18.3.0", | |||
"stylelint-declaration-block-no-ignored-properties": "^2.1.0", | |||
"stylelint-order": "^3.0.0", | |||
"tslint": "^5.17.0", | |||
"tslint-config-prettier": "^1.18.0", | |||
"tslint-eslint-rules": "^5.4.0", | |||
"tslint-react": "^4.0.0", | |||
"webpack-theme-color-replacer": "^1.1.5" | "webpack-theme-color-replacer": "^1.1.5" | ||
}, | }, | ||
"optionalDependencies": { | "optionalDependencies": { | ||
... | @@ -174,4 +157,4 @@ | ... | @@ -174,4 +157,4 @@ |
"create-umi" | "create-umi" | ||
] | ] | ||
} | } | ||
} | } | ||
\ No newline at end of file |
src/components/NoticeIcon/NoticeList.less
100644 → 100755
src/layouts/UserLayout.less
100644 → 100755
tslint.yml
deleted
100644 → 0
Please register or sign in to comment