Whamcloud - gitweb
LU-6142 lfsck: Fix style issues for lfsck_lib.c
[fs/lustre-release.git] / .editorconfig
1 # SPDX-License-Identifier: GPL-2.0
2
3 #
4 # This file is part of Lustre, http://www.lustre.org/
5 #
6 # .editorconfig
7 #
8 # EditorConfig for Lustre: https://editorconfig.org
9 #
10
11 # Top-most EditorConfig file
12 root = true
13
14 # Unix-style newlines with a newline ending every file
15 [*]
16 end_of_line = lf
17 insert_final_newline = true
18 indent_size = 8
19 indent_style = tab
20 max_line_length = 80
21
22 # C style config
23 [*.{c,cpp,h}]
24 indent_size = 8
25 indent_style = tab
26
27 # Python style config
28 [*.py]
29 indent_size = 8
30 indent_style = tab