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

Commit

Permalink
1.0.0
Browse files Browse the repository at this point in the history
Close #58
Close #59
Close #60
  • Loading branch information
MoOx committed Aug 8, 2015
1 parent 7b7cf31 commit 7674f8b
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 3 deletions.
2 changes: 2 additions & 0 deletions .eslintrc
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,8 @@ rules:
dot-location: [2, "property"]

one-var: [2, "never"]
#no-var: [2]
prefer-const: [2]
no-bitwise: [2]

object-curly-spacing: [2, "never"]
Expand Down
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
# 1.0.0- 2015-08-08

- Added: support for eslint 1.x
- Removed: support for eslint 1.x-rc*
- Removed: support for eslint 0.x

# 0.14.2 - 2015-07-18

- Fixed: support for eslint 1.x-rc
Expand Down
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "eslint-loader",
"version": "0.14.2",
"version": "1.0.0",
"description": "eslint loader (for webpack)",
"keywords": [
"lint",
Expand All @@ -25,14 +25,14 @@
"index.js"
],
"peerDependencies": {
"eslint": "0.21 - 0.24 || ~1.0.0-rc-0"
"eslint": "^1.0.0"
},
"dependencies": {
"loader-utils": "^0.2.7",
"object-assign": "^3.0.0"
},
"devDependencies": {
"eslint": "^1.0.0-rc-1",
"eslint": "^1.0.0",
"eslint-friendly-formatter": "^1.0.3",
"tape": "^4.0.0",
"webpack": "^1.8.4"
Expand Down

1 comment on commit 7674f8b

@nkbt
Copy link
Contributor

@nkbt nkbt commented on 7674f8b Aug 9, 2015

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Awesome!

Please sign in to comment.