diff options
author | Eug-VS <eug-vs@keemail.me> | 2020-01-15 23:11:49 +0300 |
---|---|---|
committer | Eug-VS <eug-vs@keemail.me> | 2020-01-15 23:11:49 +0300 |
commit | 8d98180b4f6882dbbe6754bceb8ffb09f46f7e7d (patch) | |
tree | 9d39e59f945e1b4132a90f3512d479b4057cf4ab | |
parent | 8aac86303d7d7e7426f75cb2e7484b41bbe1814a (diff) | |
download | chrono-cube-ui-8d98180b4f6882dbbe6754bceb8ffb09f46f7e7d.tar.gz |
feat: add rules for quotes into .eslintrc
-rw-r--r-- | .eslintrc.json | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/.eslintrc.json b/.eslintrc.json index 4bed466..8c9d6d9 100644 --- a/.eslintrc.json +++ b/.eslintrc.json @@ -1,3 +1,7 @@ { - "extends": "react-app" -}
\ No newline at end of file + "extends": "react-app", + "rules": { + "jsx-quotes": ["error", "prefer-double"], + "quotes": ["error", "single"] + } +} |