Skip to content

Commit

Permalink
feat: init
Browse files Browse the repository at this point in the history
  • Loading branch information
webfansplz committed Jun 25, 2022
1 parent 91e0989 commit 8df58b9
Show file tree
Hide file tree
Showing 18 changed files with 2,957 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .eslintignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
dist
node_modules
.output
13 changes: 13 additions & 0 deletions .eslintrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
{
"extends": "@webfansplz",
"rules":{
"no-console":0,
"prefer-const":0,
"quotes":[1,"double"],
"no-prototype-builtins":0,
"vue/no-multiple-template-root":0,
"vue/no-parsing-error": ["error", {
"invalid-first-character-of-tag-name": false
}]
}
}
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
node_modules/
32 changes: 32 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
{
"name": "vuejs-challenges",
"version": "1.0.0",
"description": "",
"keywords": [],
"license": "ISC",
"repository": {
"type": "git",
"url": "git+https://github.com/webfansplz/vuejs-challenges.git"
},
"author": "",
"main": "index.js",
"scripts": {
"build": "tsx ./scripts/build.ts"
},
"bugs": {
"url": "https://github.com/webfansplz/vuejs-challenges/issues"
},
"homepage": "https://github.com/webfansplz/vuejs-challenges#readme",
"devDependencies": {
"@types/fs-extra": "^9.0.13",
"@types/js-yaml": "^4.0.5",
"@types/node": "^18.0.0",
"@webfansplz/eslint-config": "^0.1.0",
"eslint": "^8.18.0",
"fast-glob": "^3.2.11",
"fs-extra": "^10.1.0",
"js-yaml": "^4.1.0",
"tsx": "^3.6.0",
"typescript": "^4.7.4"
}
}
Loading

0 comments on commit 8df58b9

Please sign in to comment.