This repository has been archived by the owner on Dec 15, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 60
/
package.json
82 lines (82 loc) · 2.76 KB
/
package.json
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "whitespace",
"version": "0.37.8",
"main": "./lib/main",
"description": "Strips trailing whitespace and adds a trailing newline when an editor is saved.",
"repository": "https://github.com/atom/whitespace",
"license": "MIT",
"engines": {
"atom": "*"
},
"scripts": {
"lint": "standard"
},
"devDependencies": {
"coffeelint": "^1.9.7",
"fs-plus": "2.x",
"standard": "^8.4.0",
"temp": "~0.8.1"
},
"standard": {
"ignore": [],
"globals": [
"atom",
"afterEach",
"beforeEach",
"describe",
"fdescribe",
"xdescribe",
"expect",
"it",
"fit",
"xit",
"jasmine",
"runs",
"spyOn",
"waits",
"waitsFor",
"waitsForPromise"
]
},
"configSchema": {
"removeTrailingWhitespace": {
"type": "boolean",
"default": true,
"scopes": {
".source.diff": {
"default": false
},
".source.jade": {
"default": false
},
".source.patch": {
"default": false
},
".source.pug": {
"default": false
}
},
"description": "Automatically remove whitespace characters at ends of lines when the buffer is saved. To disable/enable for a certain language, use [syntax-scoped properties](https://github.com/atom/whitespace#readme) in your `config.cson`."
},
"keepMarkdownLineBreakWhitespace": {
"type": "boolean",
"default": true,
"description": "Markdown uses two or more spaces at the end of a line to signify a line break. Enable this option to keep this whitespace in Markdown files, even if other settings would remove it."
},
"ignoreWhitespaceOnCurrentLine": {
"type": "boolean",
"default": true,
"description": "Skip removing trailing whitespace on the line which the cursor is positioned on when the buffer is saved. To disable/enable for a certain language, use [syntax-scoped properties](https://github.com/atom/whitespace#readme) in your `config.cson`."
},
"ignoreWhitespaceOnlyLines": {
"type": "boolean",
"default": false,
"description": "Skip removing trailing whitespace on lines which consist only of whitespace characters. To disable/enable for a certain language, use [syntax-scoped properties](https://github.com/atom/whitespace#readme) in your `config.cson`."
},
"ensureSingleTrailingNewline": {
"type": "boolean",
"default": true,
"description": "If the buffer doesn't end with a newline character when it's saved, then append one. If it ends with more than one newline, remove all but one. To disable/enable for a certain language, use [syntax-scoped properties](https://github.com/atom/whitespace#readme) in your `config.cson`."
}
}
}