https://github.com/raineorshine/eslint-config-raine
Raine's personal eslint configuration
https://github.com/raineorshine/eslint-config-raine
eslint eslintconfig
Last synced: 2 months ago
JSON representation
Raine's personal eslint configuration
- Host: GitHub
- URL: https://github.com/raineorshine/eslint-config-raine
- Owner: raineorshine
- License: isc
- Created: 2020-11-09T20:43:29.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2023-09-28T16:21:29.000Z (over 1 year ago)
- Last Synced: 2025-04-06T04:14:59.986Z (2 months ago)
- Topics: eslint, eslintconfig
- Language: JavaScript
- Homepage:
- Size: 164 KB
- Stars: 0
- Watchers: 2
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README-template.md
- License: LICENSE
Awesome Lists containing this project
README
# eslint-config-raine
[](https://npmjs.org/package/eslint-config-raine)Raine's personal eslint configuration
https://eslint.org/docs/developer-guide/shareable-configs
#### Base config:
- standard#### Plugins:
<%= peerDependencies
.map(plugin => '- ' + plugin)
.join('\n')
%>## Install
Install `eslint-config-raine` with eslint plugins:
```
npm install --save-dev eslint-config-raine <%=peerDependencies.join(' ')%>
```## Usage
#### package.json
```json
"eslintConfig": {
"extends": [
"raine"
]
}
```or
#### .eslintrc.json
```json
{
"extends": "raine"
}
```## Rules
These rules will automatically be used when you extend the config as shown above:
```json
<%= JSON.stringify(rules, null, 2) %>
```