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 3f0d6cb
Show file tree
Hide file tree
Showing 26 changed files with 2,511 additions and 639 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"
]
}
3 changes: 2 additions & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,9 @@ jobs:
- uses: actions/checkout@v1
- uses: actions/setup-node@v1
with:
node-version: '10.x'
node-version: '16.x'
- run: npm install
- run: npm run build
- run: npm run lint
- run: npm test

Loading

0 comments on commit 3f0d6cb

Please sign in to comment.