Skip to content
This repository has been archived by the owner on Aug 4, 2020. It is now read-only.

Commit

Permalink
update readme
Browse files Browse the repository at this point in the history
  • Loading branch information
lyleunderwood committed Jan 17, 2018
1 parent 2a15f98 commit 06ab74d
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,8 @@ original ones as well!).
"babel/new-cap": 1,
"babel/object-curly-spacing": 1,
"babel/no-invalid-this": 1,
"babel/semi": 1
"babel/semi": 1,
"babel/no-unused-expressions": 1
}
}
```
Expand All @@ -45,6 +46,7 @@ Each rule corresponds to a core `eslint` rule, and has the same options.
- `babel/object-curly-spacing`: doesn't complain about `export x from "mod";` or `export * as x from "mod";` (🛠)
- `babel/no-invalid-this`: doesn't fail when inside class properties (`class A { a = this.b; }`)
- `babel/semi`: doesn't fail when using `for await (let something of {})`. Includes class properties (🛠)
- `babel/no-unused-expressions`: doesn't fail when using do expressions

#### Deprecated

Expand Down

0 comments on commit 06ab74d

Please sign in to comment.