-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmetadata.yml
58 lines (52 loc) · 1.58 KB
/
metadata.yml
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
name: "🗨️ Stackoverflow plugin"
cost: N/A
category: social
index: 5
supports:
- user
- organization
inputs:
# Enable or disable plugin
plugin_stackoverflow:
description: Stackoverflow metrics
type: boolean
default: no
# Stackoverflow user id
# To obtain it, extract the identifier on your account page url
plugin_stackoverflow_user:
description: Stackoverflow user id
type: number
default: 0
# Sections to display
plugin_stackoverflow_sections:
description: Sections to display
type: array
format: comma-separated
default: answers-top, questions-recent
values:
- answers-top # Display top answers
- answers-recent # Display recent answers
- questions-top # Display top questions
- questions-recent # Display recent questions
# Number of entries to display per section
plugin_stackoverflow_limit:
description: Maximum number of entries to display per section
type: number
default: 2
min: 1
max: 30
# Number of lines to display per question or answer
# Code snippets will take one line slot and should be configured with "plugin_stackoverflow_lines_snippet" instead
# Set to 0 to disable limitations
plugin_stackoverflow_lines:
description: Maximum number of lines to display per question or answer
type: number
default: 4
min: 0
# Number of lines to display per code snippet
# Set to 0 to disable limitations
plugin_stackoverflow_lines_snippet:
description: Maximum number of lines to display per code snippet
type: number
default: 2
min: 0