Skip to content

Commit

Permalink
Add eslint build step and package-lock
Browse files Browse the repository at this point in the history
Build is currently failing because there no lock file so it can't run `npm ci`. Also `npm test` was a total no-op, so added the bare minimum of testing.
  • Loading branch information
lennym committed Nov 10, 2022
1 parent ec1d871 commit ceca489
Show file tree
Hide file tree
Showing 3 changed files with 1,937 additions and 1 deletion.
16 changes: 16 additions & 0 deletions .eslintrc.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
module.exports = {
"env": {
"node": true,
"browser": true,
"commonjs": true,
"es2021": true
},
"extends": "eslint:recommended",
"overrides": [
],
"parserOptions": {
"ecmaVersion": "latest"
},
"rules": {
}
}
Loading

0 comments on commit ceca489

Please sign in to comment.