| 1234567891011121314151617181920 | ; EditorConfig is awesome: http://EditorConfig.org; top-most EditorConfig fileroot = true; base rules[*]end_of_line = lfinsert_final_newline = falseindent_style = spaceindent_size = 4charset = utf-8trim_trailing_whitespace = true; The default indent on package.json is 2 spaces, better to keep it so we can; use `npm install --save` and other features that rewrites the package.json; file automatically[package.json]indent_style = spaceindent_size = 2
 |