Skip to content

Commit

Permalink
Remove TypeScript errors
Browse files Browse the repository at this point in the history
  • Loading branch information
karlhorky committed Nov 23, 2023
1 parent 2fd3d1f commit f50d91b
Show file tree
Hide file tree
Showing 4 changed files with 0 additions and 13 deletions.
4 changes: 0 additions & 4 deletions babel.config.cjs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,3 @@ module.exports = {
},
},
};

/** @type {string} */
const a = 1;
console.log(a);
2 changes: 0 additions & 2 deletions docker/clone-and-preflight.ts
Original file line number Diff line number Diff line change
Expand Up @@ -136,8 +136,6 @@ if (projectUsesPostgresql) {
);
}
}
const a: string = 1;
console.log(a);

console.log('Running Preflight...');

Expand Down
4 changes: 0 additions & 4 deletions prettier.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,4 @@ const config = {
trailingComma: 'all',
};

/** @type {string} */
const a = 1;
console.log(a);

export default config;
3 changes: 0 additions & 3 deletions src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -107,9 +107,6 @@ const tasks = new Listr(listrTasks, {
concurrent: 5,
});

const a: string = 1;
console.log(a);

await tasks.run();

if (tasks.errors.length > 0) {
Expand Down

0 comments on commit f50d91b

Please sign in to comment.