blob: 1b4d8fb76c16b5f8d7c86bbb99c0224380232c99 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
# Copyright 2025 Steven Le Rouzic
#
# SPDX-License-Identifier: BSD-3-Clause
load("@rules_python//python:py_binary.bzl", "py_binary")
load("@hedron_compile_commands//:refresh_compile_commands.bzl", "refresh_compile_commands")
package(
default_applicable_licenses = ["//:license"],
)
py_binary(
name = "fix_line_endings",
srcs = [
"fix_line_endings.py",
],
visibility = ["//:__subpackages__"],
)
refresh_compile_commands(
name = "refresh_clangd",
targets = "//...",
)
|