Skip to content

Commit

Permalink
Disable no-useless-escape of eslint rule on repository regular expres…
Browse files Browse the repository at this point in the history
…sion line
  • Loading branch information
yoshinorin committed Oct 12, 2018
1 parent acdfa8f commit de9fadb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/parse_config.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
'use strict';

var rRepoURL = /^(?:(?:git|https?|git\+https|git\+ssh):\/\/)?(?:[^@]+@)?([^\/]+?)[\/:](.+?)\.git$/;
var rRepoURL = /^(?:(?:git|https?|git\+https|git\+ssh):\/\/)?(?:[^@]+@)?([^\/]+?)[\/:](.+?)\.git$/; // eslint-disable-line no-useless-escape
var rGithubPage = /\.github\.(io|com)$/;

function parseRepo(repo) {
Expand Down

0 comments on commit de9fadb

Please sign in to comment.