0.3.2 • Published 8 years ago
eslint-plugin-string-literal v0.3.2
eslint-plugin-string-literal
Identifies string literals.
Installation
You'll first need to install ESLint:
$ npm i eslint --save-devNext, install eslint-plugin-string-literal:
$ npm install eslint-plugin-string-literal --save-devNote: If you installed ESLint globally (using the -g flag) then you must also install eslint-plugin-string-literal globally.
Usage
Add string-literal to the plugins section of your .eslintrc configuration file. You can omit the eslint-plugin- prefix:
{
    "plugins": [
        "string-literal"
    ]
}Then configure the rules you want to use under the rules section.
{
    "rules": {
        "string-literal/rule-name": 2
    }
}