You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Aug 7, 2023. It is now read-only.
Copy file name to clipboardexpand all lines: package.json
+21-9
Original file line number
Diff line number
Diff line change
@@ -14,42 +14,54 @@
14
14
"atom": ">=1.4.0 <2.0.0"
15
15
},
16
16
"configSchema": {
17
-
"executable": {
17
+
"executablePath": {
18
18
"type": "string",
19
19
"default": "pylint",
20
-
"description": "Command or path to executable. Use %p for current project directory (no trailing /)."
20
+
"description": "Command or full path to pylint. Use %p for current project directory (no trailing /).",
21
+
"order": 1
21
22
},
22
23
"pythonPath": {
23
24
"type": "string",
24
25
"default": "",
25
-
"description": "Paths to be added to $PYTHONPATH. Use %p for current project directory or %f for the directory of the current file."
26
+
"description": "Paths to be added to $PYTHONPATH. Use %p for current project directory or %f for the directory of the current file.",
27
+
"order": 1
26
28
},
27
29
"rcFile": {
28
30
"type": "string",
29
31
"default": "",
30
-
"description": "Path to pylintrc file. Use %p for the current project directory or %f for the directory of the current file."
32
+
"description": "Path to pylintrc file. Use %p for the current project directory or %f for the directory of the current file.",
33
+
"order": 2
31
34
},
32
35
"workingDirectory": {
33
36
"type": "string",
34
37
"default": "%p",
35
-
"description": "Directory pylint is run from. Use %p for the current project directory or %f for the directory of the current file."
38
+
"description": "Directory pylint is run from. Use %p for the current project directory or %f for the directory of the current file.",
39
+
"order": 2
36
40
},
37
41
"messageFormat": {
38
42
"type": "string",
39
43
"default": "%i %m",
40
-
"description": "Format for Pylint messages where %m is the message, %i is the numeric mesasge ID (e.g. W0613) and %s is the human-readable message ID (e.g. unused-argument)."
44
+
"description": "Format for Pylint messages where %m is the message, %i is the numeric mesasge ID (e.g. W0613) and %s is the human-readable message ID (e.g. unused-argument).",
45
+
"order": 2
46
+
},
47
+
"disableTimeout": {
48
+
"title": "Disable Execution Timeout",
49
+
"type": "boolean",
50
+
"default": false,
51
+
"description": "By default processes running longer than 10 seconds will be automatically terminated. Enable this option if you are getting messages about process execution timing out.",
0 commit comments