Skip to content

Commit d66cb4a

Browse files
committedMar 4, 2019
benchmark,doc,lib,test: capitalize comments
This updates a lot of comments. PR-URL: #26223 Reviewed-By: Rich Trott <[email protected]> Reviewed-By: James M Snell <[email protected]> Reviewed-By: Vse Mozhet Byt <[email protected]> Reviewed-By: Anto Aravinth <[email protected]>
1 parent 3f4b27d commit d66cb4a

File tree

202 files changed

+348
-349
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

202 files changed

+348
-349
lines changed
 

‎.eslintrc.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -60,9 +60,9 @@ module.exports = {
6060
'brace-style': ['error', '1tbs', { allowSingleLine: true }],
6161
'capitalized-comments': ['error', 'always', {
6262
line: {
63-
// Ignore all lines that have less characters than 50 and all lines that
63+
// Ignore all lines that have less characters than 40 and all lines that
6464
// start with something that looks like a variable name or code.
65-
ignorePattern: '^.{0,50}$|^ [a-z]+ ?[0-9A-Z_.(/=:[#-]',
65+
ignorePattern: '^.{0,40}$|^ [a-z]+ ?[0-9A-Z_.(/=:[#-]|^ std',
6666
ignoreInlineComments: true,
6767
ignoreConsecutiveComments: true,
6868
},

‎benchmark/_cli.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ function CLI(usage, settings) {
2828
}
2929

3030
let currentOptional = null;
31-
let mode = 'both'; // possible states are: [both, option, item]
31+
let mode = 'both'; // Possible states are: [both, option, item]
3232

3333
for (const arg of process.argv.slice(2)) {
3434
if (arg === '--') {
@@ -59,7 +59,7 @@ function CLI(usage, settings) {
5959
this.optional[currentOptional] = arg;
6060
}
6161

62-
// the next value can be either an option or an item
62+
// The next value can be either an option or an item
6363
mode = 'both';
6464
} else if (['both', 'item'].includes(mode)) {
6565
// item arguments

0 commit comments

Comments
 (0)