Releases: peopledoc/eslint-config-peopledoc
Releases · peopledoc/eslint-config-peopledoc
v1.6.0
v1.5.0
v1.4.0
1.2.1: Fix missing ES5 config
Fix
- Missing es5 config when installing 1.2.0 #31
Update
npm install --save-dev peopledoc/eslint-config-peopledoc#1.2.1
1.2.0: New ES5-only config
Add a config for ES5-only projects, e.g. legacy projects that aren't using a transpiler like babeljs
.
Based on https://github.com/nkt/eslint-plugin-es5.
How to Update?
1.2.0
was broken install 1.2.1
instead:
npm install --save-dev peopledoc/eslint-config-peopledoc#1.2.1
How to use?
Edit .eslintrc
to add
extends: ['peopledoc/es5']
1.1.0: Support in Ember Tests by default
#27 Introduces support for ember
's tests by default in the peopledoc/ember
config.
This simplify configuration as there is no more need for ./tests/.eslintrc.js
🎉
Leverage embertest
globals.
How to migrate?
-
Update to
npm install --save-dev peopledoc/eslint-config-peopledoc#1.1.0
-
Remove your
./tests/.eslintrc.js
1.0.0
First stable release.
Installation
In your project, remove exisiting eslint's plugins or configuration, then:
npm install --save-dev peopledoc/eslint-config-peopledoc#1.0.0
Usage
💡 ask the #team-js for help.
In your project, edit your eslint
configuration to extend eslint-config-peopledoc
:
vanilla JS:
extends: ['peopledoc']
Ember:
extends: ['peopledoc/ember']