feat(eslint): Rule "strict"

Signed-off-by: Valentin Popov <info@valentineus.link>
This commit is contained in:
Valentin Popov 2020-02-14 02:40:01 +04:00
parent 0b1811525f
commit c6c3b6b769
Signed by: Valentin Popov
GPG Key ID: 269A00ACA90A8EA3
2 changed files with 5 additions and 1 deletions

View File

@ -266,7 +266,7 @@
- [ ] "space-infix-ops"
- [ ] "space-unary-ops"
- [ ] "spaced-comment"
- [ ] "strict"
- [X] "strict"
- [ ] "switch-colon-spacing"
- [ ] "symbol-description"
- [ ] "template-curly-spacing"

View File

@ -541,6 +541,10 @@
"named": "never"
}
],
"strict": [
"error",
"safe"
],
"valid-jsdoc": [
"off"
],