Skip to content

Filter Explorer

Steve Hartzog edited this page Nov 11, 2017 · 2 revisions

Filter Explorer

teamEssentials.filterExplorer

You can define different groups of files to be be excluded. For instance, one for nodejs backend and one for frontend devs. The default group will be applied in addition to any selected filters. Developers can then set their desired filter with a quickpick.

{
  default: {},
  dev: {
    'node_modules': true,
    '.gitignore': true,
    '.stylelintrc': true,
    '.editorconfig': true,
    '.vscode': true,
    'package.json': true,
    'package-lock.json': true,
    'LICENSE': true,
    'README.md': true
  },
  admin: {}
}

Filter Explorer