New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

eslint-config-love

Package Overview
Dependencies
Maintainers
1
Versions
95
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

eslint-config-love - npm Package Compare versions

Comparing version

to
0.2.3

2

index.js

@@ -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