-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Bump deps and fix eslint and prettier onSave
- Loading branch information
Sébastien LeBlanc
committed
Jul 31, 2024
1 parent
77045ef
commit a892a13
Showing
11 changed files
with
3,405 additions
and
3,065 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
module.exports = { | ||
root: true, | ||
env: { | ||
browser: true, | ||
node: true, | ||
}, | ||
parserOptions: { | ||
parser: '@typescript-eslint/parser', | ||
sourceType: 'module', | ||
}, | ||
extends: ['eslint:recommended', 'plugin:vue/vue3-recommended', 'plugin:prettier/recommended', 'prettier'], | ||
plugins: ['vue', 'prettier'], | ||
// add your custom rules here | ||
rules: { | ||
'no-undef': 'off', | ||
'no-unused-vars': 'off', | ||
'no-console': 'warn', | ||
'vue/no-v-html': 'off', | ||
'vue/multi-word-component-names': 'off', | ||
'nuxt/no-cjs-in-config': 'off', | ||
'vue/html-button-has-type': 'error', | ||
'object-shorthand': ['error', 'always'], | ||
'vue/no-unused-components': 'warn', | ||
'vue/padding-line-between-blocks': ['error', 'always'], | ||
'vue/no-multiple-template-root': 'off', | ||
'vue/prop-name-casing': 'off', | ||
'no-irregular-whitespace': 'off', | ||
'vue/one-component-per-file': 'off', | ||
'vue/define-macros-order': [ | ||
'error', | ||
{ | ||
order: ['defineOptions', 'defineModel', 'defineProps', 'defineEmits', 'defineSlots'], | ||
defineExposeLast: true, | ||
}, | ||
], | ||
}, | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.