From 5b8f5b466927043ccbd3d561449d327c740b896f Mon Sep 17 00:00:00 2001 From: Albert Date: Tue, 9 Jun 2020 04:59:51 +0200 Subject: [PATCH] Fix conflicting rules between prettier and eslint --- .eslintrc.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.eslintrc.js b/.eslintrc.js index c3da9c6..f342812 100644 --- a/.eslintrc.js +++ b/.eslintrc.js @@ -1,7 +1,7 @@ module.exports = { parser: '@typescript-eslint/parser', plugins: ['@typescript-eslint'], - extends: ['prettier', 'airbnb'], + extends: ['airbnb', 'prettier'], parserOptions: { ecmaVersion: 6, sourceType: 'module',