Skip to content

Commit

Permalink
Disabled func-names (#31)
Browse files Browse the repository at this point in the history
  • Loading branch information
tclindner authored Dec 11, 2018
1 parent bc43b04 commit f72b3a2
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 7 deletions.
5 changes: 1 addition & 4 deletions .eslintrc.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,3 @@
{
"extends": "./index.js",
"rules": {
"no-magic-numbers": "off"
}
"extends": "./index.js"
}
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.1.0] - 2018-12-10
### Removed
* Disabled [func-names](https://eslint.org/docs/rules/func-names) rule.

## [5.0.0] - 2018-11-17
### Added
* [no-control-regex](https://eslint.org/docs/rules/no-control-regex)
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-config-tc",
"version": "5.0.1",
"version": "5.1.0",
"description": "ESLint shareable config for JavaScript projects",
"keywords": [
"eslintconfig",
Expand Down Expand Up @@ -30,7 +30,7 @@
},
"devDependencies": {
"chai": "^4.2.0",
"eslint": "^5.9.0",
"eslint": "^5.10.0",
"eslint-formatter-pretty": "^2.0.0",
"eslint-plugin-import": "^2.14.0",
"is-plain-obj": "^1.1.0",
Expand All @@ -43,7 +43,7 @@
"eslint-config-airbnb-base": "^13.1.0"
},
"peerDependencies": {
"eslint": "^5.9.0",
"eslint": "^5.10.0",
"eslint-plugin-import": "^2.14.0"
},
"engines": {
Expand Down
1 change: 1 addition & 0 deletions rules/style.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ module.exports = {
'brace-style': 'error',
'camelcase': 'error',
'comma-dangle': ['error', 'never'],
'func-names': 'off',
'func-style': ['error', 'expression'],
'function-paren-newline': ['error', 'never'],
'id-length': ['error', {
Expand Down

0 comments on commit f72b3a2

Please sign in to comment.