Skip to content

Commit

Permalink
Set up eslint
Browse files Browse the repository at this point in the history
  • Loading branch information
joeldrapper committed Feb 25, 2024
1 parent a8f54ca commit a115e74
Show file tree
Hide file tree
Showing 4 changed files with 1,254 additions and 31 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,5 +22,8 @@ jobs:
- name: Build
run: npm run build

- name: Lint
run: npm run lint

- name: Run Tests
run: npm run test || npm run test
6 changes: 6 additions & 0 deletions eslint.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
// @ts-check

import eslint from "@eslint/js";
import tseslint from "typescript-eslint";

export default tseslint.config(eslint.configs.recommended, ...tseslint.configs.strict);
Loading

0 comments on commit a115e74

Please sign in to comment.