mirror of
https://github.com/activecm/rita
synced 2026-06-08 13:02:45 +00:00
2bd5475e76
* Disable permission flag checks on imported logs (#86) * Disable permission flag checks on imported logs * Display individual log errors even if there are no viable logs --------- Co-authored-by: Naomi Kramer <naomi@activecountermeasures.com> * Installer Import Logic Updates (#89) * rename sshprep to sshprep.sh * installer updates removed mass upgrades, cleaned up installer, removed references to unsupported OS's, improved error handling and usage messages * threat intel feed error handling * cleaned up installer scripts and improved helper functions * Update ansible-installer.sh --------- Co-authored-by: Naomi Kramer <naomi@activecountermeasures.com>
82 lines
2.2 KiB
Plaintext
82 lines
2.2 KiB
Plaintext
{
|
|
"folders": [
|
|
{
|
|
"path": ".."
|
|
}
|
|
],
|
|
"extensions": {
|
|
"recommendations": [
|
|
"golang.go",
|
|
"qufiwefefwoyn.inline-sql-syntax",
|
|
"wayou.vscode-todo-highlight",
|
|
"github.vscode-github-actions",
|
|
"redhat.vscode-yaml",
|
|
"shd101wyy.markdown-preview-enhanced",
|
|
"laktak.hjson",
|
|
"Tanh.hjson-formatter",
|
|
]
|
|
},
|
|
"settings": {
|
|
// === Go ===
|
|
"go.languageServerExperimentalFeatures": {
|
|
"diagnostics": false
|
|
},
|
|
"go.vetOnSave": "off",
|
|
"go.lintTool": "golangci-lint",
|
|
"go.lintFlags": [
|
|
"--fast",
|
|
"--config=${workspaceFolder}/.golangci.yml"
|
|
],
|
|
"gopls": {
|
|
"ui.semanticTokens": true
|
|
},
|
|
"[go]": {
|
|
"editor.defaultFormatter": "golang.go",
|
|
"editor.formatOnSave": true
|
|
},
|
|
|
|
// === JSON ===
|
|
"[json]": {
|
|
"editor.defaultFormatter": "vscode.json-language-features",
|
|
"editor.formatOnSave": true
|
|
},
|
|
"[jsonc]": {
|
|
"editor.defaultFormatter": "vscode.json-language-features",
|
|
"editor.formatOnSave": true
|
|
},
|
|
|
|
"[hjson]": {
|
|
"editor.defaultFormatter": "Tanh.hjson-formatter",
|
|
"editor.formatOnSave": true
|
|
},
|
|
// settings for Tanh.hjson-formatter extension
|
|
"hjson-formatter.options": {
|
|
"condense": 0,
|
|
"separator": true,
|
|
"bracesSameLine": true,
|
|
"emitRootBraces": false,
|
|
"multiline": "no-tabs",
|
|
"space": 4,
|
|
"eol": "auto"
|
|
},
|
|
|
|
// === YAML ===
|
|
"[yaml]": {
|
|
"editor.defaultFormatter": "redhat.vscode-yaml",
|
|
"editor.formatOnSave": true,
|
|
"editor.tabSize": 2
|
|
},
|
|
|
|
"[github-actions-workflow]": {
|
|
"editor.defaultFormatter": "redhat.vscode-yaml",
|
|
"editor.formatOnSave": true,
|
|
"editor.tabSize": 2,
|
|
},
|
|
|
|
"[dockercompose]": {
|
|
"editor.defaultFormatter": "redhat.vscode-yaml",
|
|
"editor.formatOnSave": true,
|
|
"editor.tabSize": 2,
|
|
}
|
|
}
|
|
} |