File tree Expand file tree Collapse file tree 2 files changed +7
-7
lines changed Expand file tree Collapse file tree 2 files changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -72,9 +72,9 @@ export const DEFAULT_SECURITY_IGNORE_DIRS = [
7272
7373 // IDE directories that may contain cached credentials
7474 // For now excluding, reasons for this unclear
75- // ".vscode/",
76- // ".idea/",
77- // ".vs/",
75+ ".vscode/" ,
76+ ".idea/" ,
77+ ".vs/" ,
7878
7979 // Cloud provider credential directories
8080 ".aws/" ,
Original file line number Diff line number Diff line change @@ -88,11 +88,11 @@ describe("isSecurityConcern", () => {
8888 } ) ;
8989
9090 it ( "should detect IDE directories as security concerns" , ( ) => {
91- // expect(isSecurityConcern(".vscode/")).toBe(true);
92- // expect(isSecurityConcern(".idea/")).toBe(true);
93- // expect(isSecurityConcern(".vs/")).toBe(true);
91+ expect ( isSecurityConcern ( ".vscode/" ) ) . toBe ( true ) ;
92+ expect ( isSecurityConcern ( ".idea/" ) ) . toBe ( true ) ;
93+ expect ( isSecurityConcern ( ".vs/" ) ) . toBe ( true ) ;
9494 expect ( isSecurityConcern ( ".vscode/settings.json" ) ) . toBe ( true ) ;
95- // expect(isSecurityConcern(".idea/workspace.xml")).toBe(true);
95+ expect ( isSecurityConcern ( ".idea/workspace.xml" ) ) . toBe ( true ) ;
9696 } ) ;
9797
9898 it ( "should detect cloud provider directories as security concerns" , ( ) => {
You can’t perform that action at this time.
0 commit comments