Guest User

Untitled

a guest
Oct 17th, 2017
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.18 KB | None | 0 0
  1. "eslintConfig": {
  2. "parser": "babel-eslint",
  3. "extends": [
  4. "standard",
  5. "standard-react"
  6. ],
  7. "plugins": [
  8. "import"
  9. ],
  10. "env": {
  11. "browser": true,
  12. "es6": true
  13. },
  14. "globals": {
  15. "__DEV__": false,
  16. "__PROD__": false,
  17. "__PLAYER_DEBUG__": false,
  18. "__BASENAME__": false
  19. },
  20. "settings": {
  21. "ecmascript": 6,
  22. "import/resolver": "webpack"
  23. },
  24. "rules": {
  25. "semi": 0,
  26. "spaced-comment": 0,
  27. "brace-style": 0,
  28. "no-trailing-spaces": 0,
  29. "import/default": 2,
  30. "import/no-unresolved": [
  31. 2,
  32. {
  33. "commonjs": true,
  34. "amd": true
  35. }
  36. ],
  37. "import/named": 2,
  38. "import/namespace": 2,
  39. "import/export": 2,
  40. "import/no-duplicates": 2,
  41. "import/imports-first": 2
  42. },
  43. "parserOptions": {
  44. "sourceType": "module",
  45. "ecmaFeatures": {
  46. "jsx": true,
  47. "experimentalObjectRestSpread": true,
  48. "modules": true,
  49. "arrowFunctions": true,
  50. "blockBindings": true,
  51. "destructuring": true,
  52. "spread": true,
  53. "templateStrings": true,
  54. "forOf": true
  55. }
  56. }
  57. }
Add Comment
Please, Sign In to add comment