tomi / vscode-js-complexity-analysis

Produce a complexity analysis report of your JS project
MIT License
16 stars 4 forks source link

Analysis ignoring exclusions #9

Closed mikehans closed 8 years ago

mikehans commented 8 years ago

Project analyser is ignoring the search.exclude setting and any complexityanalysis.exclude settings.

The search.exclude is the default setting and contains the following:

    "search.exclude": {
        "**/node_modules": true,
        "**/bower_components": true
    },

The node_modules folder is being excluded but not the bower_components folder.

No settings in the complexityanalysis.exclude setting get picked up either.

VSCode v:1.4 Plugin v: 1.0.1

gyurkoz commented 8 years ago

Same issue here. Unfortunately there is no way to define exclude now.

tomi commented 8 years ago

Thanks for reporting this! You are absolute correct. There was a bug in the code that caused them to not work as intended. This should be fixed in the latest release 1.0.2. Let me know if the problem persists.

mikehans commented 8 years ago

Tested and it works fine. Makes a big difference. Thanks.