Skip to content

Commit

Permalink
Revert "Set linelength to 140 for lint action. (#246)" (#253)
Browse files Browse the repository at this point in the history
This reverts commit 8f57e31,
but it updates the dist/index.js file.

Signed-off-by: Christophe Bedard <bedard.christophe@gmail.com>
  • Loading branch information
christophebedard committed Mar 17, 2021
1 parent f0b138e commit da8456d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion dist/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -1114,7 +1114,7 @@ function run() {
yield exec.exec("bash", [
"-c",
`source /opt/ros/${rosDistribution}/setup.sh && ` +
`ament_${linterTool} $(colcon list --packages-select ${packageNameList.join(" ")} -p) --linelength=140 ${additionalArguments}`
`ament_${linterTool} $(colcon list --packages-select ${packageNameList.join(" ")} -p) ${additionalArguments}`
], options);
}
catch (error) {
Expand Down
2 changes: 1 addition & 1 deletion src/action-ros-lint.ts
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ export async function run() {
`source /opt/ros/${rosDistribution}/setup.sh && ` +
`ament_${linterTool} $(colcon list --packages-select ${packageNameList.join(
" "
)} -p) --linelength=140 ${additionalArguments}`
)} -p) ${additionalArguments}`
],
options
);
Expand Down

0 comments on commit da8456d

Please sign in to comment.