Skip to content

Commit 7fa1ea5

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

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 {
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)