From 29719a9e76714f027f5dab2b8b4a8243a80d4a9e Mon Sep 17 00:00:00 2001 From: Anton Dubik Date: Sun, 26 Jan 2020 16:10:38 +0300 Subject: feat: add rules for quotes into .eslintrc --- .eslintrc.json | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 .eslintrc.json 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"] + } +} -- cgit v1.2.3