Skip to content

Commit

Permalink
Issue #60 Update dependencies and also path issue
Browse files Browse the repository at this point in the history
  • Loading branch information
ajmas committed Jan 5, 2024
1 parent 6376eb8 commit 7b4e440
Show file tree
Hide file tree
Showing 8 changed files with 1,590 additions and 279 deletions.
4 changes: 3 additions & 1 deletion .eslintrc.cjs
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,8 @@ module.exports = {
'space-before-function-paren': 'error',
semi: [2, 'always'],
indent: ['error', 2],
// causes issues in Typescript when enabled
'no-unused-vars': 'off',

// TypeScript
quotes: ['warn', 'single', { avoidEscape: true }],
Expand All @@ -80,7 +82,7 @@ module.exports = {
'@typescript-eslint/restrict-template-expressions': 'off',
'@typescript-eslint/no-misused-promises': 'off',
'@typescript-eslint/no-unsafe-argument': 'off',

'@typescript-eslint/no-unused-vars': [2, { args: 'none' }],

// allow debugger during development only
'no-debugger': process.env.NODE_ENV === 'production' ? 'error' : 'off'
Expand Down
Loading

0 comments on commit 7b4e440

Please sign in to comment.