0813008b8a
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.
22 lines
380 B
JavaScript
22 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,
|
|
},
|
|
};
|