eslint-config-love
Advanced tools
Comparing version
@@ -64,3 +64,3 @@ module.exports = { | ||
"quote-props": ["error", "always"], | ||
"quote": ["error", "single"], | ||
"quotes": ["error", "single"], | ||
"semi": "error", | ||
@@ -67,0 +67,0 @@ "semi-spacing": "error", |
@@ -7,3 +7,3 @@ { | ||
], | ||
"version": "0.2.2", | ||
"version": "0.2.3", | ||
"description": "an eslint config made with love", | ||
@@ -10,0 +10,0 @@ "main": "index.js", |
@@ -33,27 +33,11 @@ # eslint-config-love | ||
COMING SOON | ||
#### Atom | ||
1) Install Linter, linter-ui-default and linter-eslint, you can do that by running the following command | ||
`apm install linter linter-ui-default linter-eslint ` | ||
## Rules | ||
TODO.... | ||
TODO..... | ||
### Curly | ||
Enforcing curly bracket around blocks | ||
> This rule is aimed at preventing bugs and increasing code clarity by ensuring that block statements are wrapped in curly braces | ||
```JS | ||
// bad | ||
if (err) | ||
return err; | ||
// good | ||
if (err) { | ||
return err; | ||
} | ||
``` | ||
## FAQ |
4237
-2.66%43
-27.12%