https://github.com/farzonl/eslint-lowercase-plugin
eslint does not enforce identifiers starting with a lowercase letter.
https://github.com/farzonl/eslint-lowercase-plugin
abstract-syntax-tree esprima node-js
Last synced: 2 months ago
JSON representation
eslint does not enforce identifiers starting with a lowercase letter.
- Host: GitHub
- URL: https://github.com/farzonl/eslint-lowercase-plugin
- Owner: farzonl
- Created: 2018-03-03T07:29:09.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2024-09-24T10:46:35.000Z (about 1 year ago)
- Last Synced: 2024-10-05T22:41:36.075Z (about 1 year ago)
- Topics: abstract-syntax-tree, esprima, node-js
- Language: JavaScript
- Size: 204 KB
- Stars: 0
- Watchers: 1
- Forks: 1
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# eslint-plugin-lowercase-naming
[](https://travis-ci.com/farzonl/eslint-lowerCase-plugin)
enforces properties start with a lowercase letter
## Installation
You'll first need to install [ESLint](http://eslint.org):
```
$ npm i eslint --save-dev
```Next, install `eslint-plugin-lowercase-naming`:
```
$ npm install eslint-plugin-lowercase-naming --save-dev
```**Note:** If you installed ESLint globally (using the `-g` flag) then you must also install `eslint-plugin-lowercase-naming` globally.
## Usage
Add `lowercase-naming` to the plugins section of your `.eslintrc` configuration file. You can omit the `eslint-plugin-` prefix:
```json
{
"plugins": [
"lowercase-naming"
]
}
```Then configure the rules you want to use under the rules section.
```json
{
"rules": {
"lowercase-naming/rule-name": 2
}
}
```## Supported Rules
* Fill in provided rules here