Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

V4.x backport for tools: increase lint coverage (https://github.com/nodejs/node/pull/7647) #8349

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .eslintignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ lib/internal/v8_prof_polyfill.js
lib/punycode.js
test/addons/??_*/
test/fixtures
test/**/node_modules
test/disabled
test/tmp*/
tools/doc/node_modules
tools/eslint
node_modules
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -644,8 +644,8 @@ bench-idle:
$(NODE) benchmark/idle_clients.js &

jslint:
$(NODE) tools/eslint/bin/eslint.js benchmark lib src test tools/doc \
tools/eslint-rules --rulesdir tools/eslint-rules
$(NODE) tools/eslint/bin/eslint.js benchmark lib src test tools \
--rulesdir tools/eslint-rules

CPPLINT_EXCLUDE ?=
CPPLINT_EXCLUDE += src/node_root_certs.h
Expand Down
100 changes: 49 additions & 51 deletions tools/license2rtf.js
Original file line number Diff line number Diff line change
@@ -1,15 +1,16 @@
'use strict';

var assert = require('assert'),
Stream = require('stream'),
inherits = require('util').inherits;
const assert = require('assert');
const Stream = require('stream');
const inherits = require('util').inherits;


/*
* This filter consumes a stream of characters and emits one string per line.
*/
function LineSplitter() {
var self = this,
buffer = "";
const self = this;
var buffer = '';

Stream.call(this);
this.writable = true;
Expand Down Expand Up @@ -38,33 +39,31 @@ inherits(LineSplitter, Stream);
* This filter consumes lines and emits paragraph objects.
*/
function ParagraphParser() {
var self = this,
block_is_license_block = false,
block_has_c_style_comment,
is_first_line_in_paragraph,
paragraph_line_indent,
paragraph;

Stream.call(this);
this.writable = true;

resetBlock(false);

this.write = function(data) {
parseLine(data + '');
return true;
};

this.end = function(data) {
if (data) {
parseLine(data + '');
}
flushParagraph();
self.emit('end');
};
const self = this;
var block_is_license_block = false;
var block_has_c_style_comment;
var paragraph_line_indent;
var paragraph;

Stream.call(this);
this.writable = true;

resetBlock(false);

this.write = function(data) {
parseLine(data + '');
return true;
};

this.end = function(data) {
if (data) {
parseLine(data + '');
}
flushParagraph();
self.emit('end');
};

function resetParagraph() {
is_first_line_in_paragraph = true;
paragraph_line_indent = -1;

paragraph = {
Expand Down Expand Up @@ -165,8 +164,6 @@ function ParagraphParser() {

if (line)
paragraph.lines.push(line);

is_first_line_in_paragraph = false;
}
}
inherits(ParagraphParser, Stream);
Expand All @@ -184,16 +181,16 @@ function Unwrapper() {
this.writable = true;

this.write = function(paragraph) {
var lines = paragraph.lines,
break_after = [],
i;
var lines = paragraph.lines;
var break_after = [];
var i;

for (i = 0; i < lines.length - 1; i++) {
var line = lines[i];

// When a line is really short, the line was probably kept separate for a
// reason.
if (line.length < 50) {
if (line.length < 50) {
// If the first word on the next line really didn't fit after the line,
// it probably was just ordinary wrapping after all.
var next_first_word_length = lines[i + 1].replace(/\s.*$/, '').length;
Expand All @@ -203,7 +200,7 @@ function Unwrapper() {
}
}

for (i = 0; i < lines.length - 1; ) {
for (i = 0; i < lines.length - 1;) {
if (!break_after[i]) {
lines[i] += ' ' + lines.splice(i + 1, 1)[0];
} else {
Expand Down Expand Up @@ -233,8 +230,8 @@ inherits(Unwrapper, Stream);
* This filter generates an rtf document from a stream of paragraph objects.
*/
function RtfGenerator() {
var self = this,
did_write_anything = false;
const self = this;
var did_write_anything = false;

Stream.call(this);
this.writable = true;
Expand All @@ -245,11 +242,11 @@ function RtfGenerator() {
did_write_anything = true;
}

var li = paragraph.li,
level = paragraph.level + (li ? 1 : 0),
lic = paragraph.in_license_block;
var li = paragraph.li;
var level = paragraph.level + (li ? 1 : 0);
var lic = paragraph.in_license_block;

var rtf = "\\pard";
var rtf = '\\pard';
rtf += '\\sa150\\sl300\\slmult1';
if (level > 0)
rtf += '\\li' + (level * 240);
Expand Down Expand Up @@ -290,18 +287,19 @@ function RtfGenerator() {
function rtfEscape(string) {
return string
.replace(/[\\\{\}]/g, function(m) {
return '\\' + m;
return '\\' + m;
})
.replace(/\t/g, function() {
return '\\tab ';
})
// eslint-disable-next-line no-control-regex
.replace(/[\x00-\x1f\x7f-\xff]/g, function(m) {
return '\\\'' + toHex(m.charCodeAt(0), 2);
})
.replace(/\ufeff/g, '')
.replace(/[\u0100-\uffff]/g, function(m) {
return '\\u' + toHex(m.charCodeAt(0), 4) + '?';
});
});
}

function emitHeader() {
Expand All @@ -317,12 +315,12 @@ function RtfGenerator() {
inherits(RtfGenerator, Stream);


var stdin = process.stdin,
stdout = process.stdout,
line_splitter = new LineSplitter(),
paragraph_parser = new ParagraphParser(),
unwrapper = new Unwrapper(),
rtf_generator = new RtfGenerator();
const stdin = process.stdin;
const stdout = process.stdout;
const line_splitter = new LineSplitter();
const paragraph_parser = new ParagraphParser();
const unwrapper = new Unwrapper();
const rtf_generator = new RtfGenerator();

stdin.setEncoding('utf-8');
stdin.resume();
Expand Down
3 changes: 2 additions & 1 deletion vcbuild.bat
Original file line number Diff line number Diff line change
Expand Up @@ -342,7 +342,8 @@ goto jslint
:jslint
if not defined jslint goto exit
echo running jslint
%config%\node tools\eslint\bin\eslint.js benchmark lib src test tools\doc tools\eslint-rules --rulesdir tools\eslint-rules
<<<<<<< d1e2db2a13ddc9fb2f8cd1400b52656910d7374f
%config%\node tools\eslint\bin\eslint.js benchmark lib src test tools --rulesdir tools\eslint-rules
goto exit

:create-msvs-files-failed
Expand Down