Skip to content

Commit

Permalink
build: update to use eslint
Browse files Browse the repository at this point in the history
  • Loading branch information
hbofolts1 committed Aug 29, 2023
1 parent 28ca60f commit 5399cb0
Show file tree
Hide file tree
Showing 18 changed files with 2,395 additions and 521 deletions.
12 changes: 12 additions & 0 deletions .eslintrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
{
"root": true,
"extends": [
"eslint:recommended",
"plugin:@typescript-eslint/recommended"
],
"parser": "@typescript-eslint/parser",
"parserOptions": { "project": ["./tsconfig.json"] },
"plugins": [
"@typescript-eslint"
]
}
1 change: 1 addition & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,5 +14,6 @@ jobs:
node-version: '10.x'
- run: npm install
- run: npm run build
- run: npm run lint
- run: npm test

Loading

0 comments on commit 5399cb0

Please sign in to comment.