Skip to content

Commit 5c32d79

Browse files
authored
Merge pull request #3 from NotNinja/develop
Release 0.2.1
2 parents fd6e4ff + ea641af commit 5c32d79

File tree

4 files changed

+9
-3
lines changed

4 files changed

+9
-3
lines changed

CHANGES.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## Version 0.2.1, 2017.07.03
2+
3+
* Fix incorrect value type for `max-statements-per-line` rule
4+
15
## Version 0.2.0, 2017.07.03
26

37
* Add missing rules as of ESLint 4

es5.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -252,7 +252,9 @@ module.exports = {
252252
'max-statements': 'off',
253253
'max-statements-per-line': [
254254
'error',
255-
1
255+
{
256+
'max': 1
257+
}
256258
],
257259
'multiline-ternary': 'off',
258260
'new-cap': 'error',

package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "eslint-config-notninja",
3-
"version": "0.2.0",
3+
"version": "0.2.1",
44
"description": "Standard ESLint configurations for !ninja packages",
55
"homepage": "https://github.com/NotNinja/eslint-config-notninja",
66
"bugs": {

0 commit comments

Comments
 (0)