.eslintrc.json 427 B

1234567891011121314151617181920212223
  1. {
  2. "extends": "airbnb-base",
  3. "plugins": [
  4. "import"
  5. ],
  6. "parserOptions": {
  7. "sourceType": "script",
  8. "impliedStrict": false,
  9. "ecmaFeatures": {
  10. "experimentalObjectRestSpread": false
  11. }
  12. },
  13. "rules": {
  14. "strict": [ 2, "global" ],
  15. "comma-dangle": [ 2, {
  16. "arrays": "only-multiline",
  17. "objects": "only-multiline",
  18. "functions": "never"
  19. }],
  20. "linebreak-style": [ 0 ]
  21. }
  22. }