mirror of
https://git.mirrors.martin98.com/https://github.com/Ultimaker/Cura
synced 2025-08-13 05:09:00 +08:00
Revert "Fix multiline printer-linter PR suggestions"
This reverts commit 7820cc98
This commit is contained in:
parent
7a671eaa03
commit
8117087664
@ -52,7 +52,7 @@ jobs:
|
|||||||
path: printer-linter-result/
|
path: printer-linter-result/
|
||||||
|
|
||||||
- name: Run clang-tidy-pr-comments action
|
- name: Run clang-tidy-pr-comments action
|
||||||
uses: platisd/clang-tidy-pr-comments@master
|
uses: platisd/clang-tidy-pr-comments@bc0bb7da034a8317d54e7fe1e819159002f4cc40
|
||||||
with:
|
with:
|
||||||
github_token: ${{ secrets.GITHUB_TOKEN }}
|
github_token: ${{ secrets.GITHUB_TOKEN }}
|
||||||
clang_tidy_fixes: result.yml
|
clang_tidy_fixes: result.yml
|
||||||
|
2
.github/workflows/printer-linter-pr-post.yml
vendored
2
.github/workflows/printer-linter-pr-post.yml
vendored
@ -73,7 +73,7 @@ jobs:
|
|||||||
unzip printer-linter-result.zip -d printer-linter-result
|
unzip printer-linter-result.zip -d printer-linter-result
|
||||||
|
|
||||||
- name: Run clang-tidy-pr-comments action
|
- name: Run clang-tidy-pr-comments action
|
||||||
uses: platisd/clang-tidy-pr-comments@master
|
uses: platisd/clang-tidy-pr-comments@bc0bb7da034a8317d54e7fe1e819159002f4cc40
|
||||||
with:
|
with:
|
||||||
github_token: ${{ secrets.GITHUB_TOKEN }}
|
github_token: ${{ secrets.GITHUB_TOKEN }}
|
||||||
clang_tidy_fixes: printer-linter-result/fixes.yml
|
clang_tidy_fixes: printer-linter-result/fixes.yml
|
||||||
|
@ -45,17 +45,24 @@ class Definition(Linter):
|
|||||||
if is_redefined:
|
if is_redefined:
|
||||||
redefined = re.compile(r'.*(\"' + key + r'\"[\s\:\S]*?)\{[\s\S]*?\},?')
|
redefined = re.compile(r'.*(\"' + key + r'\"[\s\:\S]*?)\{[\s\S]*?\},?')
|
||||||
found = redefined.search(self._content)
|
found = redefined.search(self._content)
|
||||||
|
# TODO: Figure out a way to support multiline fixes in the PR review GH Action, for now suggest no fix to ensure no ill-formed json are created
|
||||||
|
# see: https://github.com/platisd/clang-tidy-pr-comments/issues/37
|
||||||
|
if len(found.group().splitlines()) > 1:
|
||||||
|
replacements = []
|
||||||
|
else:
|
||||||
|
replacements = [Replacement(
|
||||||
|
file = self._file,
|
||||||
|
offset = found.span(1)[0],
|
||||||
|
length = len(found.group()),
|
||||||
|
replacement_text = "")]
|
||||||
|
|
||||||
yield Diagnostic(
|
yield Diagnostic(
|
||||||
file = self._file,
|
file = self._file,
|
||||||
diagnostic_name = "diagnostic-definition-redundant-override",
|
diagnostic_name = "diagnostic-definition-redundant-override",
|
||||||
message = f"Overriding {key} with the same value ({value}) as defined in parent definition: {definition['inherits']}",
|
message = f"Overriding {key} with the same value ({value}) as defined in parent definition: {definition['inherits']}",
|
||||||
level = "Warning",
|
level = "Warning",
|
||||||
offset = found.span(0)[0],
|
offset = found.span(0)[0],
|
||||||
replacements = [Replacement(
|
replacements = replacements
|
||||||
file = self._file,
|
|
||||||
offset = found.span(1)[0],
|
|
||||||
length = len(found.group()),
|
|
||||||
replacement_text = "")]
|
|
||||||
)
|
)
|
||||||
|
|
||||||
def _loadDefinitionFiles(self, definition_file) -> None:
|
def _loadDefinitionFiles(self, definition_file) -> None:
|
||||||
|
Loading…
x
Reference in New Issue
Block a user