您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

.eslintrc.json 347B

123456789101112131415161718192021
  1. {
  2. "env": {
  3. "browser": true
  4. },
  5. "extends": "eslint:recommended",
  6. "rules": {
  7. "indent": [
  8. "error",
  9. 4
  10. ],
  11. "linebreak-style": [
  12. "error",
  13. "unix"
  14. ],
  15. "quotes": "off",
  16. "semi": [
  17. "error",
  18. "always"
  19. ]
  20. }
  21. }