From e035128c30822d8519f5dd636635a770b3939e2f Mon Sep 17 00:00:00 2001 From: James Collins Date: Mon, 20 Feb 2023 10:19:04 +1000 Subject: [PATCH] rule updates --- .eslintrc.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.eslintrc.js b/.eslintrc.js index 9f18230..47199bc 100644 --- a/.eslintrc.js +++ b/.eslintrc.js @@ -11,7 +11,8 @@ module.exports = { ], rules: { "vue/multi-word-component-names": "off", - indent: ["error", 4], + indent: ["off", 4, { ignoredNodes: ["ConditionalExpression"] }], + "@typescript-eslint/no-inferrable-types": "off", }, plugins: ["jsdoc", "@typescript-eslint"], parser: "vue-eslint-parser",