简体   繁体   中英

How can I configure eslint in Yeoman webapp?

I don't find the right .eslintrc to edit in my Yeoman webapp folder. I would like to use double quote instead single quote. I also try do add a .eslintrc in my home folder without success. Thank you.

Ok I finally found. You must edit the eslintConfig section of package.json in the root directory of your Yeoman webapp. Thank you me.

Fragment of package.json :

 "eslintConfig": {
    "env": {
      "es6": true,
      "node": true,
      "browser": true
    },
    "rules": {
      "quotes": [
        2,
        "single"
      ]
    }
  }

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM