eslint-plugin-no-int64-number
v0.0.3
Published
Lint number literal when the absolute values equal to 2^53 or greater
Downloads
5
Maintainers
Readme
eslint-plugin-no-int64-number
Lint number literal when the absolute values equal to 2^53 or greater
Installation
You'll first need to install ESLint:
$ npm i eslint --save-dev
Next, install eslint-plugin-no-int64-number
:
$ npm install eslint-plugin-no-int64-number --save-dev
Usage
Add no-int64-number
to the plugins section of your .eslintrc
configuration file. You can omit the eslint-plugin-
prefix:
{
"plugins": [
"no-int64-number"
]
}
Then configure the rules you want to use under the rules section.
{
"rules": {
"no-int64-number/rule-name": 2
}
}
Supported Rules
- Fill in provided rules here