Advertisement
Guest User

Untitled

a guest
Jun 19th, 2019
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.52 KB | None | 0 0
  1. {
  2. "scripts": {
  3. "lint": "eslint '{,!(node_modules)/**/}*.js'"
  4. },
  5. "eslintConfig": {
  6. "plugins": [
  7. "autofix",
  8. "import"
  9. ],
  10. "rules": {
  11. "autofix/no-unused-vars": "error",
  12. "import/order": [
  13. "error",
  14. {
  15. "groups": [
  16. [
  17. "builtin",
  18. "external"
  19. ],
  20. [
  21. "parent",
  22. "sibling",
  23. "index"
  24. ]
  25. ],
  26. "newlines-between": "always"
  27. }
  28. ]
  29. }
  30. }
  31. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement