feat(eslint): jsx-quotes

Signed-off-by: Valentin Popov <info@valentineus.link>
This commit is contained in:
Valentin Popov 2020-02-19 14:15:48 +04:00
parent 99f00817e0
commit 9ea945c950
Signed by: Valentin Popov
GPG Key ID: 269A00ACA90A8EA3
2 changed files with 11 additions and 7 deletions

View File

@ -53,7 +53,7 @@
- [X] "indent"
- [X] "indent-legacy"
- [ ] "init-declarations"
- [ ] "jsx-quotes"
- [X] "jsx-quotes"
- [X] "key-spacing"
- [X] "keyword-spacing"
- [ ] "line-comment-position"

View File

@ -121,6 +121,10 @@
"indent-legacy": [
"off"
],
"jsx-quotes": [
"error",
"prefer-double"
],
"key-spacing": [
"error",
{
@ -181,12 +185,6 @@
"tabWidth": 4
}
],
"no-param-reassign": [
"warn",
{
"props": true
}
],
"max-lines": [
"off"
],
@ -343,6 +341,12 @@
"no-octal-escape": [
"error"
],
"no-param-reassign": [
"warn",
{
"props": true
}
],
"no-path-concat": [
"error"
],