actual/.eslintrc.js

11 lines
213 B
JavaScript
Raw Normal View History

module.exports = {
2022-08-25 15:36:02 +00:00
plugins: ['prettier'],
extends: ['react-app'],
rules: {
2022-08-25 15:36:02 +00:00
'prettier/prettier': 'error',
'no-unused-vars': 'off',
'no-loop-func': 'off',
'no-restricted-globals': 'off'
}
};