Skip to content

Commit b8c9d6b

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 <cjihrig@gmail.com> Reviewed-By: Roman Klauke <romaaan.git@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com>
1 parent 8fa2029 commit b8c9d6b

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)