Advertisement
Guest User

Untitled

a guest
Jan 21st, 2018
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
JSON 0.74 KB | None | 0 0
  1.     "eslint.options":{
  2.         "extensions": [ //List of file extensions to activate eslint
  3.             ".html",
  4.             ".js",
  5.             ".vue",
  6.             ".jsx"
  7.             ]
  8.         },
  9.         "eslint.validate": [{
  10.             "language": "html",
  11.             "autoFix": true
  12.         },
  13.         {
  14.             "language": "vue",
  15.             "autoFix": true
  16.         },
  17.         {
  18.             "language": "javascript",
  19.             "autoFix": true
  20.         },
  21.         {
  22.             "language": "javascriptreact",
  23.             "autoFix": true
  24.         }
  25.         ],
  26.     "eslint.run": "onType",
  27.     "eslint.autoFixOnSave": true,
  28.     "editor.tabSize": 2,
  29.     "explorer.confirmDelete": false,
  30.     "editor.detectIndentation": false
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement