Advertisement
Guest User

Untitled

a guest
Apr 26th, 2017
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.42 KB | None | 0 0
  1. {
  2. "extends" : "airbnb",
  3. "parser" : "babel-eslint",
  4. "parserOptions" : {
  5. "ecmaVersion" : 6,
  6. "sourceType" : "module",
  7. "ecmaFeatures" : {
  8. "jsx": true,
  9. "modules": true,
  10. }
  11. },
  12. "env": {
  13. "browser" : true,
  14. "node" : true,
  15. "jquery" : true,
  16. },
  17. "settings":{
  18. "react":{
  19. "pragma":"React",
  20. "version":"15.1.0"
  21. },
  22. "ecmascript":6,
  23. "jsx":true
  24. },
  25. "plugins": [
  26. "react",
  27. "react-native"
  28. ],
  29. "rules": {
  30. "strict": 0,
  31. "quotes": 0,
  32. "no-unused-vars": 1,
  33. "camelcase": 1,
  34. "no-underscore-dangle": 1,
  35. "comma-dangle":[1,"never"],
  36. "indent":["error",4],
  37. "react/jsx-indent":0,
  38. "react/jsx-equals-spacing": [2, "always"],
  39. "no-console":0,
  40. "max-len":1,
  41. "no-param-reassign":1,
  42. "key-spacing": [
  43. 2,
  44. {
  45. "align": "colon",
  46. "beforeColon": true,
  47. "afterColon": true
  48. }
  49. ],
  50. "no-multi-spaces": [
  51. 2,
  52. {
  53. "exceptions":{
  54. "VariableDeclarator":true,
  55. "ImportDeclaration":true,
  56. "JSXAttribute":true,
  57. "AssignmentExpression":true
  58. }
  59. }
  60. ]
  61. }
  62. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement