Tooling: Eslint force triple equals

This commit is contained in:
softsimon 2022-08-23 17:05:23 +04:00
parent fc5525ec4a
commit 2104570889
No known key found for this signature in database
GPG key ID: 488D7DCFB5A430D7
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
}
}