File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -68,8 +68,9 @@ The default for each option is `"never"` unless otherwise specified.
68
68
* ` objects ` is for object literals and object patterns of destructuring. (e.g. ` let {a,} = {a: 1}; ` )
69
69
* ` imports ` is for import declarations of ES Modules. (e.g. ` import {a,} from "foo"; ` )
70
70
* ` exports ` is for export declarations of ES Modules. (e.g. ` export {a,}; ` )
71
- * ` functions ` is for function declarations and function calls. (e.g. ` (function(a,){ })(b,); ` )<br >
72
- ` functions ` is set to ` "ignore" ` by default for consistency with the string option.
71
+ * ` functions ` is for function declarations and function calls. (e.g. ` (function(a,){ })(b,); ` )
72
+ * ` functions ` is set to ` "ignore" ` by default for consistency with the string option.
73
+ * ` functions ` should only be enabled when linting ECMAScript 2017 or higher.
73
74
74
75
### never
75
76
You can’t perform that action at this time.
0 commit comments