eslint-plugin-ft-flow
Version:
Flowtype linting rules for ESLint by flow-typed
34 lines (27 loc) • 1.04 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports["default"] = void 0;
var _isNoFlowFileAnnotation = _interopRequireDefault(require("./isNoFlowFileAnnotation"));
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; }
/**
* Checks whether a file has an or @noflow annotation.
*
* @param context
* @param [strict] - By default, the function returns true if the file
* starts with @flow but not if it starts by @noflow. When the strict flag
* is set to false, the function returns true if the flag has @noflow also.
*/
var _default = function _default(context) {
var strict = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : true;
var comments = context.getSourceCode().getAllComments();
if (!comments.length) {
return false;
}
return comments.some(function (comment) {
return (0, _isNoFlowFileAnnotation["default"])(comment.value, strict);
});
};
exports["default"] = _default;
module.exports = exports.default;