mirror of
https://github.com/airbnb/javascript.git
synced 2026-01-14 08:38:08 -05:00
[eslint config] [base] correct typo from a23a3efba9
This commit is contained in:
@@ -179,7 +179,7 @@ module.exports = {
|
||||
'no-restricted-properties': ['error', {
|
||||
object: 'arguments',
|
||||
property: 'callee',
|
||||
message: 'arguments.callee is deprecated,'
|
||||
message: 'arguments.callee is deprecated',
|
||||
}, {
|
||||
property: '__defineGetter__',
|
||||
message: 'Please use Object.defineProperty instead.',
|
||||
|
||||
@@ -35,9 +35,8 @@ module.exports = {
|
||||
// requires function names to match the name of the variable or property to which they are
|
||||
// assigned
|
||||
// http://eslint.org/docs/rules/func-name-matching
|
||||
'func-name-matching': ['off', {
|
||||
includeCommonJSModuleExports: false,
|
||||
nameMatches: 'always'
|
||||
'func-name-matching': ['off', 'always', {
|
||||
includeCommonJSModuleExports: false
|
||||
}],
|
||||
|
||||
// require function expressions to have a name
|
||||
|
||||
Reference in New Issue
Block a user