Skip to content

Commit 9e8546f

Browse files
authored
Merge pull request #17 from 142vip/feat/test
feat: 新增一些配置,更新文档
2 parents e4c74db + 9e2f9bf commit 9e8546f

File tree

220 files changed

+3698
-3894
lines changed

Some content is hidden

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

220 files changed

+3698
-3894
lines changed

.eslintignore

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
node_modules
2+
manuscript
3+
.github
4+
.idea
5+
.dockerignore
6+
.gitignore
7+

.eslintrc.js

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
module.exports = {
2+
env: {
3+
browser: true,
4+
es2021: true
5+
},
6+
extends: [
7+
'plugin:vue/essential',
8+
'standard'
9+
],
10+
parserOptions: {
11+
ecmaVersion: 12,
12+
parser: '@typescript-eslint/parser',
13+
sourceType: 'module'
14+
},
15+
plugins: [
16+
'vue',
17+
'@typescript-eslint'
18+
],
19+
rules: {
20+
'no-unused-vars': 0
21+
}
22+
}

.npmrc

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,4 @@
11
shamefully-hoist=true
2-
registry=https://registry.npmmirror.com
2+
registry=https://registry.npmmirror.com
3+
## 锁定node版本
4+
engine-strict = true

0 commit comments

Comments
 (0)