@zendeskgarden/eslint-config
Advanced tools
Comparing version 7.0.10 to 7.1.0
@@ -5,2 +5,12 @@ # Change Log | ||
<a name="7.1.0"></a> | ||
# [7.1.0](https://github.com/zendeskgarden/eslint-config/compare/v7.0.10...v7.1.0) (2019-01-09) | ||
### Features | ||
* upgrade to support eslint 5.12.x ([#39](https://github.com/zendeskgarden/eslint-config/issues/39)) ([3c93aee](https://github.com/zendeskgarden/eslint-config/commit/3c93aee)) | ||
<a name="7.0.10"></a> | ||
@@ -7,0 +17,0 @@ ## [7.0.10](https://github.com/zendeskgarden/eslint-config/compare/v7.0.9...v7.0.10) (2018-12-10) |
@@ -11,3 +11,3 @@ { | ||
}, | ||
"version": "7.0.10", | ||
"version": "7.1.0", | ||
"main": "index.js", | ||
@@ -26,9 +26,9 @@ "files": [ | ||
"babel-eslint": "^10.x", | ||
"eslint": "^5.10.x" | ||
"eslint": "^5.12.x" | ||
}, | ||
"devDependencies": { | ||
"babel-eslint": "10.0.1", | ||
"eslint": "5.10.0", | ||
"eslint": "5.12.0", | ||
"eslint-plugin-notice": "0.7.7", | ||
"husky": "1.2.0", | ||
"husky": "1.3.1", | ||
"prettier-package-json": "2.0.1", | ||
@@ -44,10 +44,3 @@ "standard-version": "4.4.0" | ||
"access": "public" | ||
}, | ||
"husky": { | ||
"hooks": { | ||
"pre-commit": "yarn lint && yarn format", | ||
"post-checkout": "if [[ $GIT_PARAMS == *1 ]]; then yarn --ignore-scripts --pure-lockfile; fi", | ||
"post-merge": "yarn --ignore-scripts --pure-lockfile" | ||
} | ||
} | ||
} |
@@ -52,4 +52,4 @@ # Garden ESLint Config [![npm version](https://img.shields.io/npm/v/@zendeskgarden/eslint-config.svg?style=flat-square)](https://www.npmjs.com/package/@zendeskgarden/eslint-config) [![Build Status](https://img.shields.io/travis/zendeskgarden/eslint-config/master.svg?style=flat-square)](https://travis-ci.org/zendeskgarden/eslint-config) [![Dependency Status](https://img.shields.io/david/dev/zendeskgarden/eslint-config.svg?style=flat-square)](https://david-dm.org/zendeskgarden/eslint-config?type=dev) | ||
Copyright 2018 Zendesk | ||
Copyright 2019 Zendesk | ||
Licensed under the [Apache License, Version 2.0](LICENSE.md) |
@@ -128,2 +128,4 @@ /** | ||
'no-useless-call': 0, | ||
// disallow unnecessary `catch` clauses | ||
'no-useless-catch': 2, | ||
// disallow unnecessary concatenation of literals or template literals | ||
@@ -130,0 +132,0 @@ 'no-useless-concat': 2, |
46248
689