Advertisement
Guest User

Untitled

a guest
Aug 19th, 2019
145
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
JSON 1.30 KB | None | 0 0
  1. {
  2.     "editor.tabSize": 2,
  3.     "editor.insertSpaces": true,
  4.     "editor.detectIndentation": true,
  5.     "eslint.options": {
  6.         "rules": {
  7.             "indent": "off",
  8.             "no-underscore-dangle": ["error", { "allow": ["_klarnaCheckout", "_.escape"] }],
  9.             "no-shadow": ["error", { "builtinGlobals": false, "hoist": "functions", "allow": ["state", "getters"] }],
  10.             "comma-dangle": ["error", {
  11.                 "arrays": "never",
  12.                 "objects": "never",
  13.                 "imports": "never",
  14.                 "exports": "never",
  15.                 "functions": "ignore"
  16.             }],
  17.             "no-param-reassign": ["error", { "props": true, "ignorePropertyModificationsFor": ["state"] }],
  18.             "max-len": ["error", { "code": 160 }]
  19.         }
  20.     },
  21.     "files.trimTrailingWhitespace": true,
  22.     "files.insertFinalNewline": true,
  23.     "files.trimFinalNewlines": true,
  24.     "search.exclude": {
  25.         ".git": true,
  26.         "node_modules": true,
  27.         "bower_components": true,
  28.         "assets/bundles": true,
  29.         "assets/dist": true,
  30.         "static": true
  31.     },
  32.     "files.associations": {
  33.         "*.sass": "sass"
  34.     },
  35.     "breadcrumbs.enabled": false,
  36.     "workbench.iconTheme": "vscode-great-icons",
  37.     "workbench.colorTheme": "One Dark Pro"
  38. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement