Skip to content

Commit

Permalink
fix: H-G1 changed from Major to Minor to reflect coding style spec
Browse files Browse the repository at this point in the history
  • Loading branch information
Marc Planard committed Jan 3, 2024
1 parent 0ad95c6 commit 8bfa585
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/Output.hs
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ forbiddenExtIssue :: String -> Int -> Warn
forbiddenExtIssue f l = makeWarn ForbiddenExt (f, l) $ StringArg f

-- | Generates a manifest of all coding style issues in format
-- `<code>:<description>`.
-- `<code>: <description>`.
outputManifest :: String
outputManifest = intercalate "\n" (sort $ createLine <$> issues)
where
Expand Down
2 changes: 1 addition & 1 deletion src/Warn.hs
Original file line number Diff line number Diff line change
Expand Up @@ -212,7 +212,7 @@ dataNotParsable = IssueInfo

dataBadHeader :: IssueInfo
dataBadHeader = IssueInfo
Major
Minor
"H-G1"
description
"file must start with a correctly formatted Epitech standard header"
Expand Down

0 comments on commit 8bfa585

Please sign in to comment.