Skip to content

Commit 6d2766a

Browse files
committed
debugging+update pkg lock json
1 parent a31e804 commit 6d2766a

File tree

3 files changed

+552
-547
lines changed

3 files changed

+552
-547
lines changed

.github/actions/lint/action.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,18 @@ runs:
1515
node-version: ${{ inputs.node_version }}
1616
cache: 'npm'
1717

18+
- name: Clean npm cache (force fresh install)
19+
run: npm cache clean --force
20+
shell: bash
21+
1822
- name: Install Node dependencies
1923
run: npm ci --prefer-offline
2024
shell: bash
2125

26+
- name: Verify installed dependencies
27+
run: npm list
28+
shell: bash
29+
2230
- name: Run `gulp prePublishNonBundle`
2331
run: npx gulp prePublishNonBundle
2432
shell: bash

eslint.config.mjs

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -127,11 +127,8 @@ export default [
127127

128128
// Duplicates and overrides (TypeScript handles these)
129129
'no-dupe-class-members': 'off',
130-
'@typescript-eslint/no-dupe-class-members': 'error',
131130
'no-redeclare': 'off',
132131
'no-undef': 'off',
133-
'no-useless-constructor': 'off',
134-
'@typescript-eslint/no-useless-constructor': 'error',
135132

136133
// Miscellaneous rules
137134
'no-control-regex': 'off',

0 commit comments

Comments
 (0)