Tooling: Eslint force triple equals

This commit is contained in:
softsimon 2022-08-23 17:05:23 +04:00
parent c75899b151
commit 1c977c4bc5
2 changed files with 4 additions and 2 deletions

View File

@ -31,6 +31,7 @@
"prefer-const": 1,
"prefer-rest-params": 1,
"quotes": [1, "single", { "allowTemplateLiterals": true }],
"semi": 1
"semi": 1,
"eqeqeq": 1
}
}

View File

@ -32,6 +32,7 @@
"prefer-const": 1,
"prefer-rest-params": 1,
"quotes": [1, "single", { "allowTemplateLiterals": true }],
"semi": 1
"semi": 1,
"eqeqeq": 1
}
}