diff --git a/.eslintrc.js b/.eslintrc.js index 3e60e10..f68af62 100644 --- a/.eslintrc.js +++ b/.eslintrc.js @@ -1,5 +1,6 @@ module.exports = { root: true, + ignorePatterns: ['public/'], parserOptions: { parser: 'babel-eslint', @@ -14,6 +15,12 @@ module.exports = { }, rules: { + 'prettier/prettier': [ + 'error', + { + endOfLine: 'auto', + }, + ], indent: ['error', 2, { SwitchCase: 1 }], 'space-infix-ops': ['error', { int32Hint: false }], 'key-spacing': [