Skip to content

Commit 26f4892

Browse files
committed
style: disable unicorn/string-content linter rule
1 parent 884dfee commit 26f4892

8 files changed

+25
-18
lines changed

lib/definitions/errors.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ By default the \`repositoryUrl\` option is retrieved from the \`repository\` pro
7373
Your configuration for the \`proxy\` option is \`${stringify(proxy)}\`.`,
7474
}),
7575
EMISSINGREPO: ({owner, repo}) => ({
76-
message: `The repository ${owner}/${repo} doesnt exist.`,
76+
message: `The repository ${owner}/${repo} doesn't exist.`,
7777
details: `The **semantic-release** \`repositoryUrl\` option must refer to your GitHub repository. The repository must be accessible with the [GitHub API](https://developer.github.com/v3).
7878
7979
By default the \`repositoryUrl\` option is retrieved from the \`repository\` property of your \`package.json\` or the [git origin url](https://git-scm.com/book/en/v2/Git-Basics-Working-with-Remotes) of the repository cloned by your CI environment.
@@ -83,7 +83,7 @@ If you are using [GitHub Enterprise](https://enterprise.github.com) please make
8383
)}).`,
8484
}),
8585
EGHNOPERMISSION: ({owner, repo}) => ({
86-
message: `The GitHub token doesnt allow to push on the repository ${owner}/${repo}.`,
86+
message: `The GitHub token doesn't allow to push on the repository ${owner}/${repo}.`,
8787
details: `The user associated with the [GitHub token](${linkify(
8888
'README.md#github-authentication'
8989
)}) configured in the \`GH_TOKEN\` or \`GITHUB_TOKEN\` environment variable must allows to push to the repository ${owner}/${repo}.

lib/get-fail-comment.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ const NEW_ISSUE_URL = `${HOME_URL}/issues/new`;
77
const formatError = error => `### ${error.message}
88
99
${error.details ||
10-
`Unfortunately this error doesnt have any additional information.${
10+
`Unfortunately this error doesn't have any additional information.${
1111
error.pluginName
1212
? ` Feel free to kindly ask the author of the \`${error.pluginName}\` plugin to add more helpful information.`
1313
: ''

lib/success.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ module.exports = async (pluginConfig, context) => {
100100
if (error.status === 403) {
101101
logger.error('Not allowed to add a comment to the issue #%d.', issue.number);
102102
} else if (error.status === 404) {
103-
logger.error('Failed to add a comment to the issue #%d as it doesnt exist.', issue.number);
103+
logger.error("Failed to add a comment to the issue #%d as it doesn't exist.", issue.number);
104104
} else {
105105
errors.push(error);
106106
logger.error('Failed to add a comment to the issue #%d.', issue.number);

package.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,8 @@
110110
{
111111
"properties": "never"
112112
}
113-
]
113+
],
114+
"unicorn/string-content": "off"
114115
}
115116
}
116117
}

test/get-client.test.js

+14-8
Original file line numberDiff line numberDiff line change
@@ -98,13 +98,14 @@ test('Use the global throttler for all endpoints', async t => {
9898
'./definitions/rate-limit': {RATE_LIMITS: {search: 1, core: 1}, GLOBAL_RATE_LIMIT: rate},
9999
})({githubToken: 'token'});
100100

101+
/* eslint-disable unicorn/prevent-abbreviations */
102+
101103
const a = await github.repos.createRelease();
102104
const b = await github.issues.createComment();
103105
const c = await github.repos.createRelease();
104106
const d = await github.issues.createComment();
105-
// Skipping "e" so the XO linter won't complain
107+
const e = await github.search.issuesAndPullRequests();
106108
const f = await github.search.issuesAndPullRequests();
107-
const g = await github.search.issuesAndPullRequests();
108109

109110
// `issues.createComment` should be called `rate` ms after `repos.createRelease`
110111
t.true(inRange(b - a, rate - 50, rate + 50));
@@ -113,9 +114,11 @@ test('Use the global throttler for all endpoints', async t => {
113114
// `issues.createComment` should be called `rate` ms after `repos.createRelease`
114115
t.true(inRange(d - c, rate - 50, rate + 50));
115116
// `search.issuesAndPullRequests` should be called `rate` ms after `issues.createComment`
116-
t.true(inRange(f - d, rate - 50, rate + 50));
117+
t.true(inRange(e - d, rate - 50, rate + 50));
117118
// `search.issuesAndPullRequests` should be called `rate` ms after `search.issuesAndPullRequests`
118-
t.true(inRange(g - f, rate - 50, rate + 50));
119+
t.true(inRange(f - e, rate - 50, rate + 50));
120+
121+
/* eslint-enable unicorn/prevent-abbreviations */
119122
});
120123

