eslint-config-love
Advanced tools
Comparing version 0.2.6 to 0.3.0
@@ -0,0 +0,0 @@ module.exports = { |
@@ -7,3 +7,3 @@ { | ||
], | ||
"version": "0.2.6", | ||
"version": "0.3.0", | ||
"description": "an eslint config made with love", | ||
@@ -10,0 +10,0 @@ "main": "index.js", |
@@ -0,3 +1,7 @@ | ||
![https://github.com/DaBultz/eslint-config-love/issues/2](https://img.shields.io/badge/maintainer-looking%20for%20maintainer-red) | ||
# eslint-config-love | ||
## Table of Content | ||
## About | ||
@@ -40,4 +44,29 @@ | ||
TODO..... | ||
See [RULES.md](RULES.md) | ||
## FAQ | ||
### I disagree with a rule | ||
If you disagree with a rule, you can modify the .eslintrc to override anyrules provided in this config, lets say you want to use spaces instead of tabs, you can simply add the following rule to .eslintrc | ||
```JSON | ||
"rules": { | ||
"indent": ["error", "2"] | ||
} | ||
``` | ||
So your .eslintrc file looks like this now: | ||
```JSON | ||
{ | ||
"extends": "love", | ||
"rules": { | ||
"indent": ["error", "2"] | ||
} | ||
} | ||
``` | ||
### How can I contribute? | ||
Everyone is welcome to contribute to the project, make editor plugins and so on. | ||
Noteworthy Projects: | ||
* NONE ATM... :( |
12562
4
72