-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 836 Bytes
/
Copy pathpackage.json
File metadata and controls
29 lines (29 loc) · 836 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
{
"name": "strip-newlines",
"main": "./lib/strip-newlines",
"version": "1.1.1",
"description": "Strips out unnecessary newlines (LF and CRLF) from files.",
"keywords": [
"strip",
"remove",
"clean",
"newlines",
"new",
"lines"
],
"repository": "https://github.com/JosephTLyons/Strip-Newlines",
"license": "MIT",
"engines": {
"atom": ">=1.0.0 <2.0.0"
},
"dependencies": {},
"configSchema": {
"consecutiveNewlinesAllowed": {
"title": "Consecutive Newlines Allowed",
"description": "This setting dictates how many consecutive newlines are allowed before stripping occurs (minimum of 0). Any consecutive amount of newlines less than this number will also be skipped during the stripping process",
"type": "integer",
"default": 2,
"minimum": 0
}
}
}