Skip to content

Commit

Permalink
Add additional room methods, eslint config
Browse files Browse the repository at this point in the history
- Adds modifyRoom, deleteRoom, and updateRoom methods
- Adds eslint config
  • Loading branch information
dwickr committed Jan 3, 2023
1 parent acaf334 commit cd1477d
Show file tree
Hide file tree
Showing 10 changed files with 2,694 additions and 1,664 deletions.
16 changes: 16 additions & 0 deletions .eslintrc.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
env:
node: true
commonjs: true
es2021: true
jest: true
extends: eslint:recommended
overrides: []
parserOptions:
ecmaVersion: latest
rules:
quotes: ['error', 'single']
semi: ['error', 'never']
indent: ['error', 2]
linebreak-style: ['error', 'unix']
comma-dangle: ['error', 'always-multiline']
no-trailing-spaces: ['error']
1 change: 1 addition & 0 deletions .github/workflows/node.js.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,4 +26,5 @@ jobs:
node-version: ${{ matrix.node-version }}
- run: npm ci
- run: npm run build --if-present
- run: npm run lint
- run: npm test
Loading

0 comments on commit cd1477d

Please sign in to comment.