1
0
Fork 0
mirror of https://github.com/mozilla/pdf.js.git synced 2025-04-19 06:38:07 +02:00

Uses editorconfig to maintain consistent coding styles

Removes the following as they unnecessary
/* -*- Mode: Java; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab: */
This commit is contained in:
Manas 2015-11-13 00:04:33 +05:30
parent 9e335a61fd
commit a2ba1b8189
133 changed files with 18 additions and 259 deletions

17
.editorconfig Normal file
View file

@ -0,0 +1,17 @@
root = true
[*.{js,jsm,html,css}]
charset = utf-8
end_of_line = lf
indent_size = 2
indent_style = space
insert_final_newline = true
max_line_length = 80
trim_trailing_whitespace = true
[*.md]
max_line_length = 0
trim_trailing_whitespace = false
[COMMIT_EDITMSG]
max_line_length = 0