diff --git a/.eslintrc.js b/.eslintrc.js index d0405b751..243945e02 100644 --- a/.eslintrc.js +++ b/.eslintrc.js @@ -3,7 +3,7 @@ module.exports = { browser: true, es6: true, }, - extends: 'eslint:recommended', + extends: ['eslint:recommended', 'prettier'], globals: { Atomics: 'readonly', SharedArrayBuffer: 'readonly', diff --git a/app/javascript/.eslintrc.js b/app/javascript/.eslintrc.js index 8020fc0b8..0bb22ddf7 100644 --- a/app/javascript/.eslintrc.js +++ b/app/javascript/.eslintrc.js @@ -1,6 +1,6 @@ module.exports = { parser: 'babel-eslint', - extends: ['airbnb', 'prettier', 'plugin:jsx-a11y/recommended'], + extends: ['airbnb', 'plugin:jsx-a11y/recommended', 'prettier'], parserOptions: { ecmaVersion: 2017, },