Skip to content
Merged
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
2 changes: 1 addition & 1 deletion .github/rel_brew.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,4 +40,4 @@ release:
github:
owner: tyhal
name: crie
replace_existing_artifacts: true
replace_existing_artifacts: true
2 changes: 1 addition & 1 deletion .github/rel_go_macos-latest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,4 +21,4 @@ release:
github:
owner: tyhal
name: crie
replace_existing_artifacts: true
replace_existing_artifacts: true
2 changes: 1 addition & 1 deletion .github/rel_go_ubuntu-latest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,4 +21,4 @@ release:
github:
owner: tyhal
name: crie
replace_existing_artifacts: true
replace_existing_artifacts: true
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ macos-latest, ubuntu-latest ]
os: [macos-latest, ubuntu-latest]
steps:
- uses: actions/checkout@v5
with:
Expand Down Expand Up @@ -41,4 +41,4 @@ jobs:
# goreleaser build --skip validate --clean --config .github/rel_homebrew.yml
env:
HOMEBREW_TAP_GITHUB_TOKEN: ${{ secrets.HOMEBREW_TAP_GITHUB_TOKEN }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
6 changes: 6 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -107,3 +107,9 @@ fabric.properties
# End of https://www.gitignore.io/api/go,intellij

dist/


*.cast
.terraform.d/
.cache
.config
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@
crie.
</h1>
<p align="center">
Universal meta-linter using containerized execution
universal meta-linter using containerized execution
</p>
<p align="center">
<img src="https://raw.githubusercontent.com/tyhal/crie/main/doc/demo.svg?sanitize=true" width="572" alt="crie cli demo">
<img src="doc/demo.svg" width="580" alt="crie cli demo">
</p>

## Features
Expand Down
42,644 changes: 42,643 additions & 1 deletion doc/demo.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
5 changes: 5 additions & 0 deletions doc/demo.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
crie \thelp
crie l\t\t\t
crie non
crie chk --passes
crie fmt --lang python --passes
12 changes: 6 additions & 6 deletions script/download
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,11 @@ TARGET="$4"
tarname="crie_${VERSION}_${GOOS}_${GOARCH}.tar.gz"
mkdir -p "dist/tar"
curl \
--fail \
--location \
--silent \
--show-error \
-o "dist/tar/$tarname" \
"https://github.com/tyhal/crie/releases/download/v${VERSION}/${tarname}"
--fail \
--location \
--silent \
--show-error \
-o "dist/tar/$tarname" \
"https://github.com/tyhal/crie/releases/download/v${VERSION}/${tarname}"

tar -xzf "dist/tar/$tarname" -C "dist/crie_$TARGET"