Skip to content

Commit 1a59e0b

Browse files
committed
[eslint] fix remaining undeclared variables
1 parent 07e13a8 commit 1a59e0b

File tree

2 files changed

+16
-2
lines changed

2 files changed

+16
-2
lines changed

.eslintrc

+14
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
{
22
"root": true,
3+
"env": {
4+
"browser": true,
5+
"node": true,
6+
},
7+
"globals": {
8+
"Promise": false,
9+
},
310
"rules": {
411
"indent": ["error", 4],
512
"key-spacing": "error",
@@ -8,6 +15,7 @@
815
"anonymous": "always",
916
"named": "never",
1017
}],
18+
"no-undef": "error",
1119
},
1220
"overrides": [
1321
{
@@ -16,5 +24,11 @@
1624
"ecmaVersion": 2017,
1725
},
1826
},
27+
{
28+
"files": ["example/**", "test/**"],
29+
"globals": {
30+
"g": false,
31+
},
32+
},
1933
],
2034
}

test/stackTrace.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ tap.test('preserves stack trace for failed assertions', function (tt) {
107107
parser.once('assert', function (data) {
108108
tt.equal(typeof data.diag.at, 'string');
109109
tt.equal(typeof data.diag.stack, 'string');
110-
at = data.diag.at || '';
110+
var at = data.diag.at || '';
111111
stack = data.diag.stack || '';
112112
tt.ok(/^Error: true should be false(\n at .+)+/.exec(stack), 'stack should be a stack');
113113
tt.deepEqual(data, {
@@ -172,7 +172,7 @@ tap.test('preserves stack trace for failed assertions where actual===falsy', fun
172172
parser.once('assert', function (data) {
173173
tt.equal(typeof data.diag.at, 'string');
174174
tt.equal(typeof data.diag.stack, 'string');
175-
at = data.diag.at || '';
175+
var at = data.diag.at || '';
176176
stack = data.diag.stack || '';
177177
tt.ok(/^Error: false should be true(\n at .+)+/.exec(stack), 'stack should be a stack');
178178
tt.deepEqual(data, {

0 commit comments

Comments
 (0)