Skip to content

Commit f41a664

Browse files
committed
lint fix
1 parent 74e6d6b commit f41a664

1 file changed

Lines changed: 8 additions & 8 deletions

File tree

handwritten/storage/src/nodejs-common/service-object.ts

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -13,17 +13,17 @@
1313
* See the License for the specific language governing permissions and
1414
* limitations under the License.
1515
*/
16-
import { promisifyAll } from '@google-cloud/promisify';
17-
import { EventEmitter } from 'events';
18-
import { util } from './util.js';
19-
import { StorageRequestOptions, StorageTransport } from '../storage-transport.js';
16+
import {promisifyAll} from '@google-cloud/promisify';
17+
import {EventEmitter} from 'events';
18+
import {util} from './util.js';
19+
import {StorageRequestOptions, StorageTransport } from '../storage-transport.js';
2020
import {
2121
GaxiosError,
2222
GaxiosInterceptor,
2323
GaxiosOptionsPrepared,
2424
GaxiosResponse,
2525
} from 'gaxios';
26-
import type { Bucket } from '../bucket.js';
26+
import type {Bucket} from '../bucket.js';
2727

2828
function isBucket(parent: unknown): parent is Bucket {
2929
if (!parent || typeof parent !== 'object') {
@@ -110,7 +110,7 @@ export interface InstanceResponseCallback<T> {
110110
}
111111

112112
// eslint-disable-next-line @typescript-eslint/no-empty-interface
113-
export interface CreateOptions { }
113+
export interface CreateOptions {}
114114
// eslint-disable-next-line @typescript-eslint/no-explicit-any, @typescript-eslint/no-unused-vars
115115
export type CreateResponse<T> = any[];
116116
export interface CreateCallback<T> {
@@ -566,6 +566,6 @@ class ServiceObject<T, K extends BaseMetadata> extends EventEmitter {
566566
}
567567
}
568568

569-
promisifyAll(ServiceObject, { exclude: ['getRequestInterceptors'] });
569+
promisifyAll(ServiceObject, {exclude: ['getRequestInterceptors']});
570570

571-
export { ServiceObject };
571+
export {ServiceObject};

0 commit comments

Comments
 (0)