You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: plugins/core/jetbrains-community/src/software/aws/toolkits/jetbrains/services/amazonq/FeatureDevSessionContext.kt
+10-1Lines changed: 10 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -68,6 +68,12 @@ class FeatureDevSessionContext(val project: Project, val maxProjectSizeBytes: Lo
68
68
"dist/?"
69
69
).map { Regex(it) }
70
70
71
+
// well known source files that do not have extensions
72
+
privateval wellKnownSourceFiles =setOf(
73
+
"Dockerfile",
74
+
"Dockerfile.build"
75
+
)
76
+
71
77
// projectRoot: is the directory where the project is located when selected to open a project.
72
78
val projectRoot = project.guessProjectDir() ?: error("Cannot guess base directory for project ${project.name}")
73
79
@@ -117,6 +123,8 @@ class FeatureDevSessionContext(val project: Project, val maxProjectSizeBytes: Lo
0 commit comments