[parser tests] Support `htmlVariantLanguage` option name
[mediawiki.git] / .editorconfig
blob28a378b1b9f7ed234037fe17d8ba451e5c4e92c9
1 root = true
3 [*]
4 indent_style = tab
5 indent_size = tab
6 tab_width = 4
7 end_of_line = lf
8 charset = utf-8
9 trim_trailing_whitespace = true
10 insert_final_newline = true
12 # Ensure text editors don't turn leading spaces into tabs,
13 # e.g. in multi-line bullet list items
14 [*.md]
15 indent_style = space
16 indent_size = 2
18 # Tabs may not be valid YAML
19 # @see https://yaml.org/spec/1.2/spec.html#id2777534
20 [*.{yml,yaml}]
21 indent_style = space
22 indent_size = 2
24 [.git/**]
25 indent_style = space
26 indent_size = 2
28 # Trailing whitespace is intended in parser test files
29 # T278066
30 [**/tests/parser/*.txt]
31 trim_trailing_whitespace = false