Skip to content

Commit 46bee9c

Browse files
restore eslint
1 parent d7ad448 commit 46bee9c

2 files changed

Lines changed: 2 additions & 12 deletions

File tree

.github/workflows/pull_request.yml

Lines changed: 1 addition & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -14,17 +14,8 @@ jobs:
1414
node-version: "22"
1515
- name: Install Dependencies
1616
run: npm ci
17-
# env:
18-
# CI: TRUE
19-
- name: Test Code Linting
17+
- name: Run Linter
2018
run: npm run lint
21-
# - name: Save Code Linting Report JSON
22-
# run: npm run lint -- --output-file reports/eslint_report.json --format json
23-
# continue-on-error: true
24-
# - name: Add Linter Annotations
25-
# uses: ataylorme/eslint-annotate-action@v3
26-
# with:
27-
# report-json: "reports/eslint_report.json"
2819

2920
unit-tests:
3021
runs-on: ubuntu-latest
@@ -50,4 +41,3 @@ jobs:
5041
name: Test report
5142
path: reports/jest-junit.xml
5243
reporter: jest-junit
53-
fail-on-error: false

eslint.config.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ export default defineConfig(
1515
}], //to remove
1616
'@typescript-eslint/explicit-function-return-type': 'off', // to remove
1717
'@typescript-eslint/explicit-module-boundary-types': 'off', // to remove
18-
//'@typescript-eslint/no-explicit-any': 'off', // to remove
18+
'@typescript-eslint/no-explicit-any': 'off', // to remove
1919
'@typescript-eslint/no-wrapper-object-types': 'off', // to remove
2020
'@typescript-eslint/no-unsafe-function-type': 'off', // to remove
2121
},

0 commit comments

Comments
 (0)