Skip to content

Commit 8275311

Browse files
committed
chore: add gitignore
1 parent 69ab8f9 commit 8275311

File tree

4 files changed

+100
-1012
lines changed

4 files changed

+100
-1012
lines changed

.all-contributorsrc

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
{
2+
"projectName": "blocklists",
3+
"projectOwner": "Aetherinox",
4+
"repoType": "github",
5+
"repoHost": "https://github.com",
6+
"files": ["README.md"],
7+
"imageSize": 40,
8+
"commit": true,
9+
"commitConvention": "angular",
10+
"contributors": [
11+
{
12+
"login": "Aetherinox",
13+
"name": "Aetherinox",
14+
"avatar_url": "https://avatars.githubusercontent.com/u/118329232?v=4",
15+
"profile": "https://gitlab.com/Aetherinox",
16+
"contributions": ["code", "projectManagement"]
17+
}
18+
],
19+
"contributorsPerLine": 7,
20+
"linkToUsage": false
21+
}
22+

.gitignore

Lines changed: 57 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,57 @@
1+
# #
2+
# Binaries
3+
# #
4+
5+
*.exe
6+
*.exe~
7+
*.dll
8+
*.so
9+
*.dylib
10+
11+
# #
12+
# Test binary
13+
# build with `go test -c`
14+
# #
15+
16+
*.test
17+
18+
# #
19+
# Output for go coverage tool, specifically when used with LiteIDE
20+
# #
21+
22+
*.out
23+
24+
# #
25+
# Dependency directories (remove the comment below to include it)
26+
# vendor/
27+
# #
28+
29+
# #
30+
# Go workspace file
31+
# #
32+
33+
go.work
34+
35+
# #
36+
# Mac
37+
# #
38+
39+
.DS_STORE
40+
41+
# #
42+
# Visual Studio Code
43+
# #
44+
45+
.vscode/
46+
47+
# #
48+
# Python Cache
49+
# #
50+
51+
__pycache__/
52+
53+
# #
54+
# logs
55+
# #
56+
57+
.log

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 Aetherinox
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)