Skip to content

Commit c2c320a

Browse files
committed
Add support for generating files for multiple packages
This allows us to reduce the number of CodeQL CLI invocations for performance improvements.
1 parent 156e097 commit c2c320a

File tree

2 files changed

+204
-196
lines changed

2 files changed

+204
-196
lines changed

scripts/generate_rules/coding_standards_utils.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,6 @@ def render_template(template: Type[Template], args: Dict[str, str], package_name
5959
output = template.render(args, package_name=package_name)
6060
file.write(output)
6161

62-
6362
def write_exclusion_template(template: Type[Template], args: Dict[str, str], package_name: str, language_name: str, file: TextIO):
6463
"""Render the template with the given args, and write it to the file using \n newlines."""
6564
output = template.render(

0 commit comments

Comments
 (0)