Skip to content

Commit b8029e5

Browse files
committed
refactor: basic Vue 3 migration
1 parent e4b28fa commit b8029e5

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

72 files changed

+12056
-11261
lines changed

.eslintignore

Lines changed: 0 additions & 2 deletions
This file was deleted.

.eslintrc.js

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,12 @@ module.exports = {
33
parserOptions: {
44
parser: 'babel-eslint',
55
ecmaVersion: 2017,
6-
sourceType: 'module'
6+
sourceType: 'module',
77
},
88
// https://github.com/feross/standard/blob/master/RULES.md#javascript-standard-style
99
extends: [
1010
'standard',
11-
'plugin:vue/recommended',
11+
'plugin:vue/vue3-recommended',
1212
],
1313
// required to lint *.vue files
1414
plugins: [
@@ -18,7 +18,7 @@ module.exports = {
1818
browser: true,
1919
},
2020
// add your custom rules here
21-
'rules': {
21+
rules: {
2222
// allow paren-less arrow functions
2323
'arrow-parens': 0,
2424
// allow async-await
@@ -27,5 +27,9 @@ module.exports = {
2727
'no-debugger': process.env.NODE_ENV === 'production' ? 2 : 0,
2828
// trailing comma
2929
'comma-dangle': ['error', 'always-multiline'],
30-
}
30+
},
31+
ignorePatterns: [
32+
'node_modules/',
33+
'dist/',
34+
],
3135
}

.gitignore

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,5 @@
11
node_modules/
2+
.temp/
3+
.cache/
4+
dist/
5+

dist/vue-virtual-scroller.css

Lines changed: 0 additions & 1 deletion
This file was deleted.

0 commit comments

Comments
 (0)