Skip to content

Commit

Permalink
chore: upgrade deps (#376)
Browse files Browse the repository at this point in the history
* chore/remove-uuid

* chore: removed sinon

* chore/upgrade-eslint
  • Loading branch information
ilteoood authored Dec 18, 2024
1 parent f67c132 commit c001d27
Show file tree
Hide file tree
Showing 6 changed files with 654 additions and 1,062 deletions.
2 changes: 0 additions & 2 deletions .eslintignore

This file was deleted.

17 changes: 17 additions & 0 deletions eslint.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
const js = require('@eslint/js')
const prettierRecommended = require('eslint-plugin-prettier/recommended')
const globals = require('globals')

module.exports = [
js.configs.recommended,
prettierRecommended,
{
languageOptions: {
globals: {
...globals.node
},
ecmaVersion: 'latest',
sourceType: 'module'
}
}
]
2 changes: 1 addition & 1 deletion lib/client.js
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ class AzureClient {
const secret = await this.secretClient.getSecret(name)

return secret.value
} catch (err) {
} catch {
throw new Error(`Secret not found: ${name}`)
}
}
Expand Down
Loading

0 comments on commit c001d27

Please sign in to comment.