Browse Source

Use local tslint config; simplify editor configuration (#10450)

pull/10456/head
Jinxuan Zhu 7 years ago
committed by 偏右
parent
commit
832c524b32
  1. 2
      package.json
  2. 5
      tslint.json

2
package.json

@ -193,7 +193,7 @@
"pre-publish": "npm run test-all && node ./scripts/prepub", "pre-publish": "npm run test-all && node ./scripts/prepub",
"authors": "git log --format='%aN <%aE>' | sort -u | grep -v 'users.noreply.github.com' | grep -v 'gitter.im' | grep -v '.local>' | grep -v 'alibaba-inc.com' | grep -v 'alipay.com' | grep -v 'taobao.com' > AUTHORS.txt", "authors": "git log --format='%aN <%aE>' | sort -u | grep -v 'users.noreply.github.com' | grep -v 'gitter.im' | grep -v '.local>' | grep -v 'alibaba-inc.com' | grep -v 'alipay.com' | grep -v 'taobao.com' > AUTHORS.txt",
"lint-staged": "lint-staged", "lint-staged": "lint-staged",
"lint-staged:ts": "tsc && node node_modules/tslint/bin/tslint -c node_modules/antd-tools/lib/tslint.json", "lint-staged:ts": "tsc && tslint",
"lint-staged:es": "eslint ./.eslintrc.js ./webpack.config.js", "lint-staged:es": "eslint ./.eslintrc.js ./webpack.config.js",
"lint-staged:demo": "cross-env RUN_ENV=DEMO eslint --ext '.md'" "lint-staged:demo": "cross-env RUN_ENV=DEMO eslint --ext '.md'"
}, },

5
tslint.json

@ -0,0 +1,5 @@
{
"extends": [
"./node_modules/antd-tools/lib/tslint.json"
]
}
Loading…
Cancel
Save