0
1
mirror of https://gitlab.com/xn-02f/react-boilerplate synced 2023-04-22 17:56:08 +00:00
react-boilerplate/.editorconfig
huiyifyj bd7ff59ec4
Fix editorconfig by removing blank space between exact files
Remove blank space between exact files (*.yml and package.json).
Can't constrain package.json file if comma is followed by blank space.

https://editorconfig.org
{s1,s2,s3}  Matches any of the strings given (separated by commas)
            (Available since EditorConfig Core 0.11.0)
2020-05-07 00:32:00 +08:00

18 lines
312 B
INI
Executable File

# EditorConfig
# Top-most EditorConfig file
root = true
# General settings
[*]
indent_size = 4
charset = utf-8
end_of_line = lf
indent_style = space
insert_final_newline = true
trim_trailing_whitespace = true
# Matches the exact files either package.json or .travis.yml
[{*.yml,package.json}]
indent_size = 2