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.

27 lines
463 B

  1. {
  2. "extends": "standard",
  3. "env": {
  4. "node": true,
  5. "es6": true,
  6. "jest": true
  7. },
  8. "globals": {
  9. // Client
  10. "document": false,
  11. "navigator": false,
  12. "window": false,
  13. "siteLang": false,
  14. "socket": true,
  15. "wikijs": true,
  16. "FuseBox": false,
  17. // Server
  18. "appconfig": true,
  19. "appdata": true,
  20. "ROOTPATH": true,
  21. "SERVERPATH": true,
  22. "IS_DEBUG": true
  23. },
  24. "rules": {
  25. "space-before-function-paren": 0
  26. }
  27. }