This repository has been archived by the owner on Feb 14, 2024. It is now read-only.
forked from microsoft/DevSkim-Sublime-Plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
DevSkim.sublime-settings
56 lines (39 loc) · 1.59 KB
/
DevSkim.sublime-settings
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
// Don't change any setting on this file. If you want to override the default
// behaviour, change the settings values on your
// Packages/User/DevSkim.sublime-settings file.
{
/* Enable verbose output to console */
"debug": false,
/* Don't analyze files greater than 512kb - set to -1 to disable */
"max_size": 524288,
/* Show all severities */
"show_severity": ["critical", "important", "moderate", "low", "defense-in-depth", "informational", "manual-review"],
/* Mark for the page gutter -- available options dot, circle, cross, or "" */
"gutter_mark": "dot",
/* Stylesheet for popup, from package directory */
"style": "dark.css",
/* Show only rules with the given tags, empty means "show all" */
"show_only_tags": [],
/* Sort results by either "severity" or "line_number" */
"sort_results_by": "line_number",
/* Run analysis as soon as a file is opened. */
"show_highlights_on_load": true,
/* Run analysis when the file is saved. */
"show_findings_on_save": true,
/* Run analysis whenever a file is changed. */
"show_highlights_on_modified": true,
/* Enable per-rule suppressions */
"allow_suppress_specific_rules": true,
/* Enable global suppressions */
"allow_suppress_all_rules": true,
/* Allow suppression for specific # of days, or -1 for "permanent" */
"suppress_days": [90, 365, -1],
/* Name to associate with manual code reviews (optional) */
"manual_reviewer_name": "",
/* List of rules files to also include. */
"custom_rules": [
],
/* Globally suppress these rules (list of rule IDs, like "DS123456") */
"suppress_rules": [
]
}