Skip to content

Commit

Permalink
Updated dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
klein0r committed Aug 1, 2024
1 parent b6975c0 commit 14e0a0a
Show file tree
Hide file tree
Showing 4 changed files with 37 additions and 25 deletions.
12 changes: 12 additions & 0 deletions eslint.config.cjs
Original file line number Diff line number Diff line change
Expand Up @@ -32,9 +32,21 @@ module.exports = [
},

rules: {
indent: ['error', 4, { SwitchCase: 1 }],

'no-console': 'off',
'no-var': 'error',
'no-trailing-spaces': 'error',
'prefer-const': 'error',

quotes: [
'error',
'single',
{
avoidEscape: true,
allowTemplateLiterals: true,
},
],
},
},
];
2 changes: 1 addition & 1 deletion main.js
Original file line number Diff line number Diff line change
Expand Up @@ -917,7 +917,7 @@ class Trashschedule extends utils.Adapter {
}

callback();
} catch (e) {
} catch {
callback();
}
}
Expand Down
44 changes: 22 additions & 22 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -37,10 +37,10 @@
"@eslint/js": "^9.8.0",
"@iobroker/adapter-dev": "^1.3.0",
"@iobroker/testing": "^4.1.3",
"@types/chai": "^4.3.14",
"@types/chai": "^4.3.17",
"@types/chai-as-promised": "^7.1.8",
"@types/mocha": "^10.0.7",
"@types/node": "^20.14.9",
"@types/node": "^22.0.2",
"@types/proxyquire": "^1.3.31",
"@types/sinon": "^17.0.3",
"@types/sinon-chai": "^3.2.12",
Expand Down

0 comments on commit 14e0a0a

Please sign in to comment.