gpt4 book ai didi

tslint - 如何禁用命名导入必须按字母顺序排列 - tslint

转载 作者:行者123 更新时间:2023-12-04 01:53:32 25 4
gpt4 key购买 nike

如何禁用命名导入必须按字母顺序排列 - tslint ?

我收到错误:

命名的导入必须按字母顺序排列。

我不知道如何禁用此错误。

我的 tsconfig.json 配置是:

{
"compilerOptions": {
"baseUrl": ".",
"outDir": "build/dist",
"module": "esnext",
"target": "es5",
"lib": [
"es6",
"dom"
],
"sourceMap": true,
"allowJs": true,
"jsx": "react",
"moduleResolution": "node",
"rootDir": "src",
"forceConsistentCasingInFileNames": true,
"noImplicitReturns": true,
"noImplicitThis": true,
"noImplicitAny": false,
"strictNullChecks": false,
"suppressImplicitAnyIndexErrors": true,
"noUnusedLocals": true
},
"exclude": [
"node_modules",
"build",
"scripts",
"acceptance-tests",
"webpack",
"jest",
"src/setupTests.ts"
]
}

最佳答案

开通 tslint.json并添加 ordered-importsrules如果正在运行,则重新启动服务器(npm)。

"rules": {
"ordered-imports": false
}

关于tslint - 如何禁用命名导入必须按字母顺序排列 - tslint,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51103845/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com