File tree Expand file tree Collapse file tree 2 files changed +3
-4
lines changed
packages/eslint-config-airbnb-base/rules Expand file tree Collapse file tree 2 files changed +3
-4
lines changed Original file line number Diff line number Diff line change @@ -179,7 +179,7 @@ module.exports = {
179
179
'no-restricted-properties' : [ 'error' , {
180
180
object : 'arguments' ,
181
181
property : 'callee' ,
182
- message : 'arguments.callee is deprecated,'
182
+ message : 'arguments.callee is deprecated' ,
183
183
} , {
184
184
property : '__defineGetter__' ,
185
185
message : 'Please use Object.defineProperty instead.' ,
Original file line number Diff line number Diff line change @@ -35,9 +35,8 @@ module.exports = {
35
35
// requires function names to match the name of the variable or property to which they are
36
36
// assigned
37
37
// http://eslint.org/docs/rules/func-name-matching
38
- 'func-name-matching' : [ 'off' , {
39
- includeCommonJSModuleExports : false ,
40
- nameMatches : 'always'
38
+ 'func-name-matching' : [ 'off' , 'always' , {
39
+ includeCommonJSModuleExports : false
41
40
} ] ,
42
41
43
42
// require function expressions to have a name
You can’t perform that action at this time.
0 commit comments