Skip to content
This repository was archived by the owner on Apr 24, 2022. It is now read-only.

Commit f8dc3c6

Browse files
committed
- Maintenance: Add .editorconfig (to set project-aware indent in IDEs upon line break)
- npm: Add recommended `package.json` properties, `author`, `contributors`, `engines` (set to minimum for peer dep. Mocha 6), `keywords`, `dependencies` - npm: Add `lint` script - npm: Update devDeps.
1 parent 61979d4 commit f8dc3c6

3 files changed

Lines changed: 411 additions & 217 deletions

File tree

.editorconfig

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
; EditorConfig file: https://EditorConfig.org
2+
; Install the "EditorConfig" plugin into your editor to use
3+
4+
root = true
5+
6+
[*]
7+
charset = utf-8
8+
end_of_line = lf
9+
insert_final_newline = true
10+
indent_style = space
11+
indent_size = 2
12+
trim_trailing_whitespace = true
13+
14+
[*.md]
15+
indent_size = 4

0 commit comments

Comments
 (0)