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

chore(deps-dev): bump eslint-plugin-unicorn from 53.0.0 to 57.0.0 #1309

Closed
Closed
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
682 changes: 261 additions & 421 deletions package-lock.json
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -23,7 +23,7 @@
"eslint-plugin-promise": "^6.2.0",
"eslint-plugin-regexp": "^2.6.0",
"eslint-plugin-switch-case": "^1.1.2",
"eslint-plugin-unicorn": "^53.0.0",
"eslint-plugin-unicorn": "^57.0.0",
"htmlhint": "^1.1.4",
"husky": "^9.0.11",
"lint-staged": "^15.2.7",

Unchanged files with check annotations Beta

# base #
# —————————————————————————————————————————————— #
FROM ubuntu:jammy-20240530 as base

Check warning on line 5 in Dockerfile

GitHub Actions / CI

The 'as' keyword should match the case of the 'from' keyword

FromAsCasing: 'as' and 'FROM' keywords' casing do not match More info: https://docs.docker.com/go/dockerfile/rule/from-as-casing/
USER root
# ci #
# —————————————————————————————————————————————— #
FROM koalaman/shellcheck:v0.10.0 as shellcheck

Check warning on line 58 in Dockerfile

GitHub Actions / CI

The 'as' keyword should match the case of the 'from' keyword

FromAsCasing: 'as' and 'FROM' keywords' casing do not match More info: https://docs.docker.com/go/dockerfile/rule/from-as-casing/
FROM mvdan/shfmt:v3.10.0 as shfmt

Check warning on line 59 in Dockerfile

GitHub Actions / CI

The 'as' keyword should match the case of the 'from' keyword

FromAsCasing: 'as' and 'FROM' keywords' casing do not match More info: https://docs.docker.com/go/dockerfile/rule/from-as-casing/
FROM hadolint/hadolint:v2.12.0 as hadolint

Check warning on line 60 in Dockerfile

GitHub Actions / CI

The 'as' keyword should match the case of the 'from' keyword

FromAsCasing: 'as' and 'FROM' keywords' casing do not match More info: https://docs.docker.com/go/dockerfile/rule/from-as-casing/
FROM node:18.20.6-bullseye as node

Check warning on line 61 in Dockerfile

GitHub Actions / CI

The 'as' keyword should match the case of the 'from' keyword

FromAsCasing: 'as' and 'FROM' keywords' casing do not match More info: https://docs.docker.com/go/dockerfile/rule/from-as-casing/
FROM hexpm/elixir:1.16.3-erlang-26.2.5.1-ubuntu-jammy-20240530 as elixir

Check warning on line 63 in Dockerfile

GitHub Actions / CI

The 'as' keyword should match the case of the 'from' keyword

FromAsCasing: 'as' and 'FROM' keywords' casing do not match More info: https://docs.docker.com/go/dockerfile/rule/from-as-casing/
# Install hex and rebar
RUN set -e \
&& mix local.hex --force \
&& mix local.rebar --force
FROM base as ci

Check warning on line 69 in Dockerfile

GitHub Actions / CI

The 'as' keyword should match the case of the 'from' keyword

FromAsCasing: 'as' and 'FROM' keywords' casing do not match More info: https://docs.docker.com/go/dockerfile/rule/from-as-casing/
USER root
# dev #
# —————————————————————————————————————————————— #
FROM ci as dev

Check warning on line 102 in Dockerfile

GitHub Actions / CI

The 'as' keyword should match the case of the 'from' keyword

FromAsCasing: 'as' and 'FROM' keywords' casing do not match More info: https://docs.docker.com/go/dockerfile/rule/from-as-casing/
USER root
# vscode #
# —————————————————————————————————————————————— #
FROM dev as vscode

Check warning on line 129 in Dockerfile

GitHub Actions / CI

The 'as' keyword should match the case of the 'from' keyword

FromAsCasing: 'as' and 'FROM' keywords' casing do not match More info: https://docs.docker.com/go/dockerfile/rule/from-as-casing/
WORKDIR ${HOME}