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 506B

12345678910111213141516171819202122
  1. {
  2. "extends": "./Tools/eslint-config-cesium/browser.js",
  3. "plugins": [
  4. "html"
  5. ],
  6. "rules": {
  7. "no-unused-vars": ["error", {"vars": "all", "args": "none"}]
  8. },
  9. "overrides": [
  10. {
  11. "files": [
  12. "index.js",
  13. "server.js",
  14. "gulpfile.js",
  15. "Source/Workers/transferTypedArrayTest.js"
  16. ],
  17. "parserOptions": {
  18. "sourceType": "script"
  19. }
  20. }
  21. ]
  22. }