├── .github ├── FUNDING.yml ├── dependabot.yml └── workflows │ ├── ci.yml │ ├── depup.yml │ ├── release.yml │ └── reviewdog.yml ├── LICENSE ├── README.md ├── action.yml ├── examples ├── example-github-code-suggestions.png ├── example-github-pr-check.png └── example-github-pr-review.png ├── script.sh └── test └── data └── .env /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotenv-linter/action-dotenv-linter/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotenv-linter/action-dotenv-linter/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotenv-linter/action-dotenv-linter/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/depup.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotenv-linter/action-dotenv-linter/HEAD/.github/workflows/depup.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotenv-linter/action-dotenv-linter/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.github/workflows/reviewdog.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotenv-linter/action-dotenv-linter/HEAD/.github/workflows/reviewdog.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotenv-linter/action-dotenv-linter/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotenv-linter/action-dotenv-linter/HEAD/README.md -------------------------------------------------------------------------------- /action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotenv-linter/action-dotenv-linter/HEAD/action.yml -------------------------------------------------------------------------------- /examples/example-github-code-suggestions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotenv-linter/action-dotenv-linter/HEAD/examples/example-github-code-suggestions.png -------------------------------------------------------------------------------- /examples/example-github-pr-check.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotenv-linter/action-dotenv-linter/HEAD/examples/example-github-pr-check.png -------------------------------------------------------------------------------- /examples/example-github-pr-review.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotenv-linter/action-dotenv-linter/HEAD/examples/example-github-pr-review.png -------------------------------------------------------------------------------- /script.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotenv-linter/action-dotenv-linter/HEAD/script.sh -------------------------------------------------------------------------------- /test/data/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotenv-linter/action-dotenv-linter/HEAD/test/data/.env --------------------------------------------------------------------------------