diff --git a/.eslintrc.js b/.eslintrc.js index af1ba640..d8f69787 100644 --- a/.eslintrc.js +++ b/.eslintrc.js @@ -1,10 +1,14 @@ module.exports = { root: true, // This tells ESLint to load the config from the package `eslint-config-custom` - extends: ['custom'], + extends: ['custom', 'plugin:prettier/recommended'], settings: { next: { rootDir: ['apps/*/'], }, + }, + plugins: ['prettier'], + rules: { + 'prettier/prettier': 'error', }, }