Skip to content

Commit c624494

Browse files
committed
feat: initial pwa support + icon
1 parent 906bea3 commit c624494

35 files changed

Lines changed: 505 additions & 73 deletions

.eslintrc.js

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,29 +1,29 @@
11
module.exports = {
22
root: true,
33
env: {
4-
node: true,
4+
node: true
55
},
66
extends: [
77
'plugin:vue/essential',
88
'@vue/standard',
9-
'@vue/typescript/recommended',
9+
'@vue/typescript/recommended'
1010
],
1111
parserOptions: {
12-
ecmaVersion: 2020,
12+
ecmaVersion: 2020
1313
},
1414
rules: {
1515
'no-console': process.env.NODE_ENV === 'production' ? 'warn' : 'off',
16-
'no-debugger': process.env.NODE_ENV === 'production' ? 'warn' : 'off',
16+
'no-debugger': process.env.NODE_ENV === 'production' ? 'warn' : 'off'
1717
},
1818
overrides: [
1919
{
2020
files: [
2121
'**/__tests__/*.{j,t}s?(x)',
22-
'**/tests/unit/**/*.spec.{j,t}s?(x)',
22+
'**/tests/unit/**/*.spec.{j,t}s?(x)'
2323
],
2424
env: {
25-
mocha: true,
26-
},
27-
},
28-
],
29-
};
25+
mocha: true
26+
}
27+
}
28+
]
29+
}

0 commit comments

Comments
 (0)