当我直接运行yarn lint
或eslint
时,根本没有检查我的.ts
或.tsx
文件。
尝试摆弄各种配置选项。我已经安装了适当的插件和解析器。
{
"extends": ["airbnb", "eslint", "eslint:recommended", "plugin:react/recommended", "plugin:import/typescript"],
"parser": "@typescript-eslint/parser",
"env": {
"browser": true
},
"plugins": ["react", "jsx-a11y", "import", "@typescript-eslint"],
"parserOptions": {
"ecmaVersion": 7,
"sourceType": "module",
"ecmaFeatures": {
"jsx": true
}
},
"rules": {
"max-len": [
"error",
120,
2,
{
"ignoreUrls": true,
"ignoreStrings": true,
"ignoreComments": true,
"ignoreTrailingComments": true,
"ignoreRegExpLiterals": true
}
],
"import/extensions": ["error", "never", { "packages": "always" }],
"react/jsx-filename-extension": ["warn", { "extensions": [".js", ".jsx"] }],
},
"settings": {
"import/resolver": {
"babel-module": {},
"node": {
"extensions": [".js", ".jsx", ".json", ".ts", ".tsx"]
}
},
"import/parsers": {
"@typescript-eslint/parser": [".ts", ".tsx"]
}
}
}
如果我将--ext "ts,tsx"
传递给eslint,则我得到的错误将完全消失(它似乎像JS文件一样对待这些文件)。
我有VSCode,而VSCode似乎正确地整理了我的所有文件(js作为JS,ts和tsx作为Typescript)。
答案 0 :(得分:0)
尝试运行yarn run eslint src/**/*.{js,ts,tsx}
,其中src
是您要整理的目录