Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/dotnet/runtime.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'src/mono/wasm/runtime/.eslintrc.cjs')
-rw-r--r--src/mono/wasm/runtime/.eslintrc.cjs5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/mono/wasm/runtime/.eslintrc.cjs b/src/mono/wasm/runtime/.eslintrc.cjs
index 5acfca7fed0..b69d519896a 100644
--- a/src/mono/wasm/runtime/.eslintrc.cjs
+++ b/src/mono/wasm/runtime/.eslintrc.cjs
@@ -29,7 +29,10 @@ module.exports = {
"indent": [
"error",
4,
- { SwitchCase: 1 }
+ {
+ SwitchCase: 1,
+ "ignoredNodes": ["VariableDeclaration[declarations.length=0]"] // fixes https://github.com/microsoft/vscode-eslint/issues/1149
+ }
],
"linebreak-style": "off",
"quotes": [