godot/platform/javascript/.eslintrc.engine.js
Fabio Alessandrelli 018ee5a4dc [HTML5] Document Engine and EngineConfig (jsdoc).
This commit also removes the utils.js engine file, moving some of it's
content to config.js and some to engine.js .
2021-02-26 11:33:59 +01:00

11 lines
142 B
JavaScript

module.exports = {
"extends": [
"./.eslintrc.js",
],
"globals": {
"InternalConfig": true,
"Godot": true,
"Preloader": true,
},
};