From 1d0b2721dbaa8c4050040e85b222c087e45ef437 Mon Sep 17 00:00:00 2001 From: Tom French Date: Thu, 25 Aug 2022 16:36:02 +0100 Subject: [PATCH] style: prettify .eslintrc.js --- .eslintrc.js | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.eslintrc.js b/.eslintrc.js index 7c32b6f..f0ee86d 100644 --- a/.eslintrc.js +++ b/.eslintrc.js @@ -1,10 +1,10 @@ module.exports = { - plugins: ["prettier"], - extends: ["react-app"], + plugins: ['prettier'], + extends: ['react-app'], rules: { - "prettier/prettier": "error", - "no-unused-vars": "off", - "no-loop-func": "off", - "no-restricted-globals": "off" + 'prettier/prettier': 'error', + 'no-unused-vars': 'off', + 'no-loop-func': 'off', + 'no-restricted-globals': 'off' } };