Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
33 changes: 11 additions & 22 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,23 +1,12 @@
# Binaries for programs and plugins
*.exe
*.exe~
*.dll
*.so
*.dylib

# Test binary, built with `go test -c`
*.test

# Output of the go coverage tool, specifically when used with LiteIDE
*.out

# Dependency directories (remove the comment below to include it)
# vendor/

node_modules/
dist/


#Added by cargo

/target
.DS_Store
ck-cli
ck-cli-*
*.tar.gz
*.zip
checksums.txt
coverage/
.DS_Store
*.log
.env
.env.local
106 changes: 0 additions & 106 deletions .goreleaser.yml

This file was deleted.

16 changes: 16 additions & 0 deletions .oxlintrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
{
"$schema": "./node_modules/oxlint/configuration_schema.json",
"categories": {
"correctness": "error",
"suspicious": "warn",
"perf": "warn",
"style": "off"
},
"rules": {
"no-console": "off",
"no-unused-vars": "warn",
"no-await-in-loop": "off",
"unicorn/prefer-set-has": "off"
},
"ignorePatterns": ["node_modules", "dist", "tests/fixtures"]
}
3 changes: 3 additions & 0 deletions .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
".": "0.0.0"
}
Loading
Loading