diff options
Diffstat (limited to 'platform/web/.eslintrc.libs.js')
-rw-r--r-- | platform/web/.eslintrc.libs.js | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/platform/web/.eslintrc.libs.js b/platform/web/.eslintrc.libs.js new file mode 100644 index 0000000000..8e579fd462 --- /dev/null +++ b/platform/web/.eslintrc.libs.js @@ -0,0 +1,26 @@ +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, + "GodotEventListeners": true, + "GodotRuntime": true, + "GodotFS": true, + "IDHandler": true, + "Browser": true, + "GL": true, + "XRWebGLLayer": true, + }, +}; |