2019-09-27 08:29:26 +00:00
|
|
|
// SublimeLinter Settings - User
|
|
|
|
{
|
2021-03-04 11:01:04 +00:00
|
|
|
// Set to true to print extra information in the console.
|
2019-09-27 08:29:26 +00:00
|
|
|
"debug": true,
|
2021-03-04 11:01:04 +00:00
|
|
|
"linters": {
|
|
|
|
"cppcheck": {
|
|
|
|
// "@disable": false,
|
|
|
|
// "args": [],
|
|
|
|
"enable": "all",
|
|
|
|
"excludes": ["css"],
|
|
|
|
// "lint_mode": "save"
|
|
|
|
"std": ["c++11"]
|
|
|
|
},
|
|
|
|
// "pycodestyle": {
|
|
|
|
// "executable": "~/.local/bin/pycodestyle"
|
|
|
|
// },
|
|
|
|
"pyflakes": {
|
|
|
|
"executable": "~/.local/bin/pyflakes",
|
|
|
|
// suppress all warnings
|
|
|
|
"filter_errors": "w: "
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|