Skip to content

Commit

Permalink
fix all spell checker problems
Browse files Browse the repository at this point in the history
  • Loading branch information
thatkookooguy committed Oct 15, 2024
1 parent 0beda2f commit 0c7ddca
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
5 changes: 5 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,7 @@
"achievibit",
"adpyke",
"autoimport",
"awesomeresolves",
"azuretools",
"barrelsby",
"codeandstuff",
Expand All @@ -71,10 +72,13 @@
"fullname",
"Gamification",
"gitbeaker",
"icns",
"johnpapa",
"kibibit",
"kohler",
"luxon",
"meeseek",
"msedge",
"nestjs",
"Onboarded",
"packagr",
Expand All @@ -89,6 +93,7 @@
"thatkookooguy",
"timestamptz",
"typeorm",
"viewports",
"vivaxy",
"wayou"
],
Expand Down
4 changes: 2 additions & 2 deletions achievements/src/breaking-bad.achievement.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import { IAchievement, IUserAchievement } from './achievement.abstract';
export const breakingBad: IAchievement = {
name: 'Breaking Bad',
check: function(pullRequest, shall) {
if (atLeast80PrecentCommitsFailedBuild(pullRequest)) {
if (atLeast80PercentCommitsFailedBuild(pullRequest)) {
const achievement: IUserAchievement = {
avatar: 'images/achievements/breakingBad.achievement.jpg',
name: 'Breaking Bad',
Expand All @@ -24,7 +24,7 @@ export const breakingBad: IAchievement = {
}
};

function atLeast80PrecentCommitsFailedBuild(pullRequest) {
function atLeast80PercentCommitsFailedBuild(pullRequest) {
let failedCommits = 0;
const totalCommits = pullRequest.commits.length;
forEach(pullRequest.commits, function(commit) {
Expand Down

0 comments on commit 0c7ddca

Please sign in to comment.