.eslintrc 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. {
  2. "root": true,
  3. "extends": "@ljharb",
  4. "rules": {
  5. "indent": [2, 4],
  6. "strict": 0,
  7. "complexity": 0,
  8. "consistent-return": 0,
  9. "curly": 0,
  10. "dot-notation": [2, { "allowKeywords": true }],
  11. "func-name-matching": 0,
  12. "func-style": 0,
  13. "global-require": 1,
  14. "id-length": [2, { "min": 1, "max": 30 }],
  15. "max-lines-per-function": 0,
  16. "max-nested-callbacks": 0,
  17. "max-params": 0,
  18. "max-statements-per-line": [2, { "max": 2 }],
  19. "max-statements": 0,
  20. "no-magic-numbers": 0,
  21. "no-shadow": 0,
  22. "no-use-before-define": 0,
  23. "sort-keys": 0,
  24. },
  25. "overrides": [
  26. {
  27. "files": "bin/**",
  28. "rules": {
  29. "no-process-exit": "off",
  30. },
  31. },
  32. {
  33. "files": "example/**",
  34. "rules": {
  35. "no-console": 0,
  36. },
  37. },
  38. {
  39. "files": "test/resolver/nested_symlinks/mylib/*.js",
  40. "rules": {
  41. "no-throw-literal": 0,
  42. },
  43. },
  44. {
  45. "files": "test/**",
  46. "parserOptions": {
  47. "ecmaVersion": 5,
  48. "allowReserved": false,
  49. },
  50. "rules": {
  51. "dot-notation": [2, { "allowPattern": "throws" }],
  52. "max-lines": 0,
  53. "max-lines-per-function": 0,
  54. "no-unused-vars": [2, { "vars": "all", "args": "none" }],
  55. },
  56. },
  57. ],
  58. "ignorePatterns": [
  59. "./test/resolver/malformed_package_json/package.json",
  60. ],
  61. }