Skip to content

Commit 8df58b9

Browse files
committed
feat: init
1 parent 91e0989 commit 8df58b9

18 files changed

+2957
-0
lines changed

.eslintignore

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
dist
2+
node_modules
3+
.output

.eslintrc

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
{
2+
"extends": "@webfansplz",
3+
"rules":{
4+
"no-console":0,
5+
"prefer-const":0,
6+
"quotes":[1,"double"],
7+
"no-prototype-builtins":0,
8+
"vue/no-multiple-template-root":0,
9+
"vue/no-parsing-error": ["error", {
10+
"invalid-first-character-of-tag-name": false
11+
}]
12+
}
13+
}

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
node_modules/

package.json

+32
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
{
2+
"name": "vuejs-challenges",
3+
"version": "1.0.0",
4+
"description": "",
5+
"keywords": [],
6+
"license": "ISC",
7+
"repository": {
8+
"type": "git",
9+
"url": "git+https://github.com/webfansplz/vuejs-challenges.git"
10+
},
11+
"author": "",
12+
"main": "index.js",
13+
"scripts": {
14+
"build": "tsx ./scripts/build.ts"
15+
},
16+
"bugs": {
17+
"url": "https://github.com/webfansplz/vuejs-challenges/issues"
18+
},
19+
"homepage": "https://github.com/webfansplz/vuejs-challenges#readme",
20+
"devDependencies": {
21+
"@types/fs-extra": "^9.0.13",
22+
"@types/js-yaml": "^4.0.5",
23+
"@types/node": "^18.0.0",
24+
"@webfansplz/eslint-config": "^0.1.0",
25+
"eslint": "^8.18.0",
26+
"fast-glob": "^3.2.11",
27+
"fs-extra": "^10.1.0",
28+
"js-yaml": "^4.1.0",
29+
"tsx": "^3.6.0",
30+
"typescript": "^4.7.4"
31+
}
32+
}

0 commit comments

Comments
 (0)