66 строки
1.9 KiB
Plaintext
66 строки
1.9 KiB
Plaintext
// 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",
|
|
|
|
/* Ignore files specified in .gitignore */
|
|
"ignore_from_gitignore": true,
|
|
|
|
/* Ignore additional files, each is a regular expression, escaped for JSON */
|
|
"ignore_files": [
|
|
],
|
|
|
|
/* 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": false,
|
|
|
|
/* Run analysis on a specific timer, in milliseconds, 0=disabled */
|
|
"show_highlights_on_time": 10000,
|
|
|
|
/* 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": [
|
|
]
|
|
}
|