Advertisement
Guest User

Untitled

a guest
Dec 9th, 2016
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.81 KB | None | 0 0
  1. {
  2. "extends": "airbnb/base",
  3. "rules": {
  4. "array-bracket-spacing": [ "warn", "always", { "singleValue": false, "objectsInArrays": false, "arraysInArrays": false } ],
  5. "camelcase": "warn",
  6. "indent": [ "warn", 4, { "SwitchCase": 1 } ],
  7. "max-len": 0,
  8. "no-dupe-keys": "error",
  9. "no-nested-ternary": "warn",
  10. "no-fallthrough": "warn",
  11. "no-multi-spaces": [ "warn", { "exceptions": { "ImportDeclaration": true, "VariableDeclarator": true } } ],
  12. "no-underscore-dangle": 0,
  13. "no-unneeded-ternary": "warn",
  14. "one-var": 0,
  15. "padded-blocks": 0,
  16. "semi": [ "warn", "never" ],
  17. "sort-imports": 0,
  18. "yoda": [ "warn", "never" ]
  19. },
  20. "parserOptions": {
  21. "sourceType": "module"
  22. },
  23. "env": {
  24. "browser": true,
  25. "node": true,
  26. "es6": true
  27. },
  28. "globals": {
  29. "BROWSER": true
  30. }
  31. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement