ignore eslint error: 'import' and 'export' may only appear at the top level

前端 未结 3 969
-上瘾入骨i
-上瘾入骨i 2020-12-01 15:50

Is it possible to deactivate this error in eslint?

Parsing error: \'import\' and \'export\' may only appear at the top level
3条回答
  •  有刺的猬
    2020-12-01 16:36

    ESLint natively doesnt support this because this is against the spec. But if you use babel-eslint parser then inside your eslint config file you can do this:

    {
      "parser": "babel-eslint",
      "parserOptions": {
        "sourceType": "module",
        "allowImportExportEverywhere": true
      }
    }
    

    Doc ref: https://github.com/babel/babel-eslint#configuration

提交回复
热议问题