121124
test('Use the same throttler for endpoints in the same rate limit group', async t => {
@@ -129,13 +132,14 @@ test('Use the same throttler for endpoints in the same rate limit group', async
129132
'./definitions/rate-limit': {RATE_LIMITS: {search: searchRate, core: coreRate}, GLOBAL_RATE_LIMIT: 1},
130133
})({githubToken: 'token'});
131134

135+
/* eslint-disable unicorn/prevent-abbreviations */
136+
132137
const a = await github.repos.createRelease();
133138
const b = await github.issues.createComment();
134139
const c = await github.repos.createRelease();
135140
const d = await github.issues.createComment();
136-
// Skipping "e" so the XO linter won't complain
141+
const e = await github.search.issuesAndPullRequests();
137142
const f = await github.search.issuesAndPullRequests();
138-
const g = await github.search.issuesAndPullRequests();
139143

140144
// `issues.createComment` should be called `coreRate` ms after `repos.createRelease`
141145
t.true(inRange(b - a, coreRate - 50, coreRate + 50));
@@ -145,9 +149,11 @@ test('Use the same throttler for endpoints in the same rate limit group', async
145149
t.true(inRange(d - c, coreRate - 50, coreRate + 50));
146150

147151
// The first search should be called immediatly as it uses a different throttler
148-
t.true(inRange(f - d, -50, 50));
152+
t.true(inRange(e - d, -50, 50));
149153
// The second search should be called only after `searchRate` ms
150-
t.true(inRange(g - f, searchRate - 50, searchRate + 50));
154+
t.true(inRange(f - e, searchRate - 50, searchRate + 50));
155+
156+
/* eslint-enable unicorn/prevent-abbreviations */
151157
});
152158

153159
test('Use different throttler for read and write endpoints', async t => {

test/get-fail-comment.test.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ test('Comment with missing error details and pluginName', t => {
3434
t.regex(comment, /the `master` branch/);
3535
t.regex(
3636
comment,
37-
/---\n\n### Error message 1\n\nUnfortunately this error doesnt have any additional information. Feel free to kindly ask the author of the `some-plugin` plugin to add more helpful information.\n\n---/
37+
/---\n\n### Error message 1\n\nUnfortunately this error doesn't have any additional information. Feel free to kindly ask the author of the `some-plugin` plugin to add more helpful information.\n\n---/
3838
);
3939
});
4040

@@ -46,6 +46,6 @@ test('Comment with missing error details and no pluginName', t => {
4646
t.regex(comment, /the `master` branch/);
4747
t.regex(
4848
comment,
49-
/---\n\n### Error message 1\n\nUnfortunately this error doesnt have any additional information.\n\n---/
49+
/---\n\n### Error message 1\n\nUnfortunately this error doesn't have any additional information.\n\n---/
5050
);
5151
});

test/success.test.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -466,7 +466,7 @@ test.serial('Ignore missing and forbidden issues/PRs', async t => {
466466
t.true(t.context.log.calledWith('Added labels %O to issue #%d', ['released'], 4));
467467
t.true(t.context.log.calledWith('Added comment to issue #%d: %s', 5, 'https://github.com/successcomment-5'));
468468
t.true(t.context.log.calledWith('Added labels %O to issue #%d', ['released'], 5));
469-
t.true(t.context.error.calledWith('Failed to add a comment to the issue #%d as it doesnt exist.', 2));
469+
t.true(t.context.error.calledWith("Failed to add a comment to the issue #%d as it doesn't exist.", 2));
470470
t.true(t.context.error.calledWith('Not allowed to add a comment to the issue #%d.', 3));
471471
t.true(github.isDone());
472472
});

test/verify.test.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -403,7 +403,7 @@ test('Throw SemanticReleaseError for invalid repositoryUrl', async t => {
403403
t.is(error.code, 'EINVALIDGITHUBURL');
404404
});
405405

406-
test.serial('Throw SemanticReleaseError if token doesnt have the push permission on the repository', async t => {
406+
test.serial("Throw SemanticReleaseError if token doesn't have the push permission on the repository", async t => {
407407
const owner = 'test_user';
408408
const repo = 'test_repo';
409409
const env = {GH_TOKEN: 'github_token'};
@@ -421,7 +421,7 @@ test.serial('Throw SemanticReleaseError if token doesn’t have the push permiss
421421
t.true(github.isDone());
422422
});
423423

424-
test.serial('Throw SemanticReleaseError if the repository doesnt exist', async t => {
424+
test.serial("Throw SemanticReleaseError if the repository doesn't exist", async t => {
425425
const owner = 'test_user';
426426
const repo = 'test_repo';
427427
const env = {GH_TOKEN: 'github_token'};

0 commit comments

Comments
 (0)