Skip to content

Commit 6bb04da

Browse files
continue[bot]nate
authored andcommitted
Apply same security pattern fix to IntelliJ implementation
Remove credentials.* and token.* patterns from IntelliJ security ignore list to match the TypeScript core changes. This ensures consistent behavior across both IDE extensions. Co-authored-by: nate <[email protected]>
1 parent 9367ed6 commit 6bb04da

File tree

1 file changed

+2
-2
lines changed
  • extensions/intellij/src/main/kotlin/com/github/continuedev/continueintellijextension/continue

1 file changed

+2
-2
lines changed

extensions/intellij/src/main/kotlin/com/github/continuedev/continueintellijextension/continue/IntelliJIde.kt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -60,8 +60,8 @@ class IntelliJIDE(
6060
"*.db", "*.sqlite", "*.sqlite3", "*.mdb", "*.accdb",
6161

6262
// Credential and secret files
63-
"*.secret", "*.secrets", "credentials", "credentials.*", "auth.json",
64-
"token", "token.*", "*.token",
63+
"*.secret", "*.secrets", "credentials", "auth.json",
64+
"token", "*.token",
6565

6666
// Backup files that might contain sensitive data
6767
"*.bak", "*.backup", "*.old", "*.orig",

0 commit comments

Comments
 (0)