feat: Lint paragraphs except in test files & fix

Signed-off-by: Carlos Esteban Lopez <lcarlosesteb@vmware.com>
This commit is contained in:
Carlos Esteban Lopez
2022-12-15 00:02:48 -05:00
committed by Carlos Lopez
parent 8de0276086
commit e75f39e603
16 changed files with 60 additions and 40 deletions
@@ -68,8 +68,8 @@ const generatedColumns: TableColumn[] = [
title: 'Source',
render: (row: Partial<WorkflowRun>) => (
<Typography variant="body2" noWrap>
<p>{row.source?.branchName}</p>
<p>{row.source?.commit.hash}</p>
<Typography variant="body2">{row.source?.branchName}</Typography>
<Typography variant="body2">{row.source?.commit.hash}</Typography>
</Typography>
),
},