Skip to content

Commit

Permalink
Unbreak ESLint
Browse files Browse the repository at this point in the history
  • Loading branch information
rgrove committed Oct 25, 2024
1 parent d60fafa commit 78a876d
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 11 deletions.
1 change: 1 addition & 0 deletions .eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,5 +13,6 @@ module.exports = {
'no-implicit-coercion': ['warn', {
allow: ['!!'],
}],
'@typescript-eslint/type-annotation-spacing': 'off',
},
};
22 changes: 11 additions & 11 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,18 +33,18 @@ jobs:

- run: pnpm test

# lint:
# runs-on: ubuntu-latest
lint:
runs-on: ubuntu-latest

# steps:
# - uses: actions/checkout@v4
steps:
- uses: actions/checkout@v4

# - uses: actions/setup-node@v4
# with:
# node-version: lts/*
- uses: actions/setup-node@v4
with:
node-version: lts/*

# - uses: pnpm/action-setup@v4
# with:
# run_install: true
- uses: pnpm/action-setup@v4
with:
run_install: true

# - run: pnpm lint
- run: pnpm lint

0 comments on commit 78a876d

Please sign in to comment.