github-pages-deploy-action/node_modules/eslint-plugin-github/lib/rules/no-flow-weak.js
2020-03-31 08:42:07 -04:00

25 lines
533 B
JavaScript

module.exports = {
meta: {
docs: {},
schema: []
},
create(context) {
function handleComment(comment) {
var value = comment.value.trim()
if (value.match(/@flow weak/)) {
context.report(comment, "Do not use Flow 'weak' mode checking, use @flow instead.")
}
}
return {
LineComment: handleComment,
BlockComment: handleComment,
Program() {
const comments = context.getSourceCode().getAllComments()
comments.forEach(handleComment)
}
}
}
}