Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: add dotenv-linter #8158

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
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
39 changes: 39 additions & 0 deletions packages/dotenv-linter/package.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
name: dotenv-linter
description: ⚡️Lightning-fast linter for .env files. Written in Rust 🦀
homepage: https://dotenv-linter.github.io/#/
licenses:
- MIT
languages:
- Dotenv
categories:
- Linter
source:
id: pkg:github/dotenv-linter/[email protected]
asset:
- target: darwin_arm64
file: dotenv-linter-darwin-arm64.tar.gz
bin: dotenv-linter
- target: darwin_x64
file: dotenv-linter-darwin-x86_64.tar.gz
bin: dotenv-linter
- target: linux_arm64_gnu
file: dotenv-linter-linux-aarch64.tar.gz
bin: dotenv-linter
- target: linux_arm64_musl
file: dotenv-linter-alpine-aarch64.tar.gz
bin: dotenv-linter
- target: linux_x64_gnu
file: dotenv-linter-linux-x86_64.tar.gz
bin: dotenv-linter
- target: linux_x64_musl
file: dotenv-linter-alpine-x86_64.tar.gz
bin: dotenv-linter
- target: win_arm64
file: dotenv-linter-win-aarch64.zip
bin: dotenv-linter.exe
- target: win_x64
file: dotenv-linter-win-x64.zip
bin: dotenv-linter.exe

bin:
dotenv-linter: "{{source.asset.bin}}"
Loading