家政小程序
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.

.eslintrc.json 579B

12345678910111213141516171819202122232425
  1. {
  2. "extends": "standard",
  3. "installedESLint": true,
  4. "root": true,
  5. "parserOptions": {
  6. "ecmaVersion": 6,
  7. "sourceType": "module"
  8. },
  9. "env": {
  10. "browser": true,
  11. "node": true
  12. },
  13. "plugins": [ "html", "standard" ],
  14. "rules": {
  15. "indent": ["error", 4, { "SwitchCase": 1 }],
  16. "quotes": ["error", "single"],
  17. "semi": ["error", "always"],
  18. "no-console": ["error"],
  19. "no-empty": 2,
  20. "no-eq-null": 2,
  21. "no-new": 0,
  22. "no-fallthrough": 0,
  23. "no-unreachable": 0
  24. }
  25. }