Merge pull request #881 from embark-framework/linter/allow-bangbang

allow coercion w/ `!!`
This commit is contained in:
Iuri Matias 2018-09-21 09:38:09 -04:00 committed by GitHub
commit 1f23e33c99
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 6 additions and 1 deletions

View File

@ -122,7 +122,12 @@
"no-extra-label": "error",
"no-extra-parens": "off",
"no-floating-decimal": "error",
"no-implicit-coercion": "error",
"no-implicit-coercion": [
"error",
{
"allow": ["!!"]
}
],
"no-implicit-globals": "error",
"no-implied-eval": "error",
"no-inline-comments": "off",