Skip to content

Commit

Permalink
5.2 (#32)
Browse files Browse the repository at this point in the history
* Bump copyright year and deps

* Update max-params to 6
  • Loading branch information
tclindner authored Jan 28, 2019
1 parent f72b3a2 commit c8a090d
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 9 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,10 @@ This project adheres to [Semantic Versioning](http://semver.org/).

### Removed

## [5.2.0] - 2019-01-27
### Changed
* Updated [max-params](https://eslint.org/docs/rules/max-params) rule to allow 6 params.

## [5.1.0] - 2018-12-10
### Removed
* Disabled [func-names](https://eslint.org/docs/rules/func-names) rule.
Expand Down
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
The MIT License (MIT)

Copyright (c) 2016-2018 tclindner
Copyright (c) 2016-2019 tclindner

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -62,4 +62,4 @@ Please see [CHANGELOG.md](CHANGELOG.md).

## License

Copyright (c) 2016-2018 Thomas Lindner. Licensed under the MIT license.
Copyright (c) 2016-2019 Thomas Lindner. Licensed under the MIT license.
12 changes: 6 additions & 6 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "eslint-config-tc",
"version": "5.1.0",
"version": "5.2.0",
"description": "ESLint shareable config for JavaScript projects",
"keywords": [
"eslintconfig",
Expand Down Expand Up @@ -30,9 +30,9 @@
},
"devDependencies": {
"chai": "^4.2.0",
"eslint": "^5.10.0",
"eslint-formatter-pretty": "^2.0.0",
"eslint-plugin-import": "^2.14.0",
"eslint": "^5.12.1",
"eslint-formatter-pretty": "^2.1.1",
"eslint-plugin-import": "^2.15.0",
"is-plain-obj": "^1.1.0",
"mocha": "^5.2.0",
"npm-package-json-lint": "^3.4.1",
Expand All @@ -43,8 +43,8 @@
"eslint-config-airbnb-base": "^13.1.0"
},
"peerDependencies": {
"eslint": "^5.10.0",
"eslint-plugin-import": "^2.14.0"
"eslint": "^5.12.1",
"eslint-plugin-import": "^2.15.0"
},
"engines": {
"node": ">=6.0.0",
Expand Down
2 changes: 1 addition & 1 deletion rules/style.js
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ module.exports = {
'max-len': 'off',
'max-lines-per-function': 'error',
'max-nested-callbacks': ['error', 4],
'max-params': ['error', 4],
'max-params': ['error', 6],
'max-statements': ['error', 12],
'max-statements-per-line': ['error', {max: 1}],
'new-cap': 'error',
Expand Down

0 comments on commit c8a090d

Please sign in to comment.