Fix lint Closes #405 PiperOrigin-RevId: 232697351
diff --git a/internal/build_defs.bzl b/internal/build_defs.bzl index b300f90..ef73fa2 100644 --- a/internal/build_defs.bzl +++ b/internal/build_defs.bzl
@@ -260,6 +260,9 @@ allow_files = [".ts", ".tsx"], mandatory = True, ), + "compile_angular_templates": attr.bool( + doc = """Run the Angular ngtsc compiler under ts_library""", + ), "compiler": attr.label( doc = """Sets a different TypeScript compiler binary to use for this library. For example, we use the vanilla TypeScript tsc.js for bootstrapping, @@ -341,9 +344,6 @@ """, default = Label("@npm//typescript:typescript__typings"), ), - "compile_angular_templates": attr.bool( - doc = """Run the Angular ngtsc compiler under ts_library""", - ), "supports_workers": attr.bool( doc = """Intended for internal use only. Allows you to disable the Bazel Worker strategy for this library.