Skip to content

Commit

Permalink
more vue specific lint fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
kanwarujjaval committed Nov 27, 2024
1 parent aba9965 commit 7beab9d
Showing 1 changed file with 9 additions and 5 deletions.
14 changes: 9 additions & 5 deletions .eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -146,6 +146,10 @@
"plugins/content/frontend/content-blocks/**/*.vue",
"plugins/journey_engine/frontend/builder/**/*.vue"
],
"plugins": [
"vue",
"@stylistic"
],
"extends": [
"eslint:recommended",
"plugin:vue/vue3-essential",
Expand All @@ -156,12 +160,12 @@
// override these post initial content release, to make them fit with countly convention
"no-console": ["error"],
"@stylistic/quotes": ["error", "single"],
"@stylistic/quote-props": ["error", "as-needed"]
"@stylistic/quote-props": ["error", "as-needed"],
"no-unused-vars": "off",
"vue/no-unused-vars": ["error", {
"ignorePattern": "^_"
}]
},
"plugins": [
"vue",
"@stylistic"
],
"parserOptions": {
"ecmaVersion": 2023,
"sourceType": "module",
Expand Down

0 comments on commit 7beab9d

Please sign in to comment.