Skip to content

Commit

Permalink
chore(deps): update lint (#566)
Browse files Browse the repository at this point in the history
This PR contains the following updates:



Package
Change
Age
Adoption
Passing
Confidence




@typescript-eslint/eslint-plugin
5.8.1 -> 5.33.1






@typescript-eslint/parser
5.8.1 -> 5.33.1






eslint (source)
8.5.0 -> 8.22.0






eslint-config-xo
0.39.0 -> 0.41.0






eslint-config-xo-typescript
0.47.1 -> 0.52.0






eslint-plugin-import
2.25.3 -> 2.26.0






eslint-plugin-jest
25.3.0 -> 25.7.0






eslint-plugin-mocha
10.0.3 -> 10.1.0






eslint-plugin-prettier
4.0.0 -> 4.2.1








Configuration
📅 Schedule: Branch creation - "before 3am on Monday" (UTC), Automerge - At any time (no schedule defined).
🚦 Automerge: Enabled.
♻ Rebasing: Renovate will not automatically rebase this PR, because other commits have been found.
👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


 If you want to rebase/retry this PR, click this checkbox. ⚠ Warning: custom changes will be lost.


This PR has been generated by Mend Renovate. View repository job log here.

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Rik Smale <13023439+WikiRik@users.noreply.github.com>
  • Loading branch information
renovate[bot] and WikiRik authored Aug 18, 2022
1 parent 36f7ceb commit c1154f9
Show file tree
Hide file tree
Showing 15 changed files with 906 additions and 1,749 deletions.
2 changes: 1 addition & 1 deletion examples/3.raw-sql/umzug.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ const getRawSqlClient = () => {
export const migrator = new Umzug({
migrations: {
glob: ['migrations/*.sql', { cwd: __dirname }],
resolve: params => {
resolve(params) {
const downPath = path.join(path.dirname(params.path!), 'down', path.basename(params.path!));
return {
name: params.name,
Expand Down
4 changes: 2 additions & 2 deletions examples/6.events/umzug.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,10 @@ export const migrator = new Umzug({
});

const fakeApi = {
shutdownInternalService: async () => {
async shutdownInternalService() {
console.log('shutting down...');
},
restartInternalService: async () => {
async restartInternalService() {
console.log('restarting!');
},
};
Expand Down
Loading

0 comments on commit c1154f9

Please sign in to comment.