-
## Proposal
I think that it would be a great addition to let users enable this essential ESLint feature easily, without worrying about adding huge rules inside the `package.json`.
## Example usa…
-
ESLint has robust plugin support: http://eslint.org/docs/developer-guide/working-with-plugins
How should we manage framework-specific rules?
-
.eslintrc:
``` json
{
"env": {
"es6": false
},
"rules": {
"no-var": 2
}
}
```
index.js:
``` js
'use strict';
var test = 1;
global.console.log(test);
```
$ eslint .
> index.js
> …
-
I was trying out Visual Studio recently and realized that it uses CSS Lint. As one of the creators of [stylelint](https://github.com/stylelint/stylelint), I am writing to ask you to consider adding st…
-
Just tried to install eslint for the first time following the readme and I got the following errors with `eslint --init` choosing the standard config.
**What version of ESLint are you using?**
3.0.1
…
rgant updated
6 years ago
-
☝️ Greenkeeper’s [updated Terms of Service](https://mailchi.mp/ebfddc9880a9/were-updating-our-terms-of-service) will come into effect on April 6th, 2018.
## Version **15.1.6** of [semantic-release](…
-
1. I use version 2.0 (just installed)
2. I typed in my command line 'eslint --init', answered the questions and tried to save as an js of jaml file
3. I expected to save my config file on my current d…
-
So, instead of having a separate .eslintrc file, there are defined presets that can be leveraged via custom configuration objects in package.json, [like Gemfile, requirements.txt, etc., but for JS].
…
-
## Type of issue
Question to people who did the migration from Prebid 0.X to 1.X.
Are you facing a drop of impression requests with some SSPs (for the same inventory size) ?
Are you facing a drop o…
-
strict mode is getting more lax as more features are defined, I particularly run into this when strict mode code that is valid in io.js throws exceptions in node v0.10, it would be nice to have this …