We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1109860 commit 93d1adcCopy full SHA for 93d1adc
src/handlers/merge/merge-gitignore.js
@@ -33,6 +33,12 @@ module.exports = file => {
33
}
34
})
35
36
+ if (lastIgnoreListIndex < projectIgnoreList.length) {
37
+ const lastProjectListFragment = projectIgnoreList
38
+ .slice(lastProjectIgnoreListIndex, projectIgnoreList.length)
39
+ .filter(item => !ignoreList.includes(item) && item.length)
40
+ mergedList.push(...lastProjectListFragment)
41
+ }
42
43
mergedList = mergedList.reduce((list, item) => {
44
if (!item.length || !list.includes(item)) list.push(item)
0 commit comments