Skip to content

Commit fe00bd8

Browse files
committed
change no-unused-expression rule
1 parent 2a9923d commit fe00bd8

File tree

3 files changed

+3
-1
lines changed

3 files changed

+3
-1
lines changed
File renamed without changes.

test/lists/DoubleLinkedList.test.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
import { should } from 'chai';
22
import { DoubleLinkedListInstance } from '../../types/truffle-contracts';
33

4-
const DoubleLinkedList = artifacts.require('./lists/DoubleLinkedList.sol') as Truffle.Contract<DoubleLinkedListInstance>;
4+
const DoubleLinkedList = artifacts
5+
.require('./lists/DoubleLinkedList.sol') as Truffle.Contract<DoubleLinkedListInstance>;
56
should();
67

78
const emptyData = '0x0000000000000000000000000000000000000000';

tslint.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@
1818
"no-bitwise": true,
1919
"no-conditional-assignment": true,
2020
"no-consecutive-blank-lines": false,
21+
"no-unused-expression": false,
2122
"no-console": {
2223
"severity": "warning",
2324
"options": [

0 commit comments

Comments
 (0)