From 0a9007cc33df380ea856b5d8a696d54dfaf3b150 Mon Sep 17 00:00:00 2001 From: Alex Humphries Date: Wed, 11 Feb 2026 16:50:10 -0500 Subject: [PATCH] Undo accidental commit of .eslintrc.js --- .eslintrc.js | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/.eslintrc.js b/.eslintrc.js index 95b47ad0..65c1caa3 100644 --- a/.eslintrc.js +++ b/.eslintrc.js @@ -7,7 +7,9 @@ module.exports = { ecmaVersion: 'latest' }, extends: [ - 'plugin:vue/vue3-recommended' + 'eslint-config-airbnb-base', + 'plugin:vue/vue3-recommended', + 'plugin:jsdoc/recommended' ], rules: { 'linebreak-style': 'off', @@ -28,6 +30,10 @@ module.exports = { singleline: 'never', multiline: 'never' }], + 'jsdoc/check-tag-names': ['error', { + definedTags: ['store', 'endpoint', 'category', 'subcategory', 'remarks'] + }], + 'jsdoc/require-jsdoc': 0, 'vue/html-self-closing': ['error', { html: { void: 'any', @@ -37,6 +43,7 @@ module.exports = { svg: 'always', math: 'always' }], + 'import/extensions': ['error', 'always', { js: 'ignorePackages' }], 'no-param-reassign': ['error', { props: true, ignorePropertyModificationsFor: ['item'] }], 'no-restricted-syntax': ['off', 'ForOfStatement'], 'no-return-await': 'off' @@ -49,4 +56,4 @@ module.exports = { } } } -}; +}; \ No newline at end of file