Skip to content

Commit

Permalink
✨ feat: vue3
Browse files Browse the repository at this point in the history
  • Loading branch information
MrJmpl3 committed May 10, 2022
1 parent 75c0de8 commit 0e5d260
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 1 deletion.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "eslint-config-airbnb-typescript-vue",
"version": "2.2.0",
"version": "2.3.0",
"description": "Airbnb Base Vue Typescript config",
"license": "MIT",
"author": "José Manuel Casani Guerra <[email protected]>",
Expand Down
7 changes: 7 additions & 0 deletions shared-vue3.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
module.exports = {
parser: 'vue-eslint-parser',
parserOptions: {
extraFileExtensions: ['.vue'],
},
extends: ['plugin:vue/vue3-recommended'],
};
6 changes: 6 additions & 0 deletions vue3-without-ts-type-checking.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
module.exports = {
extends: [
'eslint-config-airbnb-typescript-base/without-ts-type-checking',
require.resolve('./shared-vue3'),
],
};
6 changes: 6 additions & 0 deletions vue3.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
module.exports = {
extends: [
'eslint-config-airbnb-typescript-base',
require.resolve('./shared-vue3'),
],
};

0 comments on commit 0e5d260

Please sign in to comment.