Advertisement
dreambold

eslintjson

Nov 30th, 2022
97
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.89 KB | None | 0 0
  1. {
  2. "extends": [
  3. "eslint:recommended",
  4. "plugin:@typescript-eslint/recommended",
  5. "plugin:prettier/recommended",
  6. "plugin:react/recommended",
  7. "next",
  8. "prettier"
  9. ],
  10. "parser": "@typescript-eslint/parser",
  11. "parserOptions": {
  12. "ecmaFeatures": {
  13. "jsx": true,
  14. "modules": true
  15. },
  16. "ecmaVersion": 2019,
  17. "sourceType": "module"
  18. },
  19. "plugins": [
  20. "jam3",
  21. "prettier",
  22. "react",
  23. "@typescript-eslint"
  24. ],
  25. "rules": {
  26. "linebreak-style": [
  27. "error",
  28. "unix"
  29. ],
  30. "no-fallthrough": [
  31. "error",
  32. {
  33. "commentPattern": "break[\\s\\w]*omitted"
  34. }
  35. ]
  36. },
  37. "settings": {
  38. "react": {
  39. "version": "17.0"
  40. }
  41. }
  42. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement