Skip to content

Commit 6fa32a6

Browse files
committed
lint
1 parent f1c31d3 commit 6fa32a6

File tree

3 files changed

+12
-15
lines changed

3 files changed

+12
-15
lines changed

src/providers/Project/projectDefault.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ export function createLocalProject(
111111
const accountEntities: Account[] = accounts.map((_account) => {
112112
return {
113113
__typename: 'Account',
114-
address: _account.padStart(16, "0"),
114+
address: _account.padStart(16, '0'),
115115
deployedContracts: [],
116116
state: DEFAULT_ACCOUNT_STATE,
117117
};

src/util/parser.test.ts

+10-13
Original file line numberDiff line numberDiff line change
@@ -1,27 +1,24 @@
1-
import { extractSigners } from "./parser";
1+
import { extractSigners } from './parser';
22

33
const oneSigner = `
44
transaction {
55
prepare(acct: auth(LoadValue, SaveValue) &Account) {}
6-
}`
7-
6+
}`;
87

98
const twoSigners = `
109
transaction {
1110
prepare(authorizer1: auth(Capabilities,SomethingElse) &Account, authorizer2: auth(Storage,Vaults) &Account) { }
12-
}`
11+
}`;
1312

1413
describe('parser tests', () => {
1514
it('should extract one code signer', () => {
15+
const signers = extractSigners(oneSigner);
1616

17-
const signers = extractSigners(oneSigner)
18-
19-
expect(signers).toHaveLength(1)
20-
})
17+
expect(signers).toHaveLength(1);
18+
});
2119
it('should extract two code signer', () => {
20+
const signers = extractSigners(twoSigners);
2221

23-
const signers = extractSigners(twoSigners)
24-
25-
expect(signers).toHaveLength(2)
26-
})
27-
})
22+
expect(signers).toHaveLength(2);
23+
});
24+
});

src/util/parser.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ export const generateSchema = (argsDefinition: string) =>
99
return match.replace(/,/g, '<COMMA>');
1010
})
1111
.split(',')
12-
.map((item) => item.replace(/\s*/g, '').replace(/<COMMA>/g,','))
12+
.map((item) => item.replace(/\s*/g, '').replace(/<COMMA>/g, ','))
1313
.filter((item) => item !== '');
1414

1515
export const stripComments = (code: string) => {

0 commit comments

Comments
 (0)