Ошибка линтера в компоненте запроса Apollo React - PullRequest
0 голосов
/ 20 апреля 2019

эта ошибка линтера внезапно появляется из ниоткуда в моем последнем VS Code, ошибка приходит и уходит (ошибка?), Код работает на 100% нормально, я просто не могу понять, что не так, пытался искать весь день безлюбая удача.

enter image description here

<code> return (
      <MasterLayout title="Transaction sell">
        <Box>
          <ActionBar rightWing={actionsRight} leftWing={actionsLeft} />
          <Query
            query={TRANSACTIONS_SELL}
            fetchPolicy="network-only"
            variables={{ page, count: 10, keyword: keywordSubmit }}
          >
            {({ error, loading, data }) => {
              if (loading) {
                return <Loader />;
              }
              if (error) {
                return <pre>{JSON.stringify(error.message, null, 4)}
;} return (

Некоторые данные

}}

my .eslintrc.json:

{
  "extends": ["airbnb", "prettier", "prettier/react"],
  "plugins": ["prettier"],
  "settings": {
    "import/resolver": {
      "node": {
        "paths": ["src"]
      }
    }
  },
  "rules": {
    "react/jsx-filename-extension": [
      1,
      {
        "extensions": [".js", ".jsx"]
      }
    ],
    "react/prop-types": 0,
    "no-underscore-dangle": 0,
    "import/imports-first": ["error", "absolute-first"],
    "import/newline-after-import": "error",
    "jsx-a11y/anchor-is-valid": "off",
    "jsx-a11y/label-has-for": "off",
    "jsx-a11y/label-has-associated-control": "off",
    "import/prefer-default-export": "off",
    "import/no-extraneous-dependencies": "off",
    "react/no-array-index-key": "off",
    "camelcase": "off",
    "jsx-a11y/click-events-have-key-events": "off",
    "jsx-a11y/no-static-element-interactions": "off"
  },
  "globals": {
    "window": true,
    "document": true,
    "localStorage": true,
    "FormData": true,
    "FileReader": true,
    "Blob": true,
    "navigator": true
  },
  "parser": "babel-eslint"
}

Любые идеи или предложения

...