Skip to content

Commit

Permalink
Merge pull request #350 from babel/fix-eslint
Browse files Browse the repository at this point in the history
7.3.3
  • Loading branch information
jamesplease committed May 14, 2016
2 parents efd805e + 3dccc60 commit e2a466a
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 1 deletion.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
### [7.3.3](https://github.com/babel/babel-library-boilerplate/releases/tag/7.3.3)

- Fixes issue where ESLint would explode due to a lack of specifying `parserOptions`.
This was caused by the upgrade to ESLint 2.0.0 in v7.3.0

### [7.3.2](https://github.com/babel/babel-library-boilerplate/releases/tag/7.3.2)

- Ensures that the intended naming updates from `7.3.0` work in more situations
Expand Down
4 changes: 4 additions & 0 deletions app/templates/.eslintrc
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
{
"parser": "babel-eslint",
"parserOptions": {
"ecmaVersion": 6,
"sourceType": "module"
},
"rules": {},
"env": {
"browser": true,
Expand Down
4 changes: 4 additions & 0 deletions app/templates/test/.eslintrc
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
{
"extends": "./setup/.globals.json",
"parser": "babel-eslint",
"parserOptions": {
"ecmaVersion": 6,
"sourceType": "module"
},
"rules": {
"strict": 0,
"quotes": [2, "single"],
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "generator-babel-boilerplate",
"version": "7.3.2",
"version": "7.3.3",
"description": "Generate a boilerplate for a library written in ES2015 for Node and the browser.",
"main": "app/index.js",
"scripts": {
Expand Down

0 comments on commit e2a466a

Please sign in to comment.