Skip to content

Commit 60ceb16

Browse files
committed
added no-named-as-default-member to warnings config
1 parent 1ea16f6 commit 60ceb16

File tree

2 files changed

+7
-3
lines changed

2 files changed

+7
-3
lines changed

CHANGELOG.md

+2
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@ This project adheres to [Semantic Versioning](http://semver.org/).
44
This change log adheres to standards from [Keep a CHANGELOG](http://keepachangelog.com).
55

66
## [Unreleased]
7+
### Added
8+
- [`no-named-as-default-member`] to `warnings` canned config
79

810
## [1.5.0] - 2016-04-18
911
### Added

config/warnings.js

+5-3
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,9 @@
44
*/
55
module.exports = {
66
plugins: ['import'],
7-
rules: { 'import/no-named-as-default': 1
8-
, 'import/no-duplicates': 1
9-
}
7+
rules: {
8+
'import/no-named-as-default': 1,
9+
'import/no-named-as-default-member': 1,
10+
'import/no-duplicates': 1,
11+
},
1012
}

0 commit comments

Comments
 (0)