diff options
author | Tobias Nießen <tniessen@tnie.de> | 2018-03-21 19:11:52 +0100 |
---|---|---|
committer | Myles Borins <mylesborins@google.com> | 2018-08-17 15:51:23 -0400 |
commit | 36ffc3b69b2ce9b75599188f14721d6c78152aeb (patch) | |
tree | 29e3c4d21a150604ea41a070a5602bf7369ec584 /.editorconfig | |
parent | ff4c30e9bbce54ae7de284cced9845dd7866c2b8 (diff) | |
download | node-new-36ffc3b69b2ce9b75599188f14721d6c78152aeb.tar.gz |
tools: remove src dir from JS editorconfig rule
The src directory does not contain any JavaScript files, so there is no
need to match it.
PR-URL: https://github.com/nodejs/node/pull/19521
Reviewed-By: Shingo Inoue <leko.noor@gmail.com>
Reviewed-By: Gibson Fahnestock <gibfahn@gmail.com>
Diffstat (limited to '.editorconfig')
-rw-r--r-- | .editorconfig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.editorconfig b/.editorconfig index 1c1b441854..83dd993de0 100644 --- a/.editorconfig +++ b/.editorconfig @@ -9,7 +9,7 @@ insert_final_newline = true [vcbuild.bat] end_of_line = crlf -[{lib,src,test}/**.js] +[{lib,test}/**.js] indent_style = space indent_size = 2 |