cyucelen / marker

🖍️ Marker is the easiest way to match and mark strings for colorful terminal outputs!
MIT License
48 stars 13 forks source link

Add time format match #20

Closed marco-silveira closed 5 years ago

marco-silveira commented 5 years ago

The day and time regular expressions verify is those are valid (e.g. days regex only recognize 01 to 31, and time regex only recognize 00:00:00 to 23:59:59).

But no verification is being made on the date (e.g. Feb 31 will be recognized).

Closes #8

codecov-io commented 5 years ago

Codecov Report

Merging #20 into master will not change coverage. The diff coverage is 100%.

Impacted file tree graph

@@          Coverage Diff          @@
##           master    #20   +/-   ##
=====================================
  Coverage     100%   100%           
=====================================
  Files           3      3           
  Lines          83     87    +4     
=====================================
+ Hits           83     87    +4
Impacted Files Coverage Δ
matcher.go 100% <100%> (ø) :arrow_up:

Continue to review full report at Codecov.

Legend - Click here to learn more Δ = absolute <relative> (impact), ø = not affected, ? = missing data Powered by Codecov. Last update 65bc35a...c2a8385. Read the comment docs.

marco-silveira commented 5 years ago

:recycle: @cyucelen