1root = true 2 3[*] 4indent_style = space 5indent_size = 2 6end_of_line = lf 7charset = utf-8 8trim_trailing_whitespace = true 9insert_final_newline = true 10max_line_length = 200 11 12[*.js] 13block_comment_start = /* 14block_comment = * 15block_comment_end = */ 16 17[*.yml] 18indent_size = 1 19 20[package.json] 21indent_style = tab 22 23[lib/core.json] 24indent_style = tab 25 26[CHANGELOG.md] 27indent_style = space 28indent_size = 2 29 30[{*.json,Makefile}] 31max_line_length = off 32 33[test/{dotdot,resolver,module_dir,multirepo,node_path,pathfilter,precedence}/**/*] 34indent_style = off 35indent_size = off 36max_line_length = off 37insert_final_newline = off 38