Skip to content

Commit

Permalink
feat: add rest of v0.8.0 (#153)
Browse files Browse the repository at this point in the history
  • Loading branch information
pancsta authored Nov 13, 2024
1 parent c03c193 commit b6e4aba
Show file tree
Hide file tree
Showing 73 changed files with 5,393 additions and 2,536 deletions.
34 changes: 34 additions & 0 deletions .dockerignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
assets*

# Ignore the .git directory
.git

# Ignore the node_modules directory
node_modules

# Ignore temporary files
*.log
*.tmp

# Ignore build output directories
dist
build

# Ignore Dockerfile and docker-compose.yml
Dockerfile
docker-compose.yml

# Ignore Go build artifacts
*.exe
*.exe~
*.dll
*.so
*.dylib
*.test
*.out

# Ignore IDE/editor specific files
.vscode
.idea
*.swp
*~
4 changes: 3 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
.DS_Store

# Environment variable files
/*.env
.env

# PEM files
*.pem
Expand Down Expand Up @@ -63,3 +63,5 @@ _py
/*.png
/*.prof
/am-dbg-ssh
/built
/log.md
3 changes: 3 additions & 0 deletions .gitmodules
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
[submodule "assets"]
path = assets
url = https://github.com/pancsta/assets.git
9 changes: 1 addition & 8 deletions .golangci.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
run:
skip-files:
exclude-files:
- "examples/.*"

linters:
Expand All @@ -10,10 +10,3 @@ linters-settings:
lll:
line-length: 80
tab-width: 2

# https://github.com/golangci/golangci-lint/issues/2912
issues:
exclude-rules:
- path: /
linters:
- typecheck
Loading

0 comments on commit b6e4aba

Please sign in to comment.