Skip to content

Commit 983667d

Browse files
committed
init
0 parents  commit 983667d

12 files changed

+4308
-0
lines changed

.eslintrc.json

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
{
2+
"extends": "zardoy",
3+
"rules": {}
4+
}

.gitignore

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
# Learn more about paths on https://github.com/github/gitignore/blob/master/Node.gitignore
2+
3+
node_modules
4+
5+
generators
6+
build
7+
dist
8+
out
9+
.next
10+
.nuxt
11+
.cache
12+
13+
coverage
14+
*.lcov
15+
.nyc_output
16+
17+
logs
18+
*.log
19+
experiment-*
20+
.DS_Store
21+
.env.local
22+
.env.*.local
23+
24+
.vscode-test

package.json

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
{
2+
"name": "typescript-vscode-plugin",
3+
"displayName": "Typescript Vscode Plugin",
4+
"version": "1.0.0",
5+
"license": "MIT",
6+
"contributes": {},
7+
"categories": [
8+
"Other"
9+
],
10+
"publisher": "d",
11+
"private": true,
12+
"scripts": {
13+
"start": "vscode-framework start",
14+
"watch-plugin": "tsc -p typescript -w",
15+
"lint": "eslint src/**"
16+
},
17+
"devDependencies": {
18+
"@types/node": "^16.11.6",
19+
"@types/vscode": "^1.61.0",
20+
"@zardoy/tsconfig": "^1.2.2",
21+
"my-typescript-plugin-id": "workspace:*",
22+
"typescript": "^4.4.4"
23+
},
24+
"dependencies": {
25+
"eslint": "^8.7.0",
26+
"eslint-config-zardoy": "^0.2.8",
27+
"vscode-framework": "^0.0.17"
28+
}
29+
}

0 commit comments

Comments
 (0)