Skip to content

Commit a0a8205

Browse files
committed
workspace:
[INIT] example
1 parent 260ebb4 commit a0a8205

24 files changed

+15602
-2932
lines changed
File renamed without changes.

example/.eslintrc.json

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
{
2+
"env": {
3+
"node": true,
4+
"browser": true,
5+
"es2021": true
6+
},
7+
"extends": [
8+
"eslint:recommended",
9+
"plugin:vue/essential"
10+
],
11+
"parserOptions": {
12+
"ecmaVersion": 8,
13+
"sourceType": "module"
14+
},
15+
"plugins": [
16+
"vue"
17+
],
18+
"rules": {
19+
"indent": [
20+
"error",
21+
"tab"
22+
],
23+
"linebreak-style": [
24+
"error",
25+
"windows"
26+
],
27+
"quotes": [
28+
"error",
29+
"single"
30+
],
31+
"semi": [
32+
"error",
33+
"always"
34+
]
35+
}
36+
}

example/jsconfig.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
{}

0 commit comments

Comments
 (0)