eslint-config-mitmaro
Advanced tools
Comparing version 5.0.1 to 5.0.2
@@ -6,2 +6,7 @@ # Change Log | ||
## [5.0.2] - 2019-07-18 | ||
### Fixed | ||
- Base config would not override rules | ||
## [5.0.1] - 2019-07-12 | ||
@@ -8,0 +13,0 @@ ### Fixed |
{ | ||
"name": "eslint-config-mitmaro", | ||
"version": "5.0.1", | ||
"version": "5.0.2", | ||
"description": "mitmaro's personal ESLint configurations", | ||
@@ -5,0 +5,0 @@ "main": "src/index.js", |
@@ -53,3 +53,3 @@ 'use strict'; | ||
const resultConfigs = []; | ||
const resultConfigs = [baseConfig]; | ||
for (const configName of configOrder) { | ||
@@ -64,4 +64,3 @@ if (!configsToLoad.includes(configName)) { | ||
resultConfigs.push(baseConfig); | ||
return mergeConfigs(resultConfigs); | ||
}; |
41367
1204