Advertisement
Guest User

Untitled

a guest
Aug 21st, 2019
120
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.68 KB | None | 0 0
  1. {
  2. "extends": "airbnb",
  3. "ecmaFeatures": {
  4. "jsx": true
  5. },
  6. "rules": {
  7. "arrow-body-style": 0,
  8. "arrow-parens": [2, "as-needed", {"requireForBlockBody": true}],
  9. "react/jsx-first-prop-new-line": 0,
  10. "jsx-quotes": [2, "prefer-single"],
  11. "react/prefer-stateless-function": [0],
  12. "react/no-array-index-key": 0,
  13. "react/jsx-no-target-blank": 0,
  14. "camelcase": 0,
  15. "global-require": 0,
  16. "no-unused-vars" : ["warn", {"varsIgnorePattern": "Polyfill$"}],
  17. "comma-dangle": ["warn", {
  18. "arrays": "always-multiline",
  19. "objects": "only-multiline",
  20. "imports": "ignore",
  21. "exports": "ignore",
  22. "functions": "never"
  23. }],
  24. "react/jsx-pascal-case": 0,
  25. "react/jsx-uses-vars": 1,
  26. "react/no-danger": 0,
  27. "max-len": ["warn", {
  28. "code": 95,
  29. "ignoreComments": true,
  30. "ignoreUrls": true,
  31. "ignoreStrings": true,
  32. "ignoreTemplateLiterals": true
  33. }],
  34. "no-mixed-operators": 0,
  35. "no-bitwise": 0,
  36. "no-ex-assign": 0,
  37. "no-plusplus": 0,
  38. "no-shadow": 0,
  39. "no-use-before-define": ["warn", { "functions": false, "classes": false }],
  40. "no-param-reassign": 0,
  41. "no-restricted-syntax": [0, "ForOfStatement"],
  42. "no-underscore-dangle": 0,
  43. "padded-blocks": 0,
  44. "spaced-comment": 1,
  45. "prefer-rest-params": 0,
  46. "object-shorthand": 0,
  47. "object-curly-spacing": 0,
  48. "one-var": 0,
  49. "func-names": 0,
  50. "react/prefer-es6-class": 0,
  51. "import/extensions": [2, "never"],
  52. "import/first": 1,
  53. "import/prefer-default-export": 0,
  54. "import/no-extraneous-dependencies": 0,
  55. "import/no-unresolved": 0,
  56. "import/no-dynamic-require": 0,
  57. "import/no-webpack-loader-syntax": 0,
  58. "strict": 0
  59. }
  60. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement