Skip to content

Commit

Permalink
Fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
vilicvane committed Nov 4, 2023
1 parent b8f5f08 commit d822c51
Show file tree
Hide file tree
Showing 4 changed files with 0 additions and 4 deletions.
1 change: 0 additions & 1 deletion packages/cli/src/program/commands/default.ts
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,6 @@ export default class DefaultCommand extends Command {
@metadata
async execute(options: DefaultCommandOptions): Promise<string | HelpInfo> {
if (options.version) {
// eslint-disable-next-line @typescript-eslint/no-require-imports, @typescript-eslint/no-var-requires
return require('../../../package').version;
}

Expand Down
1 change: 0 additions & 1 deletion packages/cli/src/program/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,5 +16,4 @@ const cli = new CLI(

const shim = new Shim(cli);

// eslint-disable-next-line @typescript-eslint/no-floating-promises
shim.execute(process.argv);
1 change: 0 additions & 1 deletion packages/core/src/library/space/@git.ts
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,6 @@ export class ProjectGit extends Git {
const diffRenameRegex = /^rename from (.+)\r?\n^rename to (.+)/gm;
let diffRenameGroups: RegExpExecArray | null;

// eslint-disable-next-line no-cond-assign
while ((diffRenameGroups = diffRenameRegex.exec(diff))) {
renames.push({
from: diffRenameGroups[1],
Expand Down
1 change: 0 additions & 1 deletion packages/core/src/library/space/space-logger.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
// eslint-disable-next-line @typescript-eslint/consistent-type-definitions
export type SpaceLoggerEvent =
| {
type: 'loaded-composable-module';
Expand Down

0 comments on commit d822c51

Please sign in to comment.