Add SPDX header to files in the project root directory. Signed-off-by: Albert Esteve <aesteve@redhat.com>
22 lines
360 B
INI
22 lines
360 B
INI
# SPDX-FileCopyrightText: Red Hat, Inc.
|
|
# SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
# https://editorconfig.org/
|
|
|
|
root = true
|
|
|
|
[*]
|
|
indent_style = space
|
|
indent_size = 4
|
|
insert_final_newline = true
|
|
trim_trailing_whitespace = true
|
|
charset = utf-8
|
|
|
|
[{*.go,go.mod,go.sum}]
|
|
# Match gofmt style
|
|
indent_style = tab
|
|
|
|
[Makefile]
|
|
# Make requires tabs.
|
|
indent_style = tab
|