diff --git a/.eslintrc.js b/.eslintrc.js
index 7b9d2a2..191e3f6 100644
--- a/.eslintrc.js
+++ b/.eslintrc.js
@@ -20,7 +20,7 @@ module.exports = {
     eqeqeq: ['warn', 'smart'],
     '@typescript-eslint/no-explicit-any': 'off',
     '@typescript-eslint/explicit-module-boundary-types': [
-      'error',
+      'warn',
       { allowArgumentsExplicitlyTypedAsAny: true },
     ],
     'no-unused-vars': 'warn',
@@ -30,6 +30,7 @@ module.exports = {
       'warn',
       { exceptions: ['i', 'j', 't', 'Q', 'A', 'C', 'q', 'a', 'b', 'x'] },
     ],
+    'object-shorthand': ['warn', 'never'],
   },
-  root: true
+  root: true,
 }