123456789101112131415161718192021222324252627282930 |
- # top-most EditorConfig file
- root = true
- # Unix-style newlines with a newline ending every file
- [*]
- indent_style = space
- indent_size = 4
- insert_final_newline = true
- trim_trailing_whitespace = true
- end_of_line = lf
- charset = utf-8
- [*.py]
- max_line_length = 119
- # The JSON files contain newlines inconsistently
- [*.json]
- indent_size = 2
- insert_final_newline = ignore
- # Minified JavaScript files shouldn't be changed
- [**.min.js]
- indent_style = ignore
- insert_final_newline = ignore
- # Matches the exact files either package.json or .travis.yml
- [{package.json,.travis.yml}]
- indent_style = space
- indent_size = 2
|