Guest User

Untitled

a guest
Jul 23rd, 2018
95
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.71 KB | None | 0 0
  1. {
  2. "extends": [
  3. "eslint-config-airbnb"
  4. ],
  5. "parser": "babel-eslint",
  6. "settings": {
  7. "ecmascript": 6
  8. },
  9. "env": {
  10. "browser": true
  11. },
  12. "rules": {
  13. "arrow-body-style": 0,
  14. "arrow-parens": 0,
  15. "autoFix": true,
  16. "array-callback-return": 1,
  17. "class-methods-use-this": 0,
  18. "eol-last": "off",
  19. "func-names": 0,
  20. "no-empty": 1,
  21. "function-paren-newline": 0,
  22. "import/extensions": 0,
  23. "import/no-extraneous-dependencies": 0,
  24. "import/no-unresolved": 0,
  25. "import/prefer-default-export": 0,
  26. "indent": 1,
  27. "no-trailing-spaces": 1,
  28. "jsx-a11y/label-has-for": 1,
  29. "jsx-a11y/no-autofocus": 0,
  30. "jsx-a11y/anchor-is-valid": 1,
  31. "jsx-quotes": 0,
  32. "linebreak-style": 0,
  33. "new-cap": 0,
  34. "no-plusplus": 0,
  35. "no-return-assign": 0,
  36. "padded-blocks": 1,
  37. "prefer-promise-reject-errors": 0,
  38. "quote-props": 1,
  39. "react/forbid-prop-types": 0,
  40. "react/jsx-boolean-value": 0,
  41. "react/jsx-curly-spacing": 0,
  42. "react/jsx-filename-extension": 1,
  43. "react/jsx-indent": 1,
  44. "react/jsx-tag-spacing": 0,
  45. "react/no-danger": 0,
  46. "react/prefer-stateless-function": 1,
  47. "react/prop-types": 0,
  48. "react/react-in-jsx-scope": "off",
  49. "react/self-closing-comp": 1,
  50. "semi": 1,
  51. "spaced-comment": 1,
  52. "template-curly-spacing": 0,
  53. "no-unused-vars": [
  54. 1,
  55. {
  56. "vars": "all",
  57. "args": "after-used",
  58. "ignoreRestSiblings": false,
  59. "varsIgnorePattern": "h"
  60. }
  61. ],
  62. "comma-dangle": [
  63. 2,
  64. {
  65. "arrays": "always-multiline",
  66. "objects": "always-multiline",
  67. "imports": "always-multiline",
  68. "exports": "always-multiline",
  69. "functions": "never"
  70. }
  71. ]
  72. }
  73. }
Add Comment
Please, Sign In to add comment