Skip to content
This repository has been archived by the owner on Jul 21, 2023. It is now read-only.

Commit

Permalink
Merge branch 'feature/ignore_super_in_coverage' into dev
Browse files Browse the repository at this point in the history
  • Loading branch information
MeixDev committed Feb 25, 2022
2 parents 13f97fa + 784f54b commit 661fd6a
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 0 deletions.
1 change: 1 addition & 0 deletions lib/src/models/url_parser/custom_parser.dart
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ import '../url_parse_exceptions.dart';
class CustomParser extends UrlParser {
const CustomParser()
: super(
// coverage:ignore-line
service: "Custom",
hosts: const ["*"],
);
Expand Down
1 change: 1 addition & 0 deletions lib/src/models/url_parser/github_parser.dart
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ import 'url_parser.dart';
class GithubParser extends UrlParser {
const GithubParser()
: super(
// coverage:ignore-line
service: "GitHub",
hosts: const ["github.com", "www.github.com"],
pathSegments: const ["{user}"],
Expand Down
1 change: 1 addition & 0 deletions lib/src/models/url_parser/gitlab_parser.dart
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ import 'url_parser.dart';
class GitlabParser extends UrlParser {
const GitlabParser()
: super(
// coverage:ignore-line
service: "GitLab",
hosts: const ["gitlab.com", "www.gitlab.com"],
pathSegments: const ["{user}"],
Expand Down
1 change: 1 addition & 0 deletions lib/src/models/url_parser/linkedin_parser.dart
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ import 'url_parser.dart';
class LinkedInParser extends UrlParser {
const LinkedInParser()
: super(
// coverage:ignore-line
service: "LinkedIn",
hosts: const ["linkedin.com", "www.linkedin.com"],
pathSegments: const ["in", "{user}"],
Expand Down
1 change: 1 addition & 0 deletions lib/src/models/url_parser/medium_parser.dart
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ class MediumParser extends UrlParser {
/// to their {user}.medium.com page.
const MediumParser()
: super(
// coverage:ignore-line
service: "Medium",
hosts: const ["medium.com", "{user}.medium.com", "www.medium.com"],
pathSegments: const ["{user}"],
Expand Down
1 change: 1 addition & 0 deletions lib/src/models/url_parser/stack_overflow_parser.dart
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ import 'url_parser.dart';
class StackOverflowParser extends UrlParser {
const StackOverflowParser()
: super(
// coverage:ignore-line
service: "Stack Overflow",
hosts: const ["stackoverflow.com", "www.stackoverflow.com"],
pathSegments: const ["users", "{user}"],
Expand Down
1 change: 1 addition & 0 deletions lib/src/models/url_parser/twitter_parser.dart
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ import 'url_parser.dart';
class TwitterParser extends UrlParser {
const TwitterParser()
: super(
// coverage:ignore-line
service: "Twitter",
hosts: const ["twitter.com", "www.twitter.com"],
pathSegments: const ["{user}"],
Expand Down

0 comments on commit 661fd6a

Please sign in to comment.