-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
64 lines (64 loc) · 1.75 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
{
"name": "form-feeds",
"version": "1.1.0",
"description": "Display form-feed characters (U+000C) as horizontal dividers in source code.",
"author": "John Gardner <[email protected]>",
"repository": "https://github.com/Alhadis/Atom-FormFeeds",
"license": "ISC",
"keywords": ["form-feed", "whitespace", "page-break", "line-break"],
"configSchema": {
"wrappedCycling": {
"order": 1,
"title": "Wrapped feed-cycling",
"description": "Jump to the other end of the buffer when cycling past the first or last row",
"type": "boolean",
"default": "true"
},
"placeholderStyle": {
"order": 2,
"title": "Placeholder style",
"description": "How form-feed indicators are rendered inside a text-buffer.",
"type": "string",
"default": "border",
"enum": [{
"value": "none",
"title": "None",
"description": "Don't show placeholders. Users must define the appearance of form-feeds using their stylesheet"
},{
"value": "border",
"title": "Horizontal border",
"description": "Horizontal divider spanning the editor's full width"
},{
"value": "caret",
"title": "Caret notation",
"description": "Caret notation (^L)"
},{
"value": "escape",
"title": "C-style escape",
"description": "C-style escape (\\f)"
}]
}
},
"engines": {
"atom": ">=1.25.0"
},
"scripts": {
"lint": "npx eslint .",
"test": "atom -t spec/"
},
"atomTestRunner": "atom-mocha",
"eslintConfig": {
"extends": "@alhadis/eslint-config/atom",
"overrides": [{
"files": ["index.js"],
"rules": {"indent": ["error", "tab", {
"ignoredNodes": ["ForOfStatement > ForOfStatement"]
}]}
}]
},
"devDependencies": {
"@alhadis/eslint-config": "^2.3.3",
"atom-mocha": "Alhadis/Atom-Mocha",
"eslint": "^7.32.0"
}
}