Skip to content

Commit

Permalink
update deps and fix build
Browse files Browse the repository at this point in the history
  • Loading branch information
tcastelly committed Jul 28, 2023
1 parent 094afbc commit 448903f
Show file tree
Hide file tree
Showing 10 changed files with 6,294 additions and 3,703 deletions.
5 changes: 4 additions & 1 deletion .eslintrc.js → .eslintrc.cjs
Original file line number Diff line number Diff line change
@@ -1,15 +1,17 @@
module.exports = {
root: true,
env: {
node: true,
es6: true,
},
extends: [
'plugin:vue/vue3-essential',
'@vue/eslint-config-airbnb-with-typescript',
],
parserOptions: {
ecmaVersion: 2020,
parser: '@typescript-eslint/parser',
},
parser: 'vue-eslint-parser',
rules: {
'no-console': process.env.NODE_ENV === 'production' ? 'warn' : 'off',
'no-debugger': process.env.NODE_ENV === 'production' ? 'warn' : 'off',
Expand All @@ -28,6 +30,7 @@ module.exports = {
'@typescript-eslint/ban-ts-comment': 'off',
'@typescript-eslint/no-explicit-any': 0,
'@typescript-eslint/explicit-module-boundary-types': 0,
'@typescript-eslint/no-unused-vars': ['error'],

// fix tsx component
'import/prefer-default-export': 0,
Expand Down
Loading

0 comments on commit 448903f

Please sign in to comment.