Skip to content

Commit

Permalink
Release 0.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
totakke committed Mar 28, 2023
1 parent e096366 commit 7cf2616
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 12 deletions.
10 changes: 9 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Changelog

## [0.4.0] - 2023-03-28

### Added

- Add markdownlint linter. ([7da0a60](https://github.com/totakke/bosslint/commit/7da0a60))
- Add sql-lint linter. ([ece062d](https://github.com/totakke/bosslint/commit/ece062d))

## [0.3.0] - 2021-09-26

### Added
Expand Down Expand Up @@ -34,7 +41,8 @@

First release.

[Unreleased]: https://github.com/totakke/bosslint/compare/0.3.0...HEAD
[Unreleased]: https://github.com/totakke/bosslint/compare/0.4.0...HEAD
[0.4.0]: https://github.com/totakke/bosslint/compare/0.3.0...0.4.0
[0.3.0]: https://github.com/totakke/bosslint/compare/0.2.1...0.3.0
[0.2.1]: https://github.com/totakke/bosslint/compare/0.2.0...0.2.1
[0.2.0]: https://github.com/totakke/bosslint/compare/0.1.0...0.2.0
Expand Down
23 changes: 13 additions & 10 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Bosslint

[![build](https://github.com/totakke/bosslint/actions/workflows/build.yml/badge.svg)](https://github.com/totakke/bosslint/actions/workflows/build.yml)
[![release](https://img.shields.io/badge/release-v0.3.0-blue.svg)](https://github.com/totakke/bosslint/releases/tag/0.3.0)
[![release](https://img.shields.io/badge/release-v0.4.0-blue.svg)](https://github.com/totakke/bosslint/releases/tag/0.3.0)

Meta linter for easily checking

Expand All @@ -12,18 +12,19 @@ Meta linter for easily checking
## Installation

### Mac OS
### OS & arch

```sh
curl -sSL https://github.com/totakke/bosslint/releases/download/0.3.0/bosslint_macos -o bosslint
chmod +x bosslint
mv bosslint [/your/PATH/dir/]
```
- `os`
- Mac OS - `macos`
- Linux - `linux`
- `arch`
- amd64 - `amd64`
- aarch64 - `aarch64`

### Linux
### Download & install

```sh
curl -sSL https://github.com/totakke/bosslint/releases/download/0.3.0/bosslint_linux -o bosslint
curl -sSL https://github.com/totakke/bosslint/releases/download/0.4.0/bosslint_[os]_[arch] -o bosslint
chmod +x bosslint
mv bosslint [/your/PATH/dir/]
```
Expand Down Expand Up @@ -91,14 +92,16 @@ Look at the [configuration example](example/config.edn).
- [hadolint](https://github.com/hadolint/hadolint)
- [jsonlint](https://github.com/zaach/jsonlint)
- [kubeval](https://www.kubeval.com/)
- [markdownlint](https://github.com/igorshubovych/markdownlint-cli)
- [sql-lint](https://github.com/joereynolds/sql-lint)
- [stylelint](https://stylelint.io/)
- [SwiftLint](https://realm.github.io/SwiftLint/)
- [tflint](https://github.com/terraform-linters/tflint)
- [yamllint](https://yamllint.readthedocs.io/)

## License

Copyright © 2020-2022 [Toshiki Takeuchi](https://totakke.net/)
Copyright © 2020 [Toshiki Takeuchi](https://totakke.net/)

This program and the accompanying materials are made available under the
terms of the Eclipse Public License 2.0 which is available at
Expand Down
2 changes: 1 addition & 1 deletion src/bosslint/main.clj
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
[io.aviso.ansi :as ansi])
(:gen-class))

(def version "0.4.0-SNAPSHOT")
(def version "0.4.0")

(defn- list-linters []
(sort-by linter/name (descendants :bosslint/linter)))
Expand Down

0 comments on commit 7cf2616

Please sign in to comment.