Skip to content

Commit

Permalink
Update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
modos189 committed Feb 3, 2024
1 parent 3c553a8 commit 382c5ca
Show file tree
Hide file tree
Showing 3 changed files with 6,862 additions and 19,322 deletions.
15 changes: 10 additions & 5 deletions .eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,19 @@ module.exports = {
root: true,
env: {
node: true,
webextensions: true
webextensions: true,
},
extends: ["plugin:vue/essential", "eslint:recommended", "@vue/prettier"],
extends: [
"plugin:vue/essential",
"eslint:recommended",
"plugin:prettier/recommended",
],
parserOptions: {
parser: "babel-eslint"
parser: "@babel/eslint-parser",
},
rules: {
"no-console": process.env.NODE_ENV === "production" ? "warn" : "off",
"no-debugger": process.env.NODE_ENV === "production" ? "warn" : "off"
}
"no-debugger": process.env.NODE_ENV === "production" ? "warn" : "off",
"vue/multi-word-component-names": "off",
},
};
Loading

0 comments on commit 382c5ca

Please sign in to comment.