summaryrefslogtreecommitdiff
path: root/.eslintrc.js
diff options
context:
space:
mode:
authorRich Trott <rtrott@gmail.com>2019-01-27 08:58:16 -0800
committerAnna Henningsen <anna@addaleax.net>2019-01-29 19:26:19 +0100
commit1a37fd63c6b098524bb577e1db69bcb073fc5171 (patch)
tree40e7419beacbdc8dc76f8ea789a8875acec1ed04 /.eslintrc.js
parentef307bfd17410fb52e241e80392b5876a8aadd27 (diff)
downloadandroid-node-v8-1a37fd63c6b098524bb577e1db69bcb073fc5171.tar.gz
android-node-v8-1a37fd63c6b098524bb577e1db69bcb073fc5171.tar.bz2
android-node-v8-1a37fd63c6b098524bb577e1db69bcb073fc5171.zip
tools: make trailing commas consistent in .eslintrc
.eslintrc has lots of trailing commas and lots of places where there aren't trailing commas. Use trailing commas throughout the files for consistency. PR-URL: https://github.com/nodejs/node/pull/25739 Reviewed-By: Michaƫl Zasso <targos@protonmail.com> Reviewed-By: Vse Mozhet Byt <vsemozhetbyt@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Gus Caplan <me@gus.host>
Diffstat (limited to '.eslintrc.js')
-rw-r--r--.eslintrc.js18
1 files changed, 9 insertions, 9 deletions
diff --git a/.eslintrc.js b/.eslintrc.js
index 7333382fe3..6d5668d5ae 100644
--- a/.eslintrc.js
+++ b/.eslintrc.js
@@ -64,11 +64,11 @@ module.exports = {
// start with something that looks like a variable name or code.
ignorePattern: '^.{0,50}$|^ [a-z]+ ?[0-9A-Z_.(/=:[#-]',
ignoreInlineComments: true,
- ignoreConsecutiveComments: true
+ ignoreConsecutiveComments: true,
},
block: {
- ignorePattern: '.*'
- }
+ ignorePattern: '.*',
+ },
}],
'comma-dangle': ['error', 'only-multiline'],
'comma-spacing': 'error',
@@ -168,7 +168,7 @@ module.exports = {
{
property: '__defineSetter__',
message: '__defineSetter__ is deprecated.',
- }
+ },
],
// If this list is modified, please copy the change to lib/.eslintrc.yaml
// and test/.eslintrc.yaml.
@@ -176,11 +176,11 @@ module.exports = {
'error',
{
selector: "CallExpression[callee.object.name='assert'][callee.property.name='deepStrictEqual'][arguments.2.type='Literal']",
- message: 'Do not use a literal for the third argument of assert.deepStrictEqual()'
+ message: 'Do not use a literal for the third argument of assert.deepStrictEqual()',
},
{
selector: "CallExpression[callee.object.name='assert'][callee.property.name='doesNotThrow']",
- message: 'Please replace `assert.doesNotThrow()` and add a comment next to the code instead.'
+ message: 'Please replace `assert.doesNotThrow()` and add a comment next to the code instead.',
},
{
selector: "CallExpression[callee.object.name='assert'][callee.property.name='rejects'][arguments.length<2]",
@@ -188,7 +188,7 @@ module.exports = {
},
{
selector: "CallExpression[callee.object.name='assert'][callee.property.name='strictEqual'][arguments.2.type='Literal']",
- message: 'Do not use a literal for the third argument of assert.strictEqual()'
+ message: 'Do not use a literal for the third argument of assert.strictEqual()',
},
{
selector: "CallExpression[callee.object.name='assert'][callee.property.name='throws'][arguments.1.type='Literal']:not([arguments.1.regex])",
@@ -209,7 +209,7 @@ module.exports = {
{
selector: 'ThrowStatement > CallExpression[callee.name=/Error$/]',
message: 'Use `new` keyword when throwing an `Error`.',
- }
+ },
],
/* eslint-enable max-len */
'no-return-await': 'error',
@@ -263,7 +263,7 @@ module.exports = {
'space-unary-ops': 'error',
'spaced-comment': ['error', 'always', {
'block': { 'balanced': true },
- 'exceptions': ['-']
+ 'exceptions': ['-'],
}],
'strict': ['error', 'global'],
'symbol-description': 'error',