.eslintrc.json 525 B

123456789101112131415161718192021
  1. {
  2. "root": true,
  3. "extends": [
  4. "../Tools/eslint-config-cesium/browser.js",
  5. "prettier",
  6. "plugin:es/restrict-to-es5"
  7. ],
  8. "plugins": [
  9. "html",
  10. "es"
  11. ],
  12. "rules": {
  13. "no-unused-vars": ["error", {"vars": "all", "args": "none"}],
  14. "es/no-modules": "off",
  15. "es/no-typed-arrays": "off",
  16. "es/no-block-scoped-variables": "off",
  17. "es/no-template-literals": "off",
  18. "es/no-promise": "off",
  19. "es/no-object-assign": "off"
  20. }
  21. }