godot/platform/javascript/.eslintrc.libs.js
Fabio Alessandrelli c38984d286 [HTML5] Enforce JavaScript style with eslint.
Applies to javascript files inside the platform library folder, the
exposed Engine code, and any javascript files in modules.

Files ending with ".externs.js" will be ignored, you can create a
".eslintignore" file to specify extra files to be ignored.
2020-11-23 12:15:18 +01:00

23 lines
380 B
JavaScript

module.exports = {
"extends": [
"./.eslintrc.js",
],
"globals": {
"LibraryManager": true,
"mergeInto": true,
"autoAddDeps": true,
"HEAP8": true,
"HEAPU8": true,
"HEAP32": true,
"HEAPF32": true,
"ERRNO_CODES": true,
"FS": true,
"IDBFS": true,
"GodotOS": true,
"GodotConfig": true,
"GodotRuntime": true,
"GodotFS": true,
"IDHandler": true,
},
};