javascript - eslint 提示解决路径

标签 javascript babeljs eslint

我不断收到 eslint 错误 import/no-unresolved并且不确定我如何解决它。我知道这与 babel 有关,但我不确定如何让 babel 和 eslint 玩得好。
我的 babel.config.js 文件:

module.exports = {
  presets: [['@babel/preset-env', { targets: { node: 'current' } }], '@babel/preset-react'],
  plugins: [
    'babel-plugin-macros',
    '@babel/plugin-syntax-dynamic-import',
    '@babel/plugin-transform-destructuring',
    [
      '@babel/plugin-proposal-class-properties',
      {
        loose: true,
      },
    ],
    [
      '@babel/plugin-proposal-object-rest-spread',
      {
        useBuiltIns: true,
      },
    ],
    [
      '@babel/plugin-transform-runtime',
      {
        helpers: false,
        regenerator: true,
      },
    ],
    [
      '@babel/plugin-transform-regenerator',
      {
        async: false,
      },
    ],
  ],
};
… 和我的 .eslintrc.js 文件
module.exports = {
  parser: 'babel-eslint',
  extends: 'airbnb',
  env: {
    browser: true,
    node: true,
    jest: true,
    es6: true,
  },
  plugins: ['react', 'jsx-a11y'],
  parserOptions: {
    ecmaVersion: 6,
    sourceType: 'module',
    ecmaFeatures: {
      jsx: true,
    },
  },
  rules: {
    'object-curly-spacing': 2,
    'arrow-parens': ['error', 'as-needed'],
    'arrow-body-style': [2, 'as-needed'],
    'comma-dangle': [2, 'always-multiline'],
    'import/imports-first': 0,
    'import/newline-after-import': 0,
    'import/no-dynamic-require': 0,
    'import/no-extraneous-dependencies': 0,
    'import/no-named-as-default': 0,
    'import/no-unresolved': 2,
    'import/prefer-default-export': 0,
    indent: [
      2,
      2,
      {
        SwitchCase: 1,
      },
    ],
    'space-before-function-paren': 0,
    'jsx-a11y/aria-props': 2,
    'jsx-a11y/heading-has-content': 0,
    'jsx-a11y/label-has-associated-control': 2,
    'jsx-a11y/mouse-events-have-key-events': 2,
    'jsx-a11y/no-autofocus': 0,
    'jsx-a11y/role-has-required-aria-props': 2,
    'jsx-a11y/role-supports-aria-props': 2,
    'max-len': 0,
    'newline-per-chained-call': 0,
    'no-confusing-arrow': 0,
    'no-console': 1,
    'no-use-before-define': 0,
    'prefer-template': 2,
    'class-methods-use-this': 0,
    'react/forbid-prop-types': 0,
    'react/jsx-first-prop-new-line': [2, 'multiline'],
    'react/jsx-filename-extension': 0,
    'react/prefer-stateless-function': 0,
    'react/jsx-no-target-blank': 0,
    'react/require-extension': 0,
    'react/prop-types': 0,
    'react/self-closing-comp': 0,
    'require-yield': 0,
    'import/no-webpack-loader-syntax': 0,
    semi: ['error', 'always'],
  },
  settings: {
    'import/resolver': {
      webpack: {
        config: 'config/webpack/development.js',
      },
    },
  },
};
每种类型的导入都会出现此问题:
screenshot of eslint errors
有什么建议么?
编辑
我已经使用我在这个项目中使用的相同 eslint 设置创建了一个存储库。它显示了与我看到的相同的错误。
https://github.com/brandondurham/eslint-test

最佳答案

你必须至少更新你的 eslint 配置,说你想要 ES2018(或更新的)支持,因为你正在使用模块导入验证现代 JS:

module.exports = {
  ...
  parserOptions: {
    ecmaVersion: 2018,
    sourceType: 'module',
    ecmaFeatures: {
      jsx: true,
    },
  },
  ...
};
因为来自 https://eslint.org/docs/user-guide/configuring#specifying-parser-options我们知道 ecmaVersion: 6对应于要求 ESLint 将您的代码验证为 ES2015,它早于 ES 模块,因此将正确标记任何 import ... from "..."声明为错误。
我用大大减少的 ESlint 配置尝试了你的 github 存储库:
module.exports = {
  parser: 'babel-eslint',
  extends: 'airbnb',
  env: {
    browser: true,
    node: true,
    jest: true,
    es6: true
  },
  plugins: ['react'],
  parserOptions: {
    ecmaVersion: 2018,
    sourceType: 'module',
    ecmaFeatures: {
      jsx: true,
    },
  },
  rules: {
    'no-unused-vars': 0
  }
};
这很好用,所以:开始备份它直到它崩溃,这样你就可以更好地了解真正需要解决的问题。

关于javascript - eslint 提示解决路径,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/64145585/

相关文章:

javascript - 无法隐藏元素

javascript - 如何使用 Intern 在功能测试期间报告 JavaScript 错误?

javascript - Webpack 4 + Babel 7 转换运行时 - 无效的配置对象

reactjs - 如何修复自定义 Hook 中的 "useEffect has a missing dependency"

javascript - 用于首选 React 类组件语法的 eslint 规则

javascript - 将 ESlint 与expressjs 结合使用

javascript - 在 IDEA 中禁用 JavaScript 的类似 LiveEdit 的功能

javascript - 在其外部点击时模糊 TextInput

reactjs - React JS 在某些浏览器中不起作用

javascript - 在带有 Babel 的 Node 脚本中使用 ES6 语法