We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0cff0d3 commit 3a0176fCopy full SHA for 3a0176f
rules/stylistic-issues.js
@@ -272,11 +272,11 @@ module.exports = {
272
273
// disallow Object constructors
274
// http://eslint.org/docs/rules/no-new-object
275
- 'no-new-object': 'error'
+ 'no-new-object': 'error',
276
277
// disallow the unary operators ++ and --
278
// http://eslint.org/docs/rules/no-plusplus
279
- 'no-plusplus': ['error', { 'allowForLoopAfterthoughts': true }],
+ 'no-plusplus': ['error', { allowForLoopAfterthoughts: true }],
280
281
// disallow specified syntax
282
// http://eslint.org/docs/rules/no-restricted-syntax
0 commit comments