5d226314ad2696c2a5d3c76c5a62aa462a4ed732cdbd9f055d06dd531d1f33dd412dabc118be75e6cc8a6fe9aa289d8d6175bcfb6d5a0a43fdaee8d13f3db1 511 B

12345678910111213141516171819202122232425262728293031323334
  1. {
  2. "root": true,
  3. "extends": "@ljharb",
  4. "rules": {
  5. "camelcase": "off",
  6. "func-style": "off",
  7. "id-length": "off",
  8. "max-lines-per-function": "off",
  9. "multiline-comment-style": "off",
  10. "no-negated-condition": "off",
  11. "no-param-reassign": "warn",
  12. "sort-keys": "off",
  13. },
  14. "overrides": [
  15. {
  16. "files": "./asn1.js",
  17. "rules": {
  18. "no-underscore-dangle": "off",
  19. }
  20. },
  21. {
  22. "files": [
  23. "./asn1.js",
  24. "./certificate.js",
  25. ],
  26. "rules": {
  27. "no-invalid-this": "off",
  28. }
  29. },
  30. ]
  31. }