Skip to content

Commit 7cc380a

Browse files
committed
Fix indent errors
1 parent 32bcb48 commit 7cc380a

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

lib/rules/prop-types.js

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -151,12 +151,12 @@ module.exports = {
151151
return false;
152152
}
153153

154-
/**
155-
* Checks if we are declaring a props as a generic type in a flow-annotated class.
156-
*
157-
* @param {ASTNode} node the AST node being checked.
158-
* @returns {Boolean} True if the node is a class with generic prop types, false if not.
159-
*/
154+
/**
155+
* Checks if we are declaring a props as a generic type in a flow-annotated class.
156+
*
157+
* @param {ASTNode} node the AST node being checked.
158+
* @returns {Boolean} True if the node is a class with generic prop types, false if not.
159+
*/
160160
function isSuperTypeParameterPropsDeclaration(node) {
161161
if (node && node.type === 'ClassDeclaration') {
162162
if (node.superTypeParameters && node.superTypeParameters.params.length >= 2) {

0 commit comments

Comments
 (0)