forked from frizLabz-FFriZz/Pine-Script-v5-VS-Code
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.vscodeignore
75 lines (57 loc) · 1.55 KB
/
.vscodeignore
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
# Exclude the .vscode settings and test directories
.vscode/**
.vscode-test/**
# Exclude the TypeScript output directory
out/**
# Exclude the node_modules directory
node_modules/**
# Exclude the source directory where raw TypeScript files reside
src/**
# Exclude various configuration files and directories
.gitignore
.yarnrc
webpack.config.cjs
vsc-extension-quickstart.md
# Exclude TypeScript and ESLint configuration files from all directories
**/tsconfig.json
**/.eslintrc.json
# Exclude source map files from all directories
**/*.map
**/*.js.map
# Exclude TypeScript source files from all directories
**/*.ts
# Exclude the history directory if it's a folder used by an editor for local history
.history
# Additionally, you might want to exclude other files that are not needed in the packaged extension:
# For example, README files, or other documentation that is not user-facing
CONTRIBUTING.md
README_INSTALLATION.md
# If there are any specific build scripts or tools configurations that are not needed in the final package
build-scripts/
tools/
# If you have any CI configuration files or scripts
**/.travis.yml
**/appveyor.yml
**/.github/
**/.gitlab-ci.yml
# If you have any test files or test configuration files
**/*test*/
**/*spec*/
**/karma.conf.js
**/jest.config.js
# If you have any example files or directories
examples/
**/*.example
**/*.sample
# If you have any graphic assets that are not used directly by the extension
assets/images/design/
# Docs folder
docs/
typedoc.json
# prettier
.prettierrc
.prettierignore
# eslint
.eslintrc
# others
PineScripts/