MandyJin/MandyJin.github.io

ESlint--各种不和谐记录

Opened this issue · 1 comments

为了漂亮的代码!!!

01、ESlint "window" is not defined, "document" is not defined

第一种:添加到 .eslintrc.js

module.exports = {
  "globals": {
    "window": true,
    "document": true,
  },
  ...
}

第二种:或者添加到 .eslintrc.js

module.exports = {
  "env": {
    "browser": true,
    "node": true,
  },
  ...
}

第三种:或者添加到 package.json:

"eslintConfig": {
  "globals": {
    "window": true
  }
}