forked from pehandersen-jabra/jabra-node-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.editorconfig
More file actions
37 lines (29 loc) · 774 Bytes
/
.editorconfig
File metadata and controls
37 lines (29 loc) · 774 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
# Editorconfig file for consistent code style.
# https://EditorConfig.org
# You should probably install the VSCode extension for editorconfig to make
# the best use of this file: https://marketplace.visualstudio.com/items?itemName=EditorConfig.EditorConfig
# Do not traverse the filesystem any further up
root = true
# Default configuration for all file types
[*]
charset = utf-8
end_of_line = unset
indent_size = 4
indent_style = space
insert_final_newline = true
trim_trailing_whitespace = false
# Markdown configuration
[*.md]
trim_trailing_whitespace = false
# JavaScript configuration
[*.js]
indent_size = 2
# JSON configuration
[*.json]
indent_size = 2
# Node-gyp binding configuration
[*.gyp]
indent_size = 2
# TypeScript configuration
[*.ts]
indent_size = 2