Skip to content

Commit 7beab9d

Browse files
committed
more vue specific lint fixes
1 parent aba9965 commit 7beab9d

File tree

1 file changed

+9
-5
lines changed

1 file changed

+9
-5
lines changed

.eslintrc.json

+9-5
Original file line numberDiff line numberDiff line change
@@ -146,6 +146,10 @@
146146
"plugins/content/frontend/content-blocks/**/*.vue",
147147
"plugins/journey_engine/frontend/builder/**/*.vue"
148148
],
149+
"plugins": [
150+
"vue",
151+
"@stylistic"
152+
],
149153
"extends": [
150154
"eslint:recommended",
151155
"plugin:vue/vue3-essential",
@@ -156,12 +160,12 @@
156160
// override these post initial content release, to make them fit with countly convention
157161
"no-console": ["error"],
158162
"@stylistic/quotes": ["error", "single"],
159-
"@stylistic/quote-props": ["error", "as-needed"]
163+
"@stylistic/quote-props": ["error", "as-needed"],
164+
"no-unused-vars": "off",
165+
"vue/no-unused-vars": ["error", {
166+
"ignorePattern": "^_"
167+
}]
160168
},
161-
"plugins": [
162-
"vue",
163-
"@stylistic"
164-
],
165169
"parserOptions": {
166170
"ecmaVersion": 2023,
167171
"sourceType": "module",

0 commit comments

Comments
 (0)