Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我是新手,create react app typescript version我想问如何禁用订购导入:((
create react app typescript version
我一直在尝试在两者中设置错误的不同tsconfig.json属性tslint.json
tsconfig.json
tslint.json
我会很感激你的帮助。
您必须按如下方式编辑tslint.json和禁用规则:ordered-imports
ordered-imports
{ "extends": ["tslint:recommended", "tslint-react", "tslint-config-prettier"], "rules": { "ordered-imports": false }, "linterOptions": { "exclude": [ "config/**/*.js", "node_modules/**/*.ts" ] } }