Skip to content

Commit fef6654

Browse files
committed
[CRYPTO]: TSLINT filenaming fixed to kabab-case
Signed-off-by: ashish <[email protected]>
1 parent df80f65 commit fef6654

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

src/commands/crypto.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import {Command, flags} from '@oclif/command'
22
import * as CryptoJS from 'crypto-js'
33

4-
import Logger from '../utilities/Logger'
4+
import Logger from '../utilities/logger'
55

66
import Hash from './hash'
77

src/commands/hash.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ import {Command, flags} from '@oclif/command'
22
// @ts-ignore
33
import * as Hashes from 'jshashes'
44

5-
import Logger from '../utilities/Logger'
6-
import Utilities from '../utilities/Utilities'
5+
import Logger from '../utilities/logger'
6+
import Utilities from '../utilities/utilities'
77
// TODO: all are Hexadecimal encoding for now, can also add b64
88

99
export default class Hash extends Command {
File renamed without changes.

src/utilities/Utilities.ts renamed to src/utilities/utilities.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// tslint:disable-next-line:file-name-casing
22
import * as fs from 'fs'
33

4-
import Logger from './Logger'
4+
import Logger from './logger'
55

66
// tslint:disable-next-line:no-unnecessary-class
77
export default class Utilities {

0 commit comments

Comments
 (0)