Skip to content

Latest commit

 

History

History
13 lines (9 loc) · 263 Bytes

Eslin-unexpected-console-statement.md

File metadata and controls

13 lines (9 loc) · 263 Bytes

Eslint: How to disable "unexpected console statement" in VueJs

Update eslintConfig in package.json as below

"rules": {
      "no-console": "off"
    }

Reference

https://stackoverflow.com/a/34215651