Skip to content

Commit fff6a84

Browse files
TrottMyles Borins
authored and
Myles Borins
committed
tools: enable linting for v8_prof_processor.js
`lib/internal/v8_prof_processor.js` was being excluded from linting, but the only lint issue it has is that it cannot run in strict mode. Disable the `strict` rule with a comment and remove the file from `.eslintignore`. PR-URL: #6262 Reviewed-By: Colin Ihrig <[email protected]> Reviewed-By: Roman Klauke <[email protected]> Reviewed-By: James M Snell <[email protected]>
1 parent bd12d72 commit fff6a84

File tree

2 files changed

+1
-1
lines changed

2 files changed

+1
-1
lines changed

.eslintignore

-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
lib/internal/v8_prof_polyfill.js
2-
lib/internal/v8_prof_processor.js
32
lib/punycode.js
43
test/addons/??_*/
54
test/fixtures

lib/internal/v8_prof_processor.js

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
/* eslint-disable strict */
12
const scriptFiles = [
23
'internal/v8_prof_polyfill',
34
'v8/tools/splaytree',

0 commit comments

Comments
 (0)