forked from qt-creator/qt-creator
Add a new toolbar button to load diagnostics exported with $ clang-tidy -export-fixes=/path/to/file $ clazy-standalone -export-fixes=/path/to/file (master version) Change-Id: I8316fe0706a18222e68220ef4fbfdc7ae8d09804 Reviewed-by: David Schulz <david.schulz@qt.io>
18 lines
526 B
YAML
18 lines
526 B
YAML
---
|
|
MainSourceFile: 'FILE_PATH'
|
|
Diagnostics:
|
|
- DiagnosticName: clazy-qgetenv
|
|
Message: 'qgetenv().isEmpty() allocates. Use qEnvironmentVariableIsEmpty() instead'
|
|
FileOffset: 150
|
|
FilePath: 'FILE_PATH'
|
|
Replacements:
|
|
- FilePath: 'FILE_PATH'
|
|
Offset: 150
|
|
Length: 7
|
|
ReplacementText: qEnvironmentVariableIsEmpty
|
|
- FilePath: 'FILE_PATH'
|
|
Offset: 163
|
|
Length: 11
|
|
ReplacementText: ')'
|
|
...
|