Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Updated libs #68

Merged
merged 2 commits into from
Nov 29, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
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