Skip to content

Commit

Permalink
Merge 07da7f2 into c9f29ab
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelBenin committed Nov 29, 2017
2 parents c9f29ab + 07da7f2 commit 7eba194
Show file tree
Hide file tree
Showing 20 changed files with 2,613 additions and 1,839 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Changelog

### 9.0.0

### Changed

* Updated all dependencies
* See: https://github.com/yannickcr/eslint-plugin-react/issues/1471

## 8.0.0

### Changed
Expand Down
5 changes: 5 additions & 0 deletions gulpfile.babel.js/configs/.eslintrc
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,12 @@
"prefer-arrow-callback": ["error", { "allowNamedFunctions": true }],
"class-methods-use-this": [0],
"jsx-a11y/no-static-element-interactions": [0],
"jsx-a11y/anchor-is-valid": [ "error", {
"components": [ "Link" ],
"specialLink": [ "to" ]
}],
"react/jsx-boolean-value": ["off"],
"react/no-unescaped-entities": ["off"],
"prettier/prettier": ["warn", {
"singleQuote": true,
"semi": true,
Expand Down
2 changes: 1 addition & 1 deletion gulpfile.babel.js/tasks/gulp_client_unit_test.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import gulp from 'gulp';
import path from 'path';

const Server = require('karma').Server;
const { Server } = require('karma');

const karmaAuto = process.env.KARMA_AUTOWATCH;
const singleRun = karmaAuto !== 'on';
Expand Down
Loading

0 comments on commit 7eba194

Please sign in to comment.