We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1ea16f6 commit 60ceb16Copy full SHA for 60ceb16
CHANGELOG.md
@@ -4,6 +4,8 @@ This project adheres to [Semantic Versioning](http://semver.org/).
4
This change log adheres to standards from [Keep a CHANGELOG](http://keepachangelog.com).
5
6
## [Unreleased]
7
+### Added
8
+- [`no-named-as-default-member`] to `warnings` canned config
9
10
## [1.5.0] - 2016-04-18
11
### Added
config/warnings.js
@@ -4,7 +4,9 @@
*/
module.exports = {
plugins: ['import'],
- rules: { 'import/no-named-as-default': 1
- , 'import/no-duplicates': 1
- }
+ rules: {
+ 'import/no-named-as-default': 1,
+ 'import/no-named-as-default-member': 1,
+ 'import/no-duplicates': 1,
+ },
12
}
0 commit comments