diff --git a/.eslintrc.js b/.eslintrc.js index 570c284c..8984e662 100644 --- a/.eslintrc.js +++ b/.eslintrc.js @@ -26,15 +26,6 @@ module.exports = { requireForBlockBody: false, }, ], - 'object-curly-newline': [ - 'error', - { - ObjectExpression: { minProperties: 2, consistent: true }, - ObjectPattern: { minProperties: 5, consistent: true }, - ImportDeclaration: { consistent: true }, - ExportDeclaration: { consistent: true }, - }, - ], 'no-multiple-empty-lines': [ 'error', { diff --git a/.prettierrc b/.prettierrc index 9db28a2b..b8576959 100644 --- a/.prettierrc +++ b/.prettierrc @@ -1,5 +1,7 @@ { + "semi": true, "singleQuote": true, "trailingComma": "all", + "arrowParens": "avoid", "printWidth": 120 }