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.
func-name-matching
considerPropertyDescriptor
1 parent e257dee commit 11ede40Copy full SHA for 11ede40
packages/eslint-config-airbnb-base/rules/style.js
@@ -83,9 +83,9 @@ module.exports = {
83
// requires function names to match the name of the variable or property to which they are
84
// assigned
85
// https://eslint.org/docs/rules/func-name-matching
86
- // TODO: semver-major (eslint 5): add considerPropertyDescriptor: true
87
'func-name-matching': ['off', 'always', {
88
- includeCommonJSModuleExports: false
+ includeCommonJSModuleExports: false,
+ considerPropertyDescriptor: true,
89
}],
90
91
// require function expressions to have a name
0 commit comments