aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEug-VS <eug-vs@keemail.me>2020-01-15 23:11:49 +0300
committerEug-VS <eug-vs@keemail.me>2020-01-15 23:11:49 +0300
commit8d98180b4f6882dbbe6754bceb8ffb09f46f7e7d (patch)
tree9d39e59f945e1b4132a90f3512d479b4057cf4ab
parent8aac86303d7d7e7426f75cb2e7484b41bbe1814a (diff)
downloadchrono-cube-ui-8d98180b4f6882dbbe6754bceb8ffb09f46f7e7d.tar.gz
feat: add rules for quotes into .eslintrc
-rw-r--r--.eslintrc.json8
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"]
+ }
+}