eslint-plugin-flow-vars
Advanced tools
Comparing version 0.0.1 to 0.0.2
@@ -43,6 +43,2 @@ 'use strict'; | ||
module.exports.schema = [{ | ||
type: 'object', | ||
properties: {}, | ||
additionalProperties: false | ||
}]; | ||
module.exports.schema = []; |
{ | ||
"name": "eslint-plugin-flow-vars", | ||
"version": "0.0.1", | ||
"version": "0.0.2", | ||
"description": "Solves the problem of false positives with `no-undef` and `no-unused-vars` when using babel-eslint", | ||
@@ -5,0 +5,0 @@ "keywords": [ |
@@ -11,16 +11,6 @@ 'use strict'; | ||
DeclareFunction: markTypeAsUsed, | ||
DeclareVariable: markTypeAsUsed, | ||
TypeAlias: markTypeAsUsed, | ||
TypeParameterDeclaration: function(node) { | ||
for (var i = 0; i < node.params.length; i++) { | ||
context.markVariableAsUsed(node.params[i].name); | ||
} | ||
} | ||
DeclareVariable: markTypeAsUsed | ||
}; | ||
}; | ||
module.exports.schema = [{ | ||
type: 'object', | ||
properties: {}, | ||
additionalProperties: false | ||
}]; | ||
module.exports.schema = []; |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
2955
63