Skip to content

Commit 7a71761

Browse files
style: apply ESLint to files. Remove lint-staged
1 parent a659ad3 commit 7a71761

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@
8787
"husky": {
8888
"hooks": {
8989
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
90-
"pre-commit": "eslint --cache --fix"
90+
"pre-commit": "lerna run lint"
9191
}
9292
}
9393
}

packages/cli/src/commands/new.command.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -438,7 +438,7 @@ export async function generateCode(args: yargs.Arguments<any>): Promise<void> {
438438
name: 'application',
439439
options: {
440440
name,
441-
'language': 'ts',
441+
language: 'ts',
442442
},
443443
});
444444

@@ -457,8 +457,8 @@ export async function generateCode(args: yargs.Arguments<any>): Promise<void> {
457457
options: {
458458
path: name,
459459
db: args.t,
460-
}
461-
})
460+
},
461+
});
462462
}
463463

464464
if (args.y) {

0 commit comments

Comments
 (0)