blob: b2ffbdd2f8317b467e26002f4ac47b28ae997d42 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
|
# .editorconfig - How files in sbc-harness should be formatted
#
# Copyright (C) 2024 Luke T. Shumaker <lukeshu@lukeshu.com>
# SPDX-License-Identifier: AGPL-3.0-or-later
root = true
[*]
# Custom (sbc-harness) options for scripting
_mode = unknown
# Standard (editorconfig.org) options
charset = utf-8
end_of_line = lf
indent_style = tab
insert_final_newline = true
trim_trailing_whitespace = true
[*.{c,h}]
_mode = c
[Makefile]
_mode = make
[{CMakeLists.txt,*.cmake}]
_mode = cmake
[*.md]
_mode = markdown
[*.9p{,.wip}]
_mode = 9p
[{3rd-party/linux-errno.txt.gen,cmd/srv9p/static.h.gen}]
_mode = sh
[libusb/include/libusb/tusb_helpers.h.gen]
_mode = bash
[{lib9p/idl.gen,lib9p/include/lib9p/linux-errno.h.gen,stack.py}]
_mode = python3
indent_style = space
indent_size = 4
[{.editorconfig,.gitmodules}]
_mode = ini
[.gitignore]
_mode = gitignore
|