Skip to content

Commit

Permalink
🚨 (lint): Change eslint prefix from airbnb to google
Browse files Browse the repository at this point in the history
  • Loading branch information
gabe565 committed May 20, 2023
1 parent ed5dd8a commit e25f6a8
Show file tree
Hide file tree
Showing 4 changed files with 26 additions and 621 deletions.
20 changes: 11 additions & 9 deletions .eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ module.exports = {
browser: true,
},
extends: [
"airbnb",
"google",
"plugin:vue/recommended",
"plugin:vuetify/recommended",
"prettier",
Expand All @@ -14,13 +14,15 @@ module.exports = {
parser: "@babel/eslint-parser",
},
rules: {
"import/prefer-default-export": "off",
"no-console": process.env.NODE_ENV === "production" ? "warn" : "off",
"no-continue": "off",
"no-debugger": process.env.NODE_ENV === "production" ? "error" : "off",
"no-param-reassign": ["error", { props: false }],
"no-underscore-dangle": "off",
"no-restricted-syntax": "off",
"import/no-unresolved": "off",
"object-curly-spacing": ["error", "always"],
"require-jsdoc": "off",
indent: ["error", 2, { SwitchCase: 1 }],
"no-unused-vars": [
"error",
{ varsIgnorePattern: "^_", argsIgnorePattern: "^_" },
],
"valid-jsdoc": "off",
"new-cap": "off",
"vue/no-template-shadow": "off",
},
};
Loading

0 comments on commit e25f6a8

Please sign in to comment.