4

これは私の .eslintrc です

{
  "plugins": ["react"],
  "parserOptions": {
    "ecmaVersion": 6,
    "sourceType": "module",
    "ecmaFeatures": {
      "jsx": true
    }
  },
  "env": {
    "es6": true,
    "browser": true,
    "node": true,
    "mocha": true
  },
  "extends": ["eslint:recommended", "plugin:react/recommended", "standard"],
  "rules": {}
}

これは私のコンポーネントです:

class Index extends React.Component {
  static async getInitialProps({ req }) {
    ....
  }
}

Eslint は getInitialProps について不平を言っています:

Parsing error: Unexpected token getInitialProps

抑制コメントを追加する以外に、eslint に getInitialProps 宣言を受け入れさせる方法はありますか?

4

1 に答える 1