Skip to content

Commit ff52a06

Browse files
committed
style: format all files
1 parent ddcaaa1 commit ff52a06

File tree

3 files changed

+9
-3
lines changed

3 files changed

+9
-3
lines changed

lib/compiler/defaults/swc-defaults.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ export const swcDefaultsFactory = (
2525
transform: {
2626
legacyDecorator: true,
2727
decoratorMetadata: true,
28-
useDefineForClassFields: false
28+
useDefineForClassFields: false,
2929
},
3030
keepClassNames: true,
3131
baseUrl: tsOptions?.baseUrl,

lib/runners/abstract.runner.ts

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,10 @@ import { ChildProcess, spawn, SpawnOptions } from 'child_process';
33
import { MESSAGES } from '../ui';
44

55
export class AbstractRunner {
6-
constructor(protected binary: string, protected args: string[] = []) {}
6+
constructor(
7+
protected binary: string,
8+
protected args: string[] = [],
9+
) {}
710

811
public async run(
912
command: string,

lib/schematics/schematic.option.ts

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,10 @@
11
import { normalizeToKebabOrSnakeCase } from '../utils/formatting';
22

33
export class SchematicOption {
4-
constructor(private name: string, private value: boolean | string) {}
4+
constructor(
5+
private name: string,
6+
private value: boolean | string,
7+
) {}
58

69
get normalizedName() {
710
return normalizeToKebabOrSnakeCase(this.name);

0 commit comments

Comments
 (0)