Skip to content

Commit b2911ee

Browse files
committed
fix: restrict JSEvaluator to files with a *.js extension
1 parent 3570c48 commit b2911ee

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

  • src/bugmon/evaluator_configs

src/bugmon/evaluator_configs/js.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
class JSConfiguration(BugConfiguration):
1515
"""Simple Browser Evaluator Configuration"""
1616

17-
ALLOWED = ("*.js", "*")
17+
ALLOWED = ("*.js",)
1818

1919
def __init__(self, build_flags: BuildFlags, evaluator: JSEvaluator):
2020
super().__init__(build_flags, evaluator)

0 commit comments

Comments
 (0)