UNPKG

399 BPlain TextView Raw
1# top-most EditorConfig file
2root = true
3
4# Unix-style newlines with a newline ending every file
5[*]
6end_of_line = lf
7insert_final_newline = true
8
9# Matches multiple files with brace expansion notation
10# Set default charset
11[*.{js,ts,mjs,cjs}]
12charset = utf-8
13indent_style = space
14indent_size = 2
15
16# Matches the exact files either package.json
17[{package.json}]
18indent_style = space
19indent_size = 2
20