style: prettify .eslintrc.js

This commit is contained in:
Tom French 2022-08-25 16:36:02 +01:00
parent 677faa611d
commit 1d0b2721db

View file

@ -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'
}
};