-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
90 lines (90 loc) · 2.04 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
83
84
85
86
87
88
89
90
{
"name": "crashacters",
"displayName": "Crashacters",
"description": "Highlights invisible and misleading Unicode characters as errors",
"icon": "assets/logo/crashacters.png",
"author": "David Reis",
"license": "GPLV3",
"version": "1.0.5",
"repository": {
"type": "git",
"url": "https://github.com/davidreis97/Crashacters.git"
},
"publisher": "david-reis",
"categories": ["Linters", "Other"],
"keywords": [
"lint",
"syntax",
"syntax highlight",
"code analysis",
"unicode"
],
"engines": {
"vscode": "^1.43.0"
},
"activationEvents": [
"onStartupFinished"
],
"main": "./client/out/extension",
"contributes": {
"configuration": {
"type": "object",
"title": "Crashacters configuration",
"properties": {
"crashacters.maxNumberOfProblems": {
"scope": "resource",
"type": "number",
"default": 100,
"description": "Controls the maximum number of errors produced."
},
"crashacters.characterBlacklist": {
"scope": "resource",
"type": "object",
"default": {
"ranges": [
{
"start": 0,
"end": 8
},
{
"start": 11,
"end": 12
},
{
"start": 14,
"end": 31
},
{
"start": 127,
"end": 160
},
{
"start": 592,
"end": 8351
},
{
"start": 8368,
"end": 65535
}
]
},
"description": "Defines the ranges of characters that are marked as errors, using decimal UTF8 codepoints. See https://www.ssec.wisc.edu/~tomw/java/unicode.html for a full unicode chart."
}
}
}
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -b",
"watch": "tsc -b -w",
"lint": "eslint ./client/src ./server/src --ext .ts,.tsx",
"postinstall": "cd client && npm install && cd ../server && npm install && cd .."
},
"devDependencies": {
"@types/node": "^12.12.0",
"@typescript-eslint/eslint-plugin": "^4.23.0",
"@typescript-eslint/parser": "^4.23.0",
"eslint": "^7.26.0",
"typescript": "^4.3.5"
}
}