mirror of
https://github.com/godotengine/godot.git
synced 2025-02-16 15:50:45 +00:00
Merge pull request #52926 from akien-mga/js-acorn-emscripten-1.39.9
This commit is contained in:
commit
b1237b5cac
@ -39,5 +39,13 @@ module.exports = {
|
|||||||
// Closure compiler (exported properties)
|
// Closure compiler (exported properties)
|
||||||
"quote-props": ["error", "consistent"],
|
"quote-props": ["error", "consistent"],
|
||||||
"dot-notation": "off",
|
"dot-notation": "off",
|
||||||
|
// No comma dangle for functions (it's madness, and ES2017)
|
||||||
|
"comma-dangle": ["error", {
|
||||||
|
"arrays": "always-multiline",
|
||||||
|
"objects": "always-multiline",
|
||||||
|
"imports": "always-multiline",
|
||||||
|
"exports": "always-multiline",
|
||||||
|
"functions": "never"
|
||||||
|
}],
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
@ -229,7 +229,7 @@ const GodotAudioWorklet = {
|
|||||||
'godot-processor',
|
'godot-processor',
|
||||||
{
|
{
|
||||||
'outputChannelCount': [channels],
|
'outputChannelCount': [channels],
|
||||||
},
|
}
|
||||||
);
|
);
|
||||||
return Promise.resolve();
|
return Promise.resolve();
|
||||||
});
|
});
|
||||||
|
Loading…
Reference in New Issue
Block a user