ESLint 未检测到导入的 React 组件
ESLint not detecting imported React Components
我遇到了一个问题,ESLint 没有使用 'no-unused-vars' 规则检测导入的 React 组件。我的组件是进口的:
import MediaQuery from 'react-responsive';
并且该组件在文件中进一步使用:
render() {
return (
<MediaQuery maxDeviceWidth={750}>
<div style={styles.iconMobileContainerRight} >
<i className="fa fa-chevron-right" style={styles.checkboxMobile} aria-hidden="true" ></i>
</div>
</MediaQuery>
);
}
我的.eslintrc.js文件如下:
module.exports = {
"env": {
"browser": true,
"commonjs": true,
"es6": true,
"node": true
},
"extends": "eslint:recommended",
"parserOptions": {
"ecmaFeatures": {
"experimentalObjectRestSpread": true,
"jsx": true
},
"sourceType": "module"
},
"plugins": [
"react"
],
"rules": {
"indent": [
"error",
2
],
"linebreak-style": [
"error",
"unix"
],
"quotes": [
"error",
"single"
],
"semi": [
"error",
"always"
]
}
};
我正在使用安装了 linter 和 linter-eslint 软件包的 atom 文本编辑器(两者都是最新版本)。我缺少什么让 linter 检测导入组件的使用?
ESLint 默认不检测 JSX 中使用的变量。要将它们标记为已使用,您应该使用 jsx-uses-vars rule of the eslint-plugin-react 插件。
我遇到了一个问题,ESLint 没有使用 'no-unused-vars' 规则检测导入的 React 组件。我的组件是进口的:
import MediaQuery from 'react-responsive';
并且该组件在文件中进一步使用:
render() {
return (
<MediaQuery maxDeviceWidth={750}>
<div style={styles.iconMobileContainerRight} >
<i className="fa fa-chevron-right" style={styles.checkboxMobile} aria-hidden="true" ></i>
</div>
</MediaQuery>
);
}
我的.eslintrc.js文件如下:
module.exports = {
"env": {
"browser": true,
"commonjs": true,
"es6": true,
"node": true
},
"extends": "eslint:recommended",
"parserOptions": {
"ecmaFeatures": {
"experimentalObjectRestSpread": true,
"jsx": true
},
"sourceType": "module"
},
"plugins": [
"react"
],
"rules": {
"indent": [
"error",
2
],
"linebreak-style": [
"error",
"unix"
],
"quotes": [
"error",
"single"
],
"semi": [
"error",
"always"
]
}
};
我正在使用安装了 linter 和 linter-eslint 软件包的 atom 文本编辑器(两者都是最新版本)。我缺少什么让 linter 检测导入组件的使用?
ESLint 默认不检测 JSX 中使用的变量。要将它们标记为已使用,您应该使用 jsx-uses-vars rule of the eslint-plugin-react 插件。