Skip to content

Commit 057b862

Browse files
committed
rename erblint to new erb_lint
1 parent 382f3f8 commit 057b862

File tree

4 files changed

+3
-3
lines changed

4 files changed

+3
-3
lines changed

.erb-lint.yml .erb_lint.yml

File renamed without changes.

.github/workflows/push.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636
- name: Lint Ruby code
3737
run: bundle exec rake rubocop
3838
- name: Lint ERB templates
39-
run: bundle exec erblint --lint-all
39+
run: bundle exec erb_lint --lint-all
4040
- name: Lint Typescript code
4141
run: yarn run lint:ts
4242
i18n:

.husky/pre-push

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,5 @@
22
. "$(dirname "$0")/_/husky.sh"
33

44
bundle exec rake rubocop:autocorrect
5-
bundle exec erblint --lint-all
5+
bundle exec erb_lint --lint-all
66
yarn run lint:ts

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ We use [Rubocop](https://rubocop.org/) to monitor adherence to coding standards
6161

6262
You can run the linter with `bundle exec rubocop`.
6363

64-
We also have linters for ERB and Typescript files. You can run these with: `bundle exec erblint --lint-all` and `yarn run lint:ts` respectively.
64+
We also have linters for ERB and Typescript files. You can run these with: `bundle exec erb_lint --lint-all` and `yarn run lint:ts` respectively.
6565

6666
Code linting is automatically performed by our GitHub Actions test runners, but if you set up [Husky](https://typicode.github.io/husky/get-started.html), it will also execute as a pre-commit hook.
6767

0 commit comments

Comments
 (0)