MES手机端
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

34 regels
489 B

  1. {
  2. "root": true,
  3. "extends": "@ljharb",
  4. "rules": {
  5. "array-bracket-newline": "off",
  6. "id-length": "off",
  7. "max-lines-per-function": "off",
  8. "new-cap": ["error", {
  9. "capIsNewExceptions": [
  10. "CreateDataPropertyOrThrow",
  11. "GroupBy",
  12. "OrdinaryObjectCreate",
  13. ],
  14. }],
  15. },
  16. "overrides": [
  17. {
  18. "files": "aos/*.js",
  19. "rules": {
  20. "max-statements": "off",
  21. },
  22. },
  23. {
  24. "files": "test/tests.js",
  25. "rules": {
  26. "max-lines-per-function": "off",
  27. },
  28. },
  29. ],
  30. }