Skip to content

Commit

Permalink
Use strict everywhere (#68)
Browse files Browse the repository at this point in the history
  • Loading branch information
sethvargo committed Nov 30, 2021
1 parent a37d7b4 commit c6fa692
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/base.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
'use strict';

import https, { RequestOptions } from 'https';
import { URL } from 'url';
import {
Expand Down
2 changes: 2 additions & 0 deletions src/client/auth_client.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
'use strict';

/**
* Defines the main interface for all clients that generate credentials.
*/
Expand Down
2 changes: 2 additions & 0 deletions src/utils.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
'use strict';

import { promises as fs } from 'fs';
import crypto from 'crypto';
import path from 'path';
Expand Down
2 changes: 2 additions & 0 deletions tests/client/credentials_json_client.test.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
'use strict';

import 'mocha';
import { expect } from 'chai';

Expand Down
2 changes: 2 additions & 0 deletions tests/client/workload_identity_client.test.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
'use strict';

import 'mocha';
import { expect } from 'chai';

Expand Down

0 comments on commit c6fa692

Please sign in to comment.