Skip to content

Commit 3171edd

Browse files
committed
[eslint] clean up config a bit
1 parent 75c0c3a commit 3171edd

File tree

2 files changed

+67
-66
lines changed

2 files changed

+67
-66
lines changed

.eslintrc

+10-5
Original file line numberDiff line numberDiff line change
@@ -13,17 +13,15 @@
1313
"array-bracket-spacing": "off",
1414
"complexity": "off",
1515
"func-style": ["error", "declaration"],
16-
"max-lines-per-function": "warn",
17-
"max-lines": "warn",
16+
"max-lines-per-function": "off",
1817
"max-statements-per-line": [2, { "max": 2 }],
1918
"max-statements": "warn",
2019
"multiline-comment-style": "off",
2120
"no-negated-condition": "off",
2221
"no-param-reassign": "warn",
2322
"no-underscore-dangle": "warn",
2423
"object-curly-newline": "off",
25-
"operator-linebreak": ["error", "before"],
26-
"sort-keys": "warn",
24+
"sort-keys": "off",
2725
},
2826
"ignorePatterns": [
2927
"syntax-error.*",
@@ -75,6 +73,7 @@
7573
"no-plusplus": "warn",
7674
"no-multi-assign": "off",
7775
"no-restricted-syntax": "off",
76+
"operator-linebreak": ["error", "before"],
7877
},
7978
},
8079
{
@@ -126,6 +125,12 @@
126125
"rules": {
127126
"no-use-before-define": "warn",
128127
},
129-
}
128+
},
129+
{
130+
"files": ["lib/test.js"],
131+
"rules": {
132+
"max-lines": "off",
133+
},
134+
},
130135
],
131136
}

test/stackTrace.js

+57-61
Original file line numberDiff line numberDiff line change
@@ -37,27 +37,27 @@ tap.test('preserves stack trace with newlines', function (tt) {
3737

3838
stream.pipe(concat(function (body) {
3939
var strippedBody = stripAt(body.toString('utf8'));
40-
tt.equal(
41-
strippedBody,
42-
'TAP version 13\n'
43-
+ '# multiline stack trace\n'
44-
+ 'not ok 1 Error: Preserve stack\n'
45-
+ ' ---\n'
46-
+ ' operator: error\n'
47-
+ ' expected: |-\n'
48-
+ ' undefined\n'
49-
+ ' actual: |-\n'
50-
+ ' [Error: Preserve stack]\n'
51-
+ ' stack: |-\n'
52-
+ ' foo\n'
53-
+ ' bar\n'
54-
+ ' ...\n'
55-
+ '\n'
56-
+ '1..1\n'
57-
+ '# tests 1\n'
58-
+ '# pass 0\n'
59-
+ '# fail 1\n'
60-
);
40+
tt.deepEqual(strippedBody.split('\n'), [].concat(
41+
'TAP version 13',
42+
'# multiline stack trace',
43+
'not ok 1 Error: Preserve stack',
44+
' ---',
45+
' operator: error',
46+
' expected: |-',
47+
' undefined',
48+
' actual: |-',
49+
' [Error: Preserve stack]',
50+
' stack: |-',
51+
' foo',
52+
' bar',
53+
' ...',
54+
'',
55+
'1..1',
56+
'# tests 1',
57+
'# pass 0',
58+
'# fail 1',
59+
''
60+
));
6161

6262
tt.deepEqual(getDiag(strippedBody, true), {
6363
stack: stackTrace,
@@ -201,26 +201,24 @@ tap.test('preserves stack trace for failed assertions', function (tt) {
201201

202202
stream.pipe(concat(function (body) {
203203
var strippedBody = stripAt(body.toString('utf8'));
204-
tt.equal(
205-
strippedBody,
206-
'TAP version 13\n'
207-
+ '# t.equal stack trace\n'
208-
+ 'not ok 1 true should be false\n'
209-
+ ' ---\n'
210-
+ ' operator: equal\n'
211-
+ ' expected: false\n'
212-
+ ' actual: true\n'
213-
+ ' stack: |-\n'
214-
+ ' '
215-
+ stack.replace(/\n/g, '\n ')
216-
+ '\n'
217-
+ ' ...\n'
218-
+ '\n'
219-
+ '1..1\n'
220-
+ '# tests 1\n'
221-
+ '# pass 0\n'
222-
+ '# fail 1\n'
223-
);
204+
tt.deepEqual(strippedBody.split('\n'), [].concat(
205+
'TAP version 13',
206+
'# t.equal stack trace',
207+
'not ok 1 true should be false',
208+
' ---',
209+
' operator: equal',
210+
' expected: false',
211+
' actual: true',
212+
' stack: |-',
213+
('\n' + stack).replace(/\n/g, '\n ').split('\n').slice(1),
214+
' ...',
215+
'',
216+
'1..1',
217+
'# tests 1',
218+
'# pass 0',
219+
'# fail 1',
220+
''
221+
));
224222

225223
tt.deepEqual(getDiag(strippedBody, true), {
226224
stack: stack,
@@ -266,26 +264,24 @@ tap.test('preserves stack trace for failed assertions where actual===falsy', fun
266264

267265
stream.pipe(concat(function (body) {
268266
var strippedBody = stripAt(body.toString('utf8'));
269-
tt.equal(
270-
strippedBody,
271-
'TAP version 13\n'
272-
+ '# t.equal stack trace\n'
273-
+ 'not ok 1 false should be true\n'
274-
+ ' ---\n'
275-
+ ' operator: equal\n'
276-
+ ' expected: true\n'
277-
+ ' actual: false\n'
278-
+ ' stack: |-\n'
279-
+ ' '
280-
+ stack.replace(/\n/g, '\n ')
281-
+ '\n'
282-
+ ' ...\n'
283-
+ '\n'
284-
+ '1..1\n'
285-
+ '# tests 1\n'
286-
+ '# pass 0\n'
287-
+ '# fail 1\n'
288-
);
267+
tt.deepEqual(strippedBody.split('\n'), [].concat(
268+
'TAP version 13',
269+
'# t.equal stack trace',
270+
'not ok 1 false should be true',
271+
' ---',
272+
' operator: equal',
273+
' expected: true',
274+
' actual: false',
275+
' stack: |-',
276+
('\n' + stack).replace(/\n/g, '\n ').split('\n').slice(1),
277+
' ...',
278+
'',
279+
'1..1',
280+
'# tests 1',
281+
'# pass 0',
282+
'# fail 1',
283+
''
284+
));
289285

290286
tt.deepEqual(getDiag(strippedBody, true), {
291287
stack: stack,

0 commit comments

Comments
 (0)