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 = {
179179 'no-restricted-properties' : [ 'error' , {
180180 object : 'arguments' ,
181181 property : 'callee' ,
182- message : 'arguments.callee is deprecated,'
182+ message : 'arguments.callee is deprecated' ,
183183 } , {
184184 property : '__defineGetter__' ,
185185 message : 'Please use Object.defineProperty instead.' ,
Original file line number Diff line number Diff line change @@ -35,9 +35,8 @@ module.exports = {
3535 // requires function names to match the name of the variable or property to which they are
3636 // assigned
3737 // 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
4140 } ] ,
4241
4342 // require function expressions to have a name
You can’t perform that action at this time.
0 commit comments