-
Notifications
You must be signed in to change notification settings - Fork 9
/
.gitignore
executable file
·108 lines (83 loc) · 1.78 KB
/
.gitignore
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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
# Logs
logs
*.log
npm-debug.log*
# Runtime data
pids
*.pid
*.seed
# Directory for instrumented libs generated by jscoverage/JSCover
lib-cov
# Coverage directory used by tools like istanbul
coverage
# Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files)
.grunt
# node-waf configuration
.lock-wscript
# Compiled binary addons (http://nodejs.org/api/addons.html)
build/Release
tmp/*
.vscode
# See http://help.github.com/ignore-files/ for more about ignoring files.
# compiled output
/dist
/tmp
/out-tsc
# Dependency directory
# https://docs.npmjs.com/misc/faq#should-i-check-my-node-modules-folder-into-git
/node_modules
/package-lock.json
# IDEs and editors
/.idea
.project
.classpath
.c9/
*.launch
.settings/
*.sublime-workspace
# IDE - VSCode
.vscode/*
!.vscode/settings.json
!.vscode/tasks.json
!.vscode/launch.json
!.vscode/extensions.json
# misc
/.sass-cache
/connect.lock
/coverage
/libpeerconnection.log
npm-debug.log
yarn-error.log
testem.log
/typings
# System Files
.DS_Store
Thumbs.db
# python项目的.gitignore 参考 https://github.com/github/gitignore/blob/main/Python.gitignore 参考
# Byte-compiled / optimized / DLL files
__pycache__/
*.py[cod]
*$py.class
# 嵌套层级的npm依赖
**/node_modules
**/package-lock.json
# 自行本地的测试用脚本文件夹
/test
**/self-utils
**/self-configs
# 干脆以self命名的都不加入管理
**/self*
**/_self*
# tesseract.js 生成的数据文件
*.traineddata
# 各种运行或者测试结果输出的文件夹,一般是自动生成的
**/output
# 以input-test结尾的文件夹,就默认当做测试源,不追踪
**/input
# 一般属于编译输出的内容
**/build
# 在整理阶段的各种常见问题
**/simple-answer
# 使用pandoc输出的本地的pdf
**/test-pdf
_tools/yarn.lock