-
-
Notifications
You must be signed in to change notification settings - Fork 2.8k
Fix no-this-in-sfc
for class properties
#1995
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix no-this-in-sfc
for class properties
#1995
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM overall
lib/util/Components.js
Outdated
scope = scope.upper; | ||
while (scope) { | ||
const type = scope.block.type; | ||
if (type === 'FunctionExpression' || type === 'FunctionDeclaration') { | ||
if (type === 'FunctionExpression' || type === 'FunctionDeclaration' |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
i think we have a utility function for "is a function"
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I didn't find isFunction
, only isFunctionLikeExpression
in ast.js
, so extracted some util functions for reusing in Components.js
lib/util/Components.js
Outdated
if (isArrowFunction) { | ||
functionScope = utils.getParentFunctionScope(scope); | ||
enclosingScope = utils.getArrowFunctionScope(scope); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
this seems like it could be const enclosingScope = isArrowFunction ? utils.getArrowFunctionScope(scope) : scope;
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
sure thing, fixed
tests/lib/rules/no-this-in-sfc.js
Outdated
@@ -16,6 +16,8 @@ const ERROR_MESSAGE = 'Stateless functional components should not use this'; | |||
const rule = require('../../../lib/rules/no-this-in-sfc'); | |||
const RuleTester = require('eslint').RuleTester; | |||
|
|||
require('babel-eslint'); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@ljharb do you know if this is really necessary? Not all of the test files that use this parser actually have the require.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
if you run those test files in isolation, do they pass?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
yeah, they do - just checked with ESLint 3, 4, and 5. could be an artifact from an even earlier time.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I don't see any differences after removing require('babel-eslint')
. See the proof #2004 . Also removed it here.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM as well
The PR fixes #1960 -
no-this-in-sfc
rule for class properties.Class properties example:
The corresponding AST: link.