Skip to content

Commit b7f37ca

Browse files
committed
chore: update lint staged conf
1 parent 7e1c8c9 commit b7f37ca

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

package.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,8 @@
106106
],
107107
"lint-staged": {
108108
"*.{ts,tsx}": [
109-
"eslint"
109+
"eslint --fix",
110+
"prettier --write"
110111
]
111112
}
112113
}

packages/file-storage/src/lib/file-storage-google.types.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ export interface FileStorageGoogleFileExists extends FileStorageBaseArgs {
3333

3434
export interface FileStorageGoogleMoveFile extends FileStorageBaseArgs {
3535
newFilePath: string;
36-
options?: FileOptions & MoveOptions
36+
options?: FileOptions & MoveOptions;
3737
}
3838

3939
export interface FileStorageGoogleUploadFile extends FileStorageBaseArgs {

0 commit comments

Comments
 (0)