Skip to content

Commit

Permalink
Upgrade ESLint to 2.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
BYK committed Mar 17, 2016
1 parent e35816b commit 9836fd2
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
3 changes: 2 additions & 1 deletion .eslintrc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ rules:
no-bitwise: 2
no-use-before-define: 1
no-empty: 2
# no-empty-function: 2
no-empty-function: 2
no-new: 2
no-throw-literal: 2
no-loop-func: 2
Expand All @@ -46,6 +46,7 @@ rules:
no-regex-spaces: 2
array-callback-return: 2
no-useless-constructor: 2
no-var: 2
no-magic-numbers: 1

require-jsdoc: 2
Expand Down
4 changes: 2 additions & 2 deletions docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -64,8 +64,8 @@ arguments.
Merging two sets

```js
var first3 = new SuperSet(["a", "b", "c"]);
var from2to5 = new SuperSet(["b", "c", "d", "e"]);
let first3 = new SuperSet(["a", "b", "c"]);
let from2to5 = new SuperSet(["b", "c", "d", "e"]);

first3.union(from2to5); // → SuperSet { "a", "b", "c", "d", "e" }
```
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
"chai": "^3.4.0",
"coveralls": "^2.11.4",
"dirty-chai": "^1.2.2",
"eslint": "^2.3.0",
"eslint": "^2.4.0",
"eslint-plugin-markdown": "1.0.0-beta.1",
"istanbul": "^0.4.0",
"mocha": "^2.3.3",
Expand Down

0 comments on commit 9836fd2

Please sign in to comment.