mirror of
https://github.com/nodejs/node.git
synced 2025-05-23 02:29:32 +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>
37 lines
856 B
JavaScript
37 lines
856 B
JavaScript
/**
|
|
* @fileoverview Rule to flag when initializing octal literal
|
|
* @author Ilya Volodin
|
|
*/
|
|
|
|
"use strict";
|
|
|
|
//------------------------------------------------------------------------------
|
|
// Rule Definition
|
|
//------------------------------------------------------------------------------
|
|
|
|
module.exports = {
|
|
meta: {
|
|
docs: {
|
|
description: "disallow octal literals",
|
|
category: "Best Practices",
|
|
recommended: true,
|
|
url: "https://eslint.org/docs/rules/no-octal"
|
|
},
|
|
|
|
schema: []
|
|
},
|
|
|
|
create(context) {
|
|
|
|
return {
|
|
|
|
Literal(node) {
|
|
if (typeof node.value === "number" && /^0[0-7]/.test(node.raw)) {
|
|
context.report({ node, message: "Octal literals should not be used." });
|
|
}
|
|
}
|
|
};
|
|
|
|
}
|
|
};
|