You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
39 lines
875 B
39 lines
875 B
/** |
|
* @fileoverview Rule to flag use of continue statement |
|
* @author Borislav Zhivkov |
|
*/ |
|
|
|
"use strict"; |
|
|
|
//------------------------------------------------------------------------------ |
|
// Rule Definition |
|
//------------------------------------------------------------------------------ |
|
|
|
module.exports = { |
|
meta: { |
|
type: "suggestion", |
|
|
|
docs: { |
|
description: "disallow `continue` statements", |
|
category: "Stylistic Issues", |
|
recommended: false, |
|
url: "https://eslint.org/docs/rules/no-continue" |
|
}, |
|
|
|
schema: [], |
|
|
|
messages: { |
|
unexpected: "Unexpected use of continue statement." |
|
} |
|
}, |
|
|
|
create(context) { |
|
|
|
return { |
|
ContinueStatement(node) { |
|
context.report({ node, messageId: "unexpected" }); |
|
} |
|
}; |
|
|
|
} |
|
};
|
|
|