Skip to content

Commit cc378e3

Browse files
committed
fix: add .gitignore file
--- type: pre_commit_static_analysis_report description: Results of running static analysis checks when committing changes. report: - task: lint_filenames status: passed - task: lint_editorconfig status: passed - task: lint_markdown status: na - task: lint_package_json status: na - task: lint_repl_help status: na - task: lint_javascript_src status: na - task: lint_javascript_cli status: na - task: lint_javascript_examples status: na - task: lint_javascript_tests status: na - task: lint_javascript_benchmarks status: na - task: lint_python status: na - task: lint_r status: na - task: lint_c_src status: na - task: lint_c_examples status: na - task: lint_c_benchmarks status: na - task: lint_c_tests_fixtures status: na - task: lint_shell status: na - task: lint_typescript_declarations status: na - task: lint_typescript_tests status: na - task: lint_license_headers status: passed ---
1 parent 6a7f1a6 commit cc378e3

File tree

1 file changed

+194
-1
lines changed

1 file changed

+194
-1
lines changed

.gitignore

Lines changed: 194 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,194 @@
1-
node_modules
1+
#/
2+
# @license Apache-2.0
3+
#
4+
# Copyright (c) 2017 The Stdlib Authors.
5+
#
6+
# Licensed under the Apache License, Version 2.0 (the "License");
7+
# you may not use this file except in compliance with the License.
8+
# You may obtain a copy of the License at
9+
#
10+
# http://www.apache.org/licenses/LICENSE-2.0
11+
#
12+
# Unless required by applicable law or agreed to in writing, software
13+
# distributed under the License is distributed on an "AS IS" BASIS,
14+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15+
# See the License for the specific language governing permissions and
16+
# limitations under the License.
17+
#/
18+
19+
# Files #
20+
#########
21+
package.json.copy
22+
.stdlibrc
23+
24+
# Directories #
25+
###############
26+
build/
27+
downloads/
28+
reports/
29+
tmp/
30+
31+
# Compiled source #
32+
###################
33+
*.com
34+
*.class
35+
*.dll
36+
*.o
37+
*.so
38+
*.slo
39+
*.lo
40+
*.obj
41+
*.dylib
42+
*.lai
43+
*.la
44+
*.a
45+
*.lib
46+
*.ko
47+
*.elf
48+
*.node
49+
50+
# Precompiled headers #
51+
#######################
52+
*.gch
53+
*.pch
54+
55+
# Executables #
56+
###############
57+
*.exe
58+
*.out
59+
*.app
60+
61+
# Packages #
62+
############
63+
# It is better to unpack these files and commit the raw source
64+
# git has its own built in compression methods
65+
*.7z
66+
*.dmg
67+
*.gz
68+
*.iso
69+
*.jar
70+
*.rar
71+
*.tar
72+
*.zip
73+
74+
# Logs and databases #
75+
######################
76+
*.log
77+
*.sql
78+
*.sqlite
79+
80+
# OS generated files #
81+
######################
82+
.DS_Store
83+
.DS_Store?
84+
._*
85+
.Spotlight-V100
86+
.Trashes
87+
Icon?
88+
ehthumbs.db
89+
Thumbs.db
90+
Desktop.ini
91+
92+
# Temporary files #
93+
###################
94+
*~
95+
96+
# Node.js #
97+
###########
98+
/node_modules/
99+
lib/node_modules/**/node_modules/
100+
docs/**/node_modules/
101+
pids
102+
*.pid
103+
*.seed
104+
yarn.lock
105+
package-lock.json
106+
107+
# Typescript #
108+
##############
109+
*.tsbuildinfo
110+
lib/node_modules/**/tsconfig.json
111+
lib/node_modules/**/tslint.json
112+
113+
# Matlab #
114+
##########
115+
*.asv
116+
*.mex*
117+
118+
# Fortran #
119+
###########
120+
*.mod
121+
122+
# R #
123+
#####
124+
.Rhistory
125+
.Rapp.history
126+
.Rproj.user/
127+
128+
# Python #
129+
##########
130+
__pycache__/
131+
*.py[cod]
132+
*$py.class
133+
*.egg-info/
134+
135+
# TeX #
136+
#######
137+
*.aux
138+
*.lof
139+
*.log
140+
*.lot
141+
*.fls
142+
*.out
143+
*.toc
144+
*.dvi
145+
*-converted-to.*
146+
*.bbl
147+
*.bcf
148+
*.blg
149+
*-blx.aux
150+
*-blx.bib
151+
*.brf
152+
*.run.xml
153+
*.fdb_latexmk
154+
*.synctex
155+
*.synctex.gz
156+
*.synctex.gz(busy)
157+
*.pdfsync
158+
*.alg
159+
*.loa
160+
acs-*.bib
161+
*.thm
162+
*.nav
163+
*.snm
164+
*.vrb
165+
*.acn
166+
*.acr
167+
*.glg
168+
*.glo
169+
*.gls
170+
*-concordance.tex
171+
*.tikz
172+
*-tikzDictionary
173+
*.idx
174+
*.ilg
175+
*.ind
176+
*.ist
177+
178+
# Visual Studio #
179+
#################
180+
.vscode/
181+
jsconfig.json
182+
183+
# Sublime Text #
184+
################
185+
*.sublime-workspace
186+
*.sublime-project
187+
188+
# Other editor files #
189+
######################
190+
.idea/
191+
192+
# Cursor #
193+
##########
194+
.cursorignore

0 commit comments

Comments
 (0)