aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnton Dubik <anton.dubik33@gmail.com>2020-01-26 16:10:38 +0300
committerGitHub <noreply@github.com>2020-01-26 16:10:38 +0300
commit29719a9e76714f027f5dab2b8b4a8243a80d4a9e (patch)
tree6f58c29a46fc16cf476c3a97cbc1a971ef7eff85
parent3487efe54ee0a70cf4873cb714a9e5e35b63e77e (diff)
downloadreact-benzin-29719a9e76714f027f5dab2b8b4a8243a80d4a9e.tar.gz
feat: add rules for quotes into .eslintrc
-rw-r--r--.eslintrc.json7
1 files changed, 7 insertions, 0 deletions
diff --git a/.eslintrc.json b/.eslintrc.json
new file mode 100644
index 0000000..8c9d6d9
--- /dev/null
+++ b/.eslintrc.json
@@ -0,0 +1,7 @@
+{
+ "extends": "react-app",
+ "rules": {
+ "jsx-quotes": ["error", "prefer-double"],
+ "quotes": ["error", "single"]
+ }
+}