Skip to content

Commit 0c7ddca

Browse files
committed
fix all spell checker problems
1 parent 0beda2f commit 0c7ddca

File tree

2 files changed

+7
-2
lines changed

2 files changed

+7
-2
lines changed

.vscode/settings.json

+5
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,7 @@
5454
"achievibit",
5555
"adpyke",
5656
"autoimport",
57+
"awesomeresolves",
5758
"azuretools",
5859
"barrelsby",
5960
"codeandstuff",
@@ -71,10 +72,13 @@
7172
"fullname",
7273
"Gamification",
7374
"gitbeaker",
75+
"icns",
7476
"johnpapa",
7577
"kibibit",
7678
"kohler",
7779
"luxon",
80+
"meeseek",
81+
"msedge",
7882
"nestjs",
7983
"Onboarded",
8084
"packagr",
@@ -89,6 +93,7 @@
8993
"thatkookooguy",
9094
"timestamptz",
9195
"typeorm",
96+
"viewports",
9297
"vivaxy",
9398
"wayou"
9499
],

achievements/src/breaking-bad.achievement.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import { IAchievement, IUserAchievement } from './achievement.abstract';
55
export const breakingBad: IAchievement = {
66
name: 'Breaking Bad',
77
check: function(pullRequest, shall) {
8-
if (atLeast80PrecentCommitsFailedBuild(pullRequest)) {
8+
if (atLeast80PercentCommitsFailedBuild(pullRequest)) {
99
const achievement: IUserAchievement = {
1010
avatar: 'images/achievements/breakingBad.achievement.jpg',
1111
name: 'Breaking Bad',
@@ -24,7 +24,7 @@ export const breakingBad: IAchievement = {
2424
}
2525
};
2626

27-
function atLeast80PrecentCommitsFailedBuild(pullRequest) {
27+
function atLeast80PercentCommitsFailedBuild(pullRequest) {
2828
let failedCommits = 0;
2929
const totalCommits = pullRequest.commits.length;
3030
forEach(pullRequest.commits, function(commit) {

0 commit comments

Comments
 (0)