feat(eslint): Rule "sort-vars"

Signed-off-by: Valentin Popov <info@valentineus.link>
This commit is contained in:
Valentin Popov 2020-02-13 15:49:01 +04:00
parent ea076dbff1
commit f6794430fc
Signed by: Valentin Popov
GPG Key ID: 269A00ACA90A8EA3
2 changed files with 7 additions and 1 deletions

View File

@ -259,7 +259,7 @@
- [X] "semi-style"
- [X] "sort-imports"
- [X] "sort-keys"
- [ ] "sort-vars"
- [X] "sort-vars"
- [ ] "space-before-blocks"
- [ ] "space-before-function-paren"
- [ ] "space-in-parens"

View File

@ -140,6 +140,12 @@
"natural": true
}
],
"sort-vars": [
"error",
{
"ignoreCase": false
}
],
"valid-jsdoc": [
"off"
]