23 lines
No EOL
613 B
Text
23 lines
No EOL
613 B
Text
// SublimeLinter Settings - User
|
|
{
|
|
// Set to true to print extra information in the console.
|
|
"debug": true,
|
|
"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: "
|
|
}
|
|
}
|
|
} |