vis.js is a dynamic, browser-based visualization library
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.

26 lines
465 B

  1. {
  2. "env": {
  3. "browser": true,
  4. "es6": true,
  5. "node": true,
  6. "mocha": true
  7. },
  8. "parser": "babel-eslint",
  9. "extends": "eslint:recommended",
  10. "rules": {
  11. "complexity": [2, 55],
  12. "max-statements": [2, 115],
  13. "no-console": 0,
  14. "no-empty": 0,
  15. "no-extra-semi": 0,
  16. "no-fallthrough": 0,
  17. "no-inner-declarations": 0,
  18. "no-mixed-spaces-and-tabs": 0,
  19. "no-redeclare": 0,
  20. "no-unreachable": 1,
  21. "no-unused-vars": 0,
  22. }
  23. }