Skip to content
This repository was archived by the owner on May 19, 2025. It is now read-only.
Merged
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion .github/workflows/external.yml
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ jobs:
${{ runner.os }}-node-

- name: install main
run: npm ci --no-audit --no-fund
run: npm i --no-audit --no-fund
working-directory: ./main
- name: install project
run: '[ -f package-lock.json ] && npm ci --force || npm install --force'
Expand Down
3 changes: 1 addition & 2 deletions .github/workflows/npm-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,5 @@ jobs:
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node_version }}
cache: 'npm'
- run: npm ci
- run: npm i
- run: npm test
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,6 @@
/node_modules
/yarn.lock
/.vscode
package-lock.json

# Library specific ones
5 changes: 1 addition & 4 deletions index.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,7 @@ module.exports = {
},
'plugins': [
'@typescript-eslint',
'react-hooks',
'unicorn'
'react-hooks'
],
'extends': ['./lib/standard-eslint-ts'],
'settings': {
Expand Down Expand Up @@ -65,8 +64,6 @@ module.exports = {
'react-hooks/rules-of-hooks': 'off',
'react-hooks/exhaustive-deps': 'off',

'unicorn/expiring-todo-comments': 'warn',

'@typescript-eslint/consistent-type-imports': [
'error',
{ 'prefer': 'type-imports', 'disallowTypeAnnotations': true }
Expand Down
Loading