Skip to content

Commit

Permalink
Merge pull request #2 from IsaacMarovitz/isaacmarovitz-cleanup
Browse files Browse the repository at this point in the history
Cleanup
  • Loading branch information
OCDkirby committed Jul 13, 2023
2 parents 5b24216 + 4e5ea39 commit 4337f2c
Show file tree
Hide file tree
Showing 12 changed files with 3,937 additions and 332 deletions.
7 changes: 7 additions & 0 deletions .eslintrc.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
/* eslint-env node */
module.exports = {
extends: ['eslint:recommended', 'plugin:@typescript-eslint/recommended'],
parser: '@typescript-eslint/parser',
plugins: ['@typescript-eslint'],
root: true,
};
11 changes: 11 additions & 0 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
name: Lint
on: [push, pull_request, workflow_dispatch]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Install modules
run: npm install
- name: Lint
run: npx eslint .
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -26,3 +26,6 @@ coverage
*.njsproj
*.sln
*.sw?

# Build files
*.d.ts
Loading

0 comments on commit 4337f2c

Please sign in to comment.