Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
MattCCC committed Sep 16, 2024
2 parents 861e41a + 541c8f0 commit 05efa88
Show file tree
Hide file tree
Showing 26 changed files with 4,882 additions and 5,601 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@ jobs:
with:
node-version: ${{ matrix.node }}

- name: Install deps and build (with cache)
uses: bahmutov/npm-install@v1
- name: Install deps
run: npm ci

- name: Lint
run: npm run lint
Expand Down
3 changes: 2 additions & 1 deletion .npmignore
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ coverage
test
node_modules
package
scripts
docs

CODE_OF_CONDUCT.md
SECURITY.md
Expand All @@ -17,6 +17,7 @@ SECURITY.md
tsconfig.json
eslint.config.mjs
jest.config.js
.prettierignore

.DS_Store
src
22 changes: 15 additions & 7 deletions README.md

Large diffs are not rendered by default.

5 changes: 3 additions & 2 deletions eslint.config.mjs
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import js from '@eslint/js';
import eslintPluginPrettierRecommended from 'eslint-plugin-prettier/recommended';
import tseslint from 'typescript-eslint';
import globals from 'globals';

export default [
js.configs.recommended,
Expand All @@ -10,8 +11,8 @@ export default [
ignores: ['dist/**/*'],
languageOptions: {
globals: {
browser: true,
node: true,
...globals.browser,
...globals.node,
},
},
},
Expand Down
Loading

0 comments on commit 05efa88

Please sign in to comment.