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 2588c4d commit ee8f771Copy full SHA for ee8f771
.eslintrc
@@ -33,7 +33,10 @@
33
"no-plusplus": 1,
34
"no-param-reassign": 1,
35
"no-mixed-operators": 1,
36
- "no-restricted-syntax": 1,
+ "no-restricted-syntax": [2, {
37
+ "selector": "ObjectPattern",
38
+ "message": "Object destructuring is not compatible with Node v4"
39
+ }],
40
"strict": [2, "safe"],
41
"valid-jsdoc": [2, {
42
"requireReturn": false,
markdown.config.js
@@ -1,5 +1,7 @@
1
'use strict';
2
3
+/* eslint-disable no-restricted-syntax */
4
+
5
const {rules} = require('./index');
6
7
const ruleListItems = Object.keys(rules)
0 commit comments