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 = { module.exports = {
plugins: ["prettier"], plugins: ['prettier'],
extends: ["react-app"], extends: ['react-app'],
rules: { rules: {
"prettier/prettier": "error", 'prettier/prettier': 'error',
"no-unused-vars": "off", 'no-unused-vars': 'off',
"no-loop-func": "off", 'no-loop-func': 'off',
"no-restricted-globals": "off" 'no-restricted-globals': 'off'
} }
}; };