mirror of
https://github.com/nodejs/node.git
synced 2025-05-15 14:41:29 +00:00

PR-URL: https://github.com/nodejs/node/pull/17820 Reviewed-By: Matteo Collina <matteo.collina@gmail.com> Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com>
34 lines
775 B
JavaScript
34 lines
775 B
JavaScript
/**
|
|
* @fileoverview Rule to flag use of continue statement
|
|
* @author Borislav Zhivkov
|
|
*/
|
|
|
|
"use strict";
|
|
|
|
//------------------------------------------------------------------------------
|
|
// Rule Definition
|
|
//------------------------------------------------------------------------------
|
|
|
|
module.exports = {
|
|
meta: {
|
|
docs: {
|
|
description: "disallow `continue` statements",
|
|
category: "Stylistic Issues",
|
|
recommended: false,
|
|
url: "https://eslint.org/docs/rules/no-continue"
|
|
},
|
|
|
|
schema: []
|
|
},
|
|
|
|
create(context) {
|
|
|
|
return {
|
|
ContinueStatement(node) {
|
|
context.report({ node, message: "Unexpected use of continue statement." });
|
|
}
|
|
};
|
|
|
|
}
|
|
};
|