Permalink
Name already in use
A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
codeql-action/node_modules/eslint/lib/rules/no-octal.js
Go to fileThis commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
45 lines (35 sloc)
1021 Bytes
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* @fileoverview Rule to flag when initializing octal literal | |
* @author Ilya Volodin | |
*/ | |
"use strict"; | |
//------------------------------------------------------------------------------ | |
// Rule Definition | |
//------------------------------------------------------------------------------ | |
module.exports = { | |
meta: { | |
type: "suggestion", | |
docs: { | |
description: "disallow octal literals", | |
category: "Best Practices", | |
recommended: true, | |
url: "https://eslint.org/docs/rules/no-octal" | |
}, | |
schema: [], | |
messages: { | |
noOcatal: "Octal literals should not be used." | |
} | |
}, | |
create(context) { | |
return { | |
Literal(node) { | |
if (typeof node.value === "number" && /^0[0-9]/u.test(node.raw)) { | |
context.report({ | |
node, | |
messageId: "noOcatal" | |
}); | |
} | |
} | |
}; | |
} | |
}; |