Skip to content

Commit 872d24e

Browse files
authored
Merge pull request #887 from laboperator-gmbh/chore/eslint
upgrade to eslint 9
2 parents 8a45108 + bc0010a commit 872d24e

17 files changed

+901
-1070
lines changed

.eslintrc.js

Lines changed: 0 additions & 22 deletions
This file was deleted.

.github/dependabot.yml

Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -11,17 +11,6 @@ updates:
1111
- 'dependencies'
1212
- 'automerge'
1313
- "kodiak: merge.method = 'squash'"
14-
ignore:
15-
# Need to wait until every plugin support eslint 9
16-
#
17-
# It also dropped support for .eslintrc file in favor of flat config
18-
# Which means that we might need to completely rewrite/restructure our config
19-
#
20-
# ref: https://eslint.org/docs/latest/use/configure/migration-guide
21-
#
22-
- dependency-name: eslint
23-
versions:
24-
- '>= 9'
2514
groups:
2615
babel:
2716
patterns:
Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,10 @@
11
LGTM :+1:
22

3-
#### Review checklist according to [SOP-13][1] & [SOP-014][2]
3+
#### Review checklist according to SOP-13 & SOP-014
44

55
- [ ] Code is readable
66
- [ ] Test coverage is appropriate
77
- [ ] CHANGELOG entry is correct
88
- [ ] I manually tested the changes and checked that related features do not have any regressions
99
- [ ] I confirmed that all specifications linked to the issue are fulfilled
1010
- [ ] I checked newly added dependencies for their licenses
11-
12-
[1]: https://drive.google.com/file/d/1fD1ZcsBTywlMVTObTmNLrg55khrYMI_L/view
13-
[2]: https://drive.google.com/file/d/1uRnMtykgw1Gzo2nRp-TPnESgmYoEIfBf/view

.github/settings.yml

Lines changed: 0 additions & 17 deletions
This file was deleted.

.github/workflows/auto_author_assign.yml

Lines changed: 0 additions & 14 deletions
This file was deleted.

.github/workflows/dependabot_dedupe.yml

Lines changed: 1 addition & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -12,23 +12,4 @@ jobs:
1212
runs-on: ubuntu-latest
1313

1414
steps:
15-
- uses: actions/checkout@v3
16-
- uses: fregante/setup-git-user@v1
17-
18-
- name: Use Node.js
19-
uses: actions/setup-node@v3
20-
with:
21-
node-version: lts/*
22-
23-
- name: Dedupe if needed
24-
env:
25-
HUSKY: 0
26-
run: |
27-
corepack enable
28-
yarn dedupe
29-
30-
if [[ -n $(git status -s) ]]; then
31-
git add .
32-
git commit -m '[dependabot skip] Dedupe dependencies'
33-
git push
34-
fi
15+
- uses: laboperator-gmbh/github-actions/yarn-dedupe@v1

.github/workflows/linters.yml

Lines changed: 5 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -2,19 +2,17 @@ name: Linters
22

33
on:
44
pull_request:
5-
branches-ignore:
6-
- 'main'
5+
76
jobs:
87
eslint:
98
if: github.actor != 'dependabot[bot]'
109
runs-on: ubuntu-latest
1110
steps:
12-
- uses: actions/checkout@v1
13-
14-
- uses: actions/setup-node@v3
11+
- uses: actions/checkout@v6
12+
- run: corepack enable
13+
- uses: actions/setup-node@v5
1514
with:
16-
node-version-file: ".nvmrc"
17-
15+
cache: yarn
1816
- run: yarn install
1917
- name: eslint
2018
uses: reviewdog/action-eslint@v1
File renamed without changes.

dist/index.js

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/index.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)