Skip to content

Commit ed0b7da

Browse files
committed
version 1 completed version 2 updated
0 parents  commit ed0b7da

File tree

15 files changed

+1118
-0
lines changed

15 files changed

+1118
-0
lines changed

.gitignore

Lines changed: 120 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,120 @@
1+
# Dependencies
2+
node_modules/
3+
npm-debug.log*
4+
yarn-debug.log*
5+
yarn-error.log*
6+
7+
# Build outputs
8+
out/
9+
dist/
10+
*.vsix
11+
*.vsix.map
12+
13+
# TypeScript
14+
*.tsbuildinfo
15+
16+
# VS Code
17+
.vscode-test/
18+
.vscode-test-results.xml
19+
20+
# OS generated files
21+
.DS_Store
22+
.DS_Store?
23+
._*
24+
.Spotlight-V100
25+
.Trashes
26+
ehthumbs.db
27+
Thumbs.db
28+
29+
# Logs
30+
logs
31+
*.log
32+
33+
# Runtime data
34+
pids
35+
*.pid
36+
*.seed
37+
*.pid.lock
38+
39+
# Coverage directory used by tools like istanbul
40+
coverage/
41+
*.lcov
42+
43+
# nyc test coverage
44+
.nyc_output
45+
46+
# Dependency directories
47+
jspm_packages/
48+
49+
# Optional npm cache directory
50+
.npm
51+
52+
# Optional eslint cache
53+
.eslintcache
54+
55+
# Microbundle cache
56+
.rpt2_cache/
57+
.rts2_cache_cjs/
58+
.rts2_cache_es/
59+
.rts2_cache_umd/
60+
61+
# Optional REPL history
62+
.node_repl_history
63+
64+
# Output of 'npm pack'
65+
*.tgz
66+
67+
# Yarn Integrity file
68+
.yarn-integrity
69+
70+
# dotenv environment variables file
71+
.env
72+
.env.test
73+
74+
# parcel-bundler cache (https://parceljs.org/)
75+
.cache
76+
.parcel-cache
77+
78+
# next.js build output
79+
.next
80+
81+
# nuxt.js build output
82+
.nuxt
83+
84+
# vuepress build output
85+
.vuepress/dist
86+
87+
# Serverless directories
88+
.serverless
89+
90+
# FuseBox cache
91+
.fusebox/
92+
93+
# DynamoDB Local files
94+
.dynamodb/
95+
96+
# TernJS port file
97+
.tern-port
98+
99+
# Stores VSCode versions used for testing VSCode extensions
100+
.vscode-test/
101+
102+
# Temporary files
103+
*.tmp
104+
*.temp
105+
*.swp
106+
*.swo
107+
*~
108+
109+
# IDE files
110+
.idea/
111+
.vscode/settings.json
112+
.vscode/launch.json
113+
.vscode/tasks.json
114+
.vscode/extensions.json
115+
116+
# Keep VS Code config but ignore user-specific settings
117+
!.vscode/launch.json
118+
!.vscode/tasks.json
119+
!.vscode/extensions.json
120+
!.vscode/*.json

.vscode/launch.json

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
{
2+
"version": "0.2.0",
3+
"configurations": [
4+
{
5+
"name": "Run Extension",
6+
"type": "extensionHost",
7+
"request": "launch",
8+
"args": [
9+
"--extensionDevelopmentPath=${workspaceFolder}"
10+
],
11+
"outFiles": [
12+
"${workspaceFolder}/out/**/*.js"
13+
]
14+
},
15+
{
16+
"name": "Extension Tests",
17+
"type": "extensionHost",
18+
"request": "launch",
19+
"args": [
20+
"--extensionDevelopmentPath=${workspaceFolder}",
21+
"--extensionTestsPath=${workspaceFolder}/out/test/suite/index"
22+
],
23+
"outFiles": [
24+
"${workspaceFolder}/out/test/**/*.js"
25+
]
26+
}
27+
]
28+
}

.vscode/tasks.json

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
{
2+
"version": "2.0.0",
3+
"tasks": [
4+
{
5+
"type": "npm",
6+
"script": "compile",
7+
"group": "build",
8+
"presentation": {
9+
"panel": "shared",
10+
"reveal": "silent"
11+
},
12+
"problemMatcher": "$tsc"
13+
},
14+
{
15+
"type": "npm",
16+
"script": "watch",
17+
"group": "build",
18+
"presentation": {
19+
"panel": "shared",
20+
"reveal": "never"
21+
},
22+
"isBackground": true,
23+
"problemMatcher": "$tsc-watch"
24+
}
25+
]
26+
}

LICENSE

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
MIT License
2+
3+
Copyright (c) 2024 SimplePyDocs Contributors
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

0 commit comments

Comments
 (0)