9588af87aa1804/app/node_modules/string-width">string-width 30f7226d9a first commit пре 2 година strip-ansi 30f7226d9a first commit пре 2 година sucrase 30f7226d9a first commit пре 2 година supports-preserve-symlinks-flag 30f7226d9a first commit пре 2 година tailwind-color-palette 30f7226d9a first commit пре 2 година tailwindcss 30f7226d9a first commit пре 2 година thenify 30f7226d9a first commit пре 2 година thenify-all 30f7226d9a first commit пре 2 година to-regex-range 30f7226d9a first commit пре 2 година tr46 30f7226d9a first commit пре 2 година ts-interface-checker 30f7226d9a first commit пре 2 година uglify-js 30f7226d9a first commit пре 2 година underscore 30f7226d9a first commit пре 2 година upper-case 30f7226d9a first commit пре 2 година util-deprecate 30f7226d9a first commit пре 2 година valid-data-url 30f7226d9a first commit пре 2 година web-resource-inliner 30f7226d9a first commit пре 2 година webidl-conversions 30f7226d9a first commit пре 2 година whatwg-url 30f7226d9a first commit пре 2 година wrap-ansi 30f7226d9a first commit пре 2 година wrappy 30f7226d9a first commit пре 2 година y18n 30f7226d9a first commit пре 2 година yallist 30f7226d9a first commit пре 2 година yaml 30f7226d9a first commit пре 2 година yargs 30f7226d9a first commit пре 2 година yargs-parser 30f7226d9a first commit пре 2 година .yarn-integrity 30f7226d9a first commit пре 2 година golf/tge - Gogs: Simplico Git Service

暫無描述

.eslintrc 1.6KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  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": [2, 350],
  16. "max-lines-per-function": 0,
  17. "max-nested-callbacks": 0,
  18. "max-params": 0,
  19. "max-statements-per-line": [2, { "max": 2 }],
  20. "max-statements": 0,
  21. "no-magic-numbers": 0,
  22. "no-shadow": 0,
  23. "no-use-before-define": 0,
  24. "sort-keys": 0,
  25. },
  26. "overrides": [
  27. {
  28. "files": "bin/**",
  29. "rules": {
  30. "no-process-exit": "off",
  31. },
  32. },
  33. {
  34. "files": "example/**",
  35. "rules": {
  36. "no-console": 0,
  37. },
  38. },
  39. {
  40. "files": "test/resolver/nested_symlinks/mylib/*.js",
  41. "rules": {
  42. "no-throw-literal": 0,
  43. },
  44. },
  45. {
  46. "files": "test/**",
  47. "parserOptions": {
  48. "ecmaVersion": 5,
  49. "allowReserved": false,
  50. },
  51. "rules": {
  52. "dot-notation": [2, { "allowPattern": "throws" }],
  53. "max-lines": 0,
  54. "max-lines-per-function": 0,
  55. "no-unused-vars": [2, { "vars": "all", "args": "none" }],
  56. },
  57. },
  58. ],
  59. "ignorePatterns": [
  60. "./test/resolver/malformed_package_json/package.json",
  61. ],
  62. }