Skip to content

Commit 3abc569

Browse files
authoredMay 13, 2017
Chore: Un-disable strict and eol-last in repository (#71)
These rules were originally disabled when the README contained JS code fences that were getting linted. That's no longer the case, so we don't need to override `eslint-config-eslint` anymore.
1 parent 132ea5b commit 3abc569

File tree

3 files changed

+1
-13
lines changed

3 files changed

+1
-13
lines changed
 

‎.eslintrc.js

+1-6
Original file line numberDiff line numberDiff line change
@@ -22,10 +22,5 @@ module.exports = {
2222
"node": true
2323
},
2424

25-
"extends": "eslint",
26-
27-
"rules": {
28-
"strict": "off",
29-
"eol-last": "off"
30-
}
25+
"extends": "eslint"
3126
};

‎lib/.eslintrc.yml

-3
This file was deleted.

‎tests/.eslintrc.yml

-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,2 @@
11
env:
22
mocha: true
3-
4-
rules:
5-
eol-last: 2
6-
strict: [2, "global"]

0 commit comments

Comments
 (0)
Please sign in to comment.