diff --git a/src/cli.js b/src/cli.js index 982afee..33d0ff2 100755 --- a/src/cli.js +++ b/src/cli.js @@ -5,6 +5,7 @@ const path = require('path') const yargs = require('yargs') const chalk = require('chalk') const inquirer = require('inquirer') +const didYouMean = require('didyoumean') const init = require('./init') const generate = require('./generate') @@ -24,12 +25,22 @@ const yargv = yargs .alias('v', 'version') .version() .recommendCommands() - .command('generate', `Generate the list of contributors\n\nUSAGE: all-contributors generate`) - .command('add', `Add a new contributor\n\nUSAGE: all-contributors add `) - .command('init', `Prepare the project to be used with this tool\n\nUSAGE: all-contributors init`) + .command( + 'generate', + `Generate the list of contributors\n\nUSAGE: all-contributors generate`, + ) + .command( + 'add', + `Add a new contributor\n\nUSAGE: all-contributors add `, + ) + .command( + 'init', + `Prepare the project to be used with this tool\n\nUSAGE: all-contributors init`, + ) .command( 'check', - `Compare contributors from the repository with the ones credited in .all-contributorsrc'\n\nUSAGE: all-contributors check`) + `Compare contributors from the repository with the ones credited in .all-contributorsrc'\n\nUSAGE: all-contributors check`, + ) .boolean('commit') .default('files', ['README.md']) .default('contributorsPerLine', 7) @@ -177,10 +188,11 @@ async function checkContributors(argv) { } async function fetchContributors(argv) { - const {reviewers, commitAuthors, issueCreators} = await getContributors( - argv.projectOwner, - argv.projectName, - ) + const { + reviewers, + commitAuthors, + issueCreators /* , prCreators */, + } = await getContributors(argv.projectOwner, argv.projectName, true) const args = {...argv, _: []} const contributorsToAdd = [] const learner = await getLearner() @@ -193,35 +205,40 @@ async function fetchContributors(argv) { ) }) + const guessCategories = (item, itemType, contributor) => { + const guessedCategory = learner + .classify(item) + .find(ctr => ctr && ctr !== 'null') + + if (!guessedCategory) { + console.warn( + `Oops, I couldn't find any category for the "${item}" ${itemType}`, + ) + + return + } + + if (!contributor.contributions.includes(guessedCategory)) { + contributor.contributions.push(guessedCategory) + + console.log( + `Adding ${chalk.blue(contributor.login)} for ${chalk.underline( + guessedCategory, + )}`, + ) + } + } + issueCreators.forEach(usr => { const contributor = { login: usr.login, contributions: [], } + //TODO: Look at the titles field and categories based on that. - usr.labels.forEach(lbl => { - const guessedCategory = learner - .classify(lbl) - .find(ctr => ctr && ctr !== 'null') + usr.labels.forEach(label => guessCategories(label, 'label', contributor)) - if (!guessedCategory) { - console.warn( - `Oops, I couldn't find any category for the "${lbl}" label`, - ) - - return - } - - if (!contributor.contributions.includes(guessedCategory)) { - contributor.contributions.push(guessedCategory) - - console.log( - `Adding ${chalk.blue(usr.login)} for ${chalk.underline( - guessedCategory, - )}`, - ) - } - }) + usr.titles.forEach(title => guessCategories(title, 'title', contributor)) const existingContributor = contributorsToAdd.find( ctr => ctr.login === usr.login, @@ -234,6 +251,7 @@ async function fetchContributors(argv) { } }) + //TODO Look at prCreators (including its titles field) and add contributions from there commitAuthors.forEach(usr => { const existingContributor = contributorsToAdd.find( ctr => ctr.login === usr.login, @@ -331,6 +349,7 @@ promptForCommand(yargv) case 'fetch': return fetchContributors(yargv) default: + suggestCommands(command) throw new Error(`Unknown command ${command}`) } }) diff --git a/src/discover/index.js b/src/discover/index.js index 4b69ea7..0a8c547 100644 --- a/src/discover/index.js +++ b/src/discover/index.js @@ -1,22 +1,44 @@ +const {join} = require('path') +const {existsSync} = require('fs') +const {writeFile, readFile} = require('fs/promises') const nyc = require('name-your-contributors') const {Spinner} = require('clui') -const privateToken = (process.env && process.env.PRIVATE_TOKEN) || '' +const privateToken = + process.env?.PRIVATE_TOKEN ?? process.env?.GITHUB_TOKEN ?? '' const loader = new Spinner('Loading...') -const getContributors = async function(owner, name, token = privateToken) { +const getContributors = async function (owner, name, cacheResult = false) { loader.start() - const contributors = await nyc.repoContributors({ - token, + const options = { + token: privateToken, user: owner, repo: name, commits: true, - }) + } - loader.stop() + // console.log('info provided:', options); + if (cacheResult) { + const nycOutputPath = join(__dirname, './nyc-output.json') + if (existsSync(nycOutputPath)) { + const contributors = await readFile(nycOutputPath) + loader.stop() + return JSON.parse(contributors) + } else { + loader.message('Getting repo contributors...') + const contributors = await nyc.repoContributors(options) + await writeFile(nycOutputPath, JSON.stringify(contributors, null, 2)) + loader.stop() + return contributors + } + } else { + const contributors = await nyc.repoContributors(options) - return contributors + loader.stop() + + return contributors + } } module.exports = {getContributors} diff --git a/src/discover/learner.json b/src/discover/learner.json index a6abac3..f10f572 100644 --- a/src/discover/learner.json +++ b/src/discover/learner.json @@ -1,25359 +1,56809 @@ { - "createNewObjectString": "(pastTrainingSamples = []) => {\n const {\n multilabel,\n Winnow,\n EnhancedClassifier\n } = require('limdu').classifiers; // Word extractor - a function that takes a sample and adds features to a given features set:\n\n\n const TextClassifier = multilabel.BinaryRelevance.bind(0, {\n binaryClassifierType: Winnow.bind(0, {\n retrain_count: 10\n })\n });\n const classifier = new EnhancedClassifier({\n classifierType: TextClassifier,\n featureExtractor: (input, features) => {\n //similar to limdu.features.NGramsOfWords(1)\n input.split(/[ \\t,;:.-_]/) //perhaps remove _ to keep emoji words joint\n .filter(Boolean).forEach(word => {\n features[word.toLowerCase()] = 1;\n });\n },\n //or extract\n pastTrainingSamples\n });\n return classifier;\n}", - "object": { - "classifier": { - "null": { - "positive_weights": { - "component": 0.00012083569345122674, - "concurrent": 13.18359375, - "mode": 13.18359375, - "bias": 1.807724459469599e-36, - "reconciler": 16, - "scheduler": 16, - "suspense": 8, - "confirmed": 10.125, - "conflicts": 4.5, - "contribution": 4, - "welcome": 8, - "critical": 9, - "difficulty": 7, - "challenging": 4, - "easy": 2, - "hard": 2, - "medium": 2, - "starter": 2, - "unknown": 3.5, - "or": 3.5, - "n": 3.5, - "a": 11.812499999999998, - "very": 2, - "do": 0.09765625000000003, - "not": 13.18359375, - "merge": 7.03125, - "duplicate": 9, - "enterprise": 4.5, - "enterprise-": 4, - "-backport": 4, - "feedback": 4, - "requested": 4, - "files": 8, - "(category)": 3.3295737438398647, - "first-timers-only": 4.5, - "flags": 8, - "fontawesome": 4, - "com": 4, - "food": 8, - "genders": 4, - "gh": 3.75, - "review": 0.21093749999999997, - "accepted": 7.5, - "go": 6.479999999999999, - "client": 2.4299999999999997, - "internal": 0.09000000000000001, - "release": 6.479999999999999, - "good": 0.37078857421875, - "first": 7.03125, - "issue": 7.03125, - "+": 2, - "has": 16, - "bounty": 4, - "pr": 0.4036552734375, - "help": 8.4375, - "wanted": 3.75, - "sos": 3.75, - "hi-pri": 4.5, - "high-priority": 4.5, - "hodor": 4.5, - "https": 4.5, - "ie": 9, - "import": 7.5, - "in": 7.5, - "progress": 3.75, - "started": 7.5, - "invalid": 8.4375, - "jquery": 4, - "differences": 4, - "jsonp-polling": 4.5, - "kbfs": 4.5, - "lks": 4.5, - "m": 4, - "s": 4, - "major": 4.5, - "mass": 4, - "purge": 4, - "minor": 4.5, - "proxy": 2, - "must-triage": 4.5, - "namespaces": 4.5, - "need-info": 4.5, - "needs": 12.599999999999998, - "example": 0.18984374999999998, - "app": 3.5999999999999996, - "failing": 2, - "test": 0.5625, - "browser": 8, - "testing": 2, - "changelog": 2, - "docs": 0.09375, - "documentation": 0.1875, - "info": 3.5, - "more": 3.5, - "man": 3.5, - "shrugging": 3.5, - "repro": 2, - "triage": 4.5, - "needs-more-info": 4.5, - "needs-research": 4.5, - "bug": 0.01736111111111112, - "on": 4, - "hold": 4, - "open": 4.5, - "opinions": 4, - "needed": 8, - "p": 4.5, - "pending": 2, - "planned": 16, - "feature": 0.13333333333333336, - "for": 3.5999999999999996, - "next": 2, - "pr-existing": 4.5, - "deprecation": 8, - "merged": 7, - "ready": 14.174999999999999, - "to": 0.8203125000000002, - "be": 3.5, - "reviewed-approved": 8, - "reviewed-changes-requested": 8, - "unreviewed": 8, - "wip": 9, - "priority": 8, - "high": 4, - "low": 2, - "production": 4.5, - "alpha": 2, - "released": 4.5, - "reminder": 4.5, - "resolution": 7.5, - "information": 2, - "support": 9.010162353515625, - "redirect": 3.75, - "spam": 4.5, - "spammy": 4.5, - "stale": 4.5, - "status": 15, - "heavy": 3.5, - "check": 3.5, - "mark": 3.5, - "available": 4, - "free": 2, - "cla": 7, - "signed": 7, - "code": 2, - "request": 0.6666666666666667, - "hacktoberfest": 0.234375, - "approved": 8.4375, - "construction": 2, - "worker": 2, - "detective": 2, - "left": 2, - "out": 2, - "luggage": 2, - "stop": 2, - "sign": 2, - "deploy": 2, - "passport": 2, - "control": 2, - "waiting": 2, - "wontfix": 4.5, - "work": 2, - "triage-done": 4.5, - "trivial": 4.5, - "type": 0.2966308593750001, - "archive": 8, - "repeat": 2, - "getting": 3.75, - "x": 7.119140625000002, - "non-library": 2, - "types": 4.5, - "unable": 7.03125, - "reproduce": 7.03125, - "unconfirmed": 4.5, - "upstream": 4.271484375000001, - "v": 4.5, - "writer-needed": 4.5, - "wrong": 4, - "repo": 4, - "xhr-polling": 4.5, - "core": 0.10546875, - "utilities": 0.10546875, - "developer": 0.10546875, - "tools": 0.10546875, - "dom": 0.22222222222222227, - "eslint": 0.28125, - "rules": 0.28125, - "hooks": 0.6666666666666667, - "optimizing": 0.75, - "compiler": 0.75, - "reactis": 0.6666666666666667, - "server": 0.75, - "rendering": 0.75, - "shallow": 0.75, - "renderer": 0.28125, - "utils": 0.75, - "configuration": 0.5, - "csharp": 0.5, - "css": 0.5, - "css-select": 0.5, - "currency": 0.0740740740740741, - "defect": 0.5, - "dependencies": 0.5, - "dependency": 0.25, - "related": 0.6666666666666667, - "design": 0.16666666666666669, - "discussion": 0.5, - "doc": 0.5, - "book": 0.75, - "electron": 0.5, - "enhancement": 0.0703125, - "es": 0.5, - "external": 0.5, - "externs": 0.5, - "feat": 0.28125, - "cli": 0.5, - "babel": 2, - "cli-service": 0.75, - "build": 0.75, - "serve": 2, - "e": 0.75, - "e-cypress": 0.75, - "e-nightwatch": 2, - "plugin": 2, - "api": 0.75, - "pwa": 2, - "typescript": 2, - "ui": 0.5, - "unit-jest": 2, - "unit-mocha": 2, - "flashsocket": 0.5, - "freemasonry": 0.6666666666666667, - "icons": 0.6666666666666667, - "frontend": 0.5, - "future": 0.75, - "architecture": 0.75, - "enhancements": 0.75, - "crypto": 2, - "general": 0.6666666666666667, - "js": 0.6666666666666667, - "great": 0.6666666666666667, - "insight": 0.6666666666666667, - "greenkeeper": 0.5, - "hack": 0.5, - "hacked": 0.5, - "handshakes": 0.5, - "hot": 2, - "html": 0.5, - "htmlfile": 0.5, - "icebox": 0.5, - "infrastructure": 0.8, - "hammer": 0.8, - "and": 0.8, - "wrench": 0.8, - "installer": 0.5, - "cleanup": 0.22222222222222227, - "internal-issue-created": 0.5, - "ios": 0.5, - "lang-crystal": 0.5, - "lang-dart": 0.5, - "lang-elixir": 0.5, - "lang-go": 0.5, - "lang-julia": 0.5, - "lang-objc": 0.5, - "lang-r": 0.5, - "lang-scala": 0.5, - "legal": 0.5, - "library": 0.5, - "lint": 0.5, - "linux": 0.5, - "macos": 0.5, - "maintenance": 0.5, - "mobile": 0.10546875, - "device": 0.10546875, - "modules": 0.5, - "new": 0.28125, - "proposal": 0.75, - "best": 0.75, - "practice": 0.75, - "node": 0.5, - "operations": 0.5, - "optimisation": 0.5, - "other": 0.8, - "language": 0.8, - "integration": 0.8, - "packaging": 0.5, - "parser": 0.5, - "parser-specific": 0.5, - "performance": 0.5, - "breaking": 0.28125, - "change": 0.28125, - "boom": 2, - "fix": 0.75, - "⬆️": 0.75, - "memo": 0.75, - "house": 0.75, - "rocket": 2, - "polish": 0.8, - "nail": 0.8, - "care": 0.8, - "spec": 0.11250000000000002, - "compliance": 0.8, - "eyeglasses": 0.8, - "underlying": 2, - "project": 0.6666666666666667, - "management": 0.6666666666666667, - "question": 0.5, - "react": 0.6666666666666667, - "flare": 0.6666666666666667, - "native": 2, - "refactor": 0.5, - "regression": 0.018518518518518524, - "revisitinfuture": 0.5, - "rfc": 0.5, - "ruby": 0.5, - "security": 0.5, - "shell": 0.5, - "socket": 0.75, - "io": 0.75, - "async": 0.75, - "functions": 0.75, - "generators": 2, - "bigint": 2, - "class": 2, - "fields": 2, - "classes": 2, - "decorators": 2, - "(legacy)": 2, - "expressions": 0.75, - "suggestion": 0.5, - "syntax": 2, - "technical": 0.6666666666666667, - "debt": 0.6666666666666667, - "technical-debt": 0.5, - "tests": 0.5, - "tips": 0.5, - "todo": 0.75, - "spiral": 0.75, - "notepad": 0.75, - "translation": 0.5, - "travis-yml": 0.5, - "community": 7.2081298828125, - "discuss": 0.8, - "speech": 0.8, - "balloon": 0.8, - "update": 0.5, - "bulb": 2, - "grey": 2, - "sendgrid": 2, - "vulnerability": 0.75, - "warning": 0.75, - "ux": 0.5, - "website": 0.5, - "websocket": 0.5, - "weekly-digest": 0.5, - "windows": 0.5, - "-": 8, - "backlog": 4, - "working": 4, - "done": 2, - "backport": 4, - "abandoned": 4.5, - "accessibility": 4.5, - "animals": 8, - "answered": 4.5, - "area": 0.6666666666666667, - "arrows": 8, - "automotive": 8, - "fa": 2, - "pro": 2, - "awaiting-review": 4.5, - "beginner-friendly": 4.5, - "beverage": 8, - "blocked": 4.5, - "blocker": 4.5, - "safari": 4, - "c": 4, - "c++": 4, - "cannot": 2, - "cantfix": 4.5, - "no": 2, - "yes": 2, - "closed": 3.5999999999999996, - "due": 3.5999999999999996, - "inactivity": 3.5999999999999996, - "cmty": 0.6666666666666667, - "cancelled": 2, - "fixed": 2, - "implemented": 2, - "resolved": 2, - "arrow": 0.8, - "heading": 0.8, - "down": 0.8, - "pull": 0.8, - "font-face": 0.5, - "adapter": 0.5, - "advance": 2, - "workflow": 2, - "android": 0.5, - "angular": 0.5, - "crash": 0.6666666666666667, - "bootstrap": 0.5, - "brand": 0.6666666666666667, - "icon": 0.6666666666666667, - "report": 2, - "business": 0.0740740740740741, - "cdn": 0.5, - "chat": 0.22222222222222227, - "chore": 0.5, - "bug-report": 0.6666666666666667, - "feature-request": 2 - }, - "negative_weights": { - "component": 0.4552608290353539, - "concurrent": 0.052734375, - "mode": 0.052734375, - "bias": 3.2652041419610736e-33, - "reconciler": 0.03703703703703705, - "scheduler": 0.03703703703703705, - "suspense": 0.11111111111111113, - "confirmed": 0.0625, - "conflicts": 0.25, - "contribution": 0.33333333333333337, - "welcome": 0.11111111111111113, - "critical": 0.08333333333333334, - "difficulty": 0.13888888888888892, - "challenging": 0.33333333333333337, - "easy": 1, - "hard": 1, - "medium": 1, - "starter": 1, - "unknown": 0.4166666666666667, - "or": 0.4166666666666667, - "n": 0.4166666666666667, - "a": 0.0625, - "very": 1, - "do": 2.109375, - "not": 0.052734375, - "merge": 0.140625, - "duplicate": 0.08333333333333334, - "enterprise": 0.25, - "enterprise-": 0.33333333333333337, - "-backport": 0.33333333333333337, - "feedback": 0.33333333333333337, - "requested": 0.33333333333333337, - "files": 0.11111111111111113, - "(category)": 0.00003568216032064329, - "first-timers-only": 0.25, - "flags": 0.11111111111111113, - "fontawesome": 0.33333333333333337, - "com": 0.33333333333333337, - "food": 0.11111111111111113, - "genders": 0.33333333333333337, - "gh": 0.375, - "review": 0.56953125, - "accepted": 0.125, - "go": 0.16000000000000003, - "client": 0.30000000000000004, - "internal": 2.4000000000000004, - "release": 0.16000000000000003, - "good": 0.926971435546875, - "first": 0.140625, - "issue": 0.140625, - "+": 1, - "has": 0.03703703703703705, - "bounty": 0.33333333333333337, - "pr": 0.00019402553637822503, - "help": 0.09375, - "wanted": 0.375, - "sos": 0.375, - "hi-pri": 0.25, - "high-priority": 0.25, - "hodor": 0.25, - "https": 0.25, - "ie": 0.08333333333333334, - "import": 0.125, - "in": 0.125, - "progress": 0.375, - "started": 0.125, - "invalid": 0.09375, - "jquery": 0.33333333333333337, - "differences": 0.33333333333333337, - "jsonp-polling": 0.25, - "kbfs": 0.25, - "lks": 0.25, - "m": 0.33333333333333337, - "s": 0.33333333333333337, - "major": 0.25, - "mass": 0.33333333333333337, - "purge": 0.33333333333333337, - "minor": 0.25, - "proxy": 1, - "must-triage": 0.25, - "namespaces": 0.25, - "need-info": 0.25, - "needs": 0.055555555555555566, - "example": 2.63671875, - "app": 0.4, - "failing": 1, - "test": 1.1718750000000002, - "browser": 0.11111111111111113, - "testing": 1, - "changelog": 1, - "docs": 3.1640625000000004, - "documentation": 4.21875, - "info": 0.4166666666666667, - "more": 0.4166666666666667, - "man": 0.4166666666666667, - "shrugging": 0.4166666666666667, - "repro": 1, - "triage": 0.25, - "needs-more-info": 0.25, - "needs-research": 0.25, - "bug": 11.25, - "on": 0.33333333333333337, - "hold": 0.33333333333333337, - "open": 0.25, - "opinions": 0.33333333333333337, - "needed": 0.11111111111111113, - "p": 0.25, - "pending": 1, - "planned": 0.03703703703703705, - "feature": 0.6750000000000002, - "for": 0.4, - "next": 1, - "pr-existing": 0.25, - "deprecation": 0.11111111111111113, - "merged": 0.13888888888888892, - "ready": 0.04166666666666667, - "to": 0.1875, - "be": 0.4166666666666667, - "reviewed-approved": 0.11111111111111113, - "reviewed-changes-requested": 0.11111111111111113, - "unreviewed": 0.11111111111111113, - "wip": 0.08333333333333334, - "priority": 0.11111111111111113, - "high": 0.33333333333333337, - "low": 1, - "production": 0.25, - "alpha": 1, - "released": 0.25, - "reminder": 0.25, - "resolution": 0.125, - "information": 1, - "support": 0.004291534423828126, - "redirect": 0.375, - "spam": 0.25, - "spammy": 0.25, - "stale": 0.25, - "status": 0.04166666666666667, - "heavy": 0.4166666666666667, - "check": 0.4166666666666667, - "mark": 0.4166666666666667, - "available": 0.33333333333333337, - "free": 1, - "cla": 0.13888888888888892, - "signed": 0.13888888888888892, - "code": 1, - "request": 2, - "hacktoberfest": 1.8984375, - "approved": 0.09375, - "construction": 1, - "worker": 1, - "detective": 1, - "left": 1, - "out": 1, - "luggage": 1, - "stop": 1, - "sign": 1, - "deploy": 1, - "passport": 1, - "control": 1, - "waiting": 1, - "wontfix": 0.25, - "work": 1, - "triage-done": 0.25, - "trivial": 0.25, - "type": 0.07724761962890629, - "archive": 0.11111111111111113, - "repeat": 1, - "getting": 0.375, - "x": 0.00390625, - "non-library": 1, - "types": 0.25, - "unable": 0.140625, - "reproduce": 0.140625, - "unconfirmed": 0.25, - "upstream": 0.0078125, - "v": 0.25, - "writer-needed": 0.25, - "wrong": 0.33333333333333337, - "repo": 0.33333333333333337, - "xhr-polling": 0.25, - "core": 6.591796875, - "utilities": 6.591796875, - "developer": 6.591796875, - "tools": 6.591796875, - "dom": 4, - "eslint": 3.515625, - "rules": 3.515625, - "hooks": 2, - "optimizing": 1.875, - "compiler": 1.875, - "reactis": 2, - "server": 1.875, - "rendering": 1.875, - "shallow": 1.875, - "renderer": 3.515625, - "utils": 1.875, - "configuration": 2.25, - "csharp": 2.25, - "css": 2.25, - "css-select": 2.25, - "currency": 8, - "defect": 2.25, - "dependencies": 2.25, - "dependency": 3.75, - "related": 2, - "design": 4.5, - "discussion": 2.25, - "doc": 2.25, - "book": 1.875, - "electron": 2.25, - "enhancement": 7.91015625, - "es": 2.25, - "external": 2.25, - "externs": 2.25, - "feat": 3.515625, - "cli": 2.25, - "babel": 1, - "cli-service": 1.875, - "build": 1.875, - "serve": 1, - "e": 1.875, - "e-cypress": 1.875, - "e-nightwatch": 1, - "plugin": 1, - "api": 1.875, - "pwa": 1, - "typescript": 1, - "ui": 2.25, - "unit-jest": 1, - "unit-mocha": 1, - "flashsocket": 2.25, - "freemasonry": 2, - "icons": 2, - "frontend": 2.25, - "future": 1.875, - "architecture": 1.875, - "enhancements": 1.875, - "crypto": 1, - "general": 2, - "js": 2, - "great": 2, - "insight": 2, - "greenkeeper": 2.25, - "hack": 2.25, - "hacked": 2.25, - "handshakes": 2.25, - "hot": 1, - "html": 2.25, - "htmlfile": 2.25, - "icebox": 2.25, - "infrastructure": 1.7999999999999998, - "hammer": 1.7999999999999998, - "and": 1.7999999999999998, - "wrench": 1.7999999999999998, - "installer": 2.25, - "cleanup": 4, - "internal-issue-created": 2.25, - "ios": 2.25, - "lang-crystal": 2.25, - "lang-dart": 2.25, - "lang-elixir": 2.25, - "lang-go": 2.25, - "lang-julia": 2.25, - "lang-objc": 2.25, - "lang-r": 2.25, - "lang-scala": 2.25, - "legal": 2.25, - "library": 2.25, - "lint": 2.25, - "linux": 2.25, - "macos": 2.25, - "maintenance": 2.25, - "mobile": 6.591796875, - "device": 6.591796875, - "modules": 2.25, - "new": 3.515625, - "proposal": 1.875, - "best": 1.875, - "practice": 1.875, - "node": 2.25, - "operations": 2.25, - "optimisation": 2.25, - "other": 1.7999999999999998, - "language": 1.7999999999999998, - "integration": 1.7999999999999998, - "packaging": 2.25, - "parser": 2.25, - "parser-specific": 2.25, - "performance": 2.25, - "breaking": 3.515625, - "change": 3.515625, - "boom": 1, - "fix": 1.875, - "⬆️": 1.875, - "memo": 1.875, - "house": 1.875, - "rocket": 1, - "polish": 1.7999999999999998, - "nail": 1.7999999999999998, - "care": 1.7999999999999998, - "spec": 6.328124999999999, - "compliance": 1.7999999999999998, - "eyeglasses": 1.7999999999999998, - "underlying": 1, - "project": 2, - "management": 2, - "question": 2.25, - "react": 2, - "flare": 2, - "native": 1, - "refactor": 2.25, - "regression": 18, - "revisitinfuture": 2.25, - "rfc": 2.25, - "ruby": 2.25, - "security": 2.25, - "shell": 2.25, - "socket": 1.875, - "io": 1.875, - "async": 1.875, - "functions": 1.875, - "generators": 1, - "bigint": 1, - "class": 1, - "fields": 1, - "classes": 1, - "decorators": 1, - "(legacy)": 1, - "expressions": 1.875, - "suggestion": 2.25, - "syntax": 1, - "technical": 2, - "debt": 2, - "technical-debt": 2.25, - "tests": 2.25, - "tips": 2.25, - "todo": 1.875, - "spiral": 1.875, - "notepad": 1.875, - "translation": 2.25, - "travis-yml": 2.25, - "community": 0.01373291015625, - "discuss": 1.7999999999999998, - "speech": 1.7999999999999998, - "balloon": 1.7999999999999998, - "update": 2.25, - "bulb": 1, - "grey": 1, - "sendgrid": 1, - "vulnerability": 1.875, - "warning": 1.875, - "ux": 2.25, - "website": 2.25, - "websocket": 2.25, - "weekly-digest": 2.25, - "windows": 2.25, - "-": 0.11111111111111113, - "backlog": 0.33333333333333337, - "working": 0.33333333333333337, - "done": 1, - "backport": 0.33333333333333337, - "abandoned": 0.25, - "accessibility": 0.25, - "animals": 0.11111111111111113, - "answered": 0.25, - "area": 2, - "arrows": 0.11111111111111113, - "automotive": 0.11111111111111113, - "fa": 1, - "pro": 1, - "awaiting-review": 0.25, - "beginner-friendly": 0.25, - "beverage": 0.11111111111111113, - "blocked": 0.25, - "blocker": 0.25, - "safari": 0.33333333333333337, - "c": 0.33333333333333337, - "c++": 0.33333333333333337, - "cannot": 1, - "cantfix": 0.25, - "no": 1, - "yes": 1, - "closed": 0.4, - "due": 0.4, - "inactivity": 0.4, - "cmty": 2, - "cancelled": 1, - "fixed": 1, - "implemented": 1, - "resolved": 1, - "arrow": 1.7999999999999998, - "heading": 1.7999999999999998, - "down": 1.7999999999999998, - "pull": 1.7999999999999998, - "font-face": 2.25, - "adapter": 2.25, - "advance": 1, - "workflow": 1, - "android": 2.25, - "angular": 2.25, - "crash": 2, - "bootstrap": 2.25, - "brand": 2, - "icon": 2, - "report": 1, - "business": 8, - "cdn": 2.25, - "chat": 4, - "chore": 2.25, - "bug-report": 2, - "feature-request": 1 - }, - "positive_weights_sum": {}, - "negative_weights_sum": {} - }, - "maintenance": { - "positive_weights": { - "component": 0.0007866907125730911, - "core": 24.71923828125, - "utilities": 24.71923828125, - "bias": 6.604639423977464e-36, - "eslint": 26.3671875, - "rules": 13.18359375, - "dependencies": 51.2578125, - "dependency": 5.56182861328125, - "related": 16, - "enhancement": 22.83272596032475, - "feat": 0.16666666666666669, - "internal": 2.4000000000000004, - "cleanup": 16, - "lint": 10.125, - "maintenance": 15.8203125, - "operations": 10.125, - "performance": 10.125, - "pr": 0.018331222236156453, - "⬆️": 13.18359375, - "polish": 6.479999999999999, - "nail": 6.479999999999999, - "care": 6.479999999999999, - "technical": 8, - "debt": 8, - "technical-debt": 10.125, - "to": 3.555555555555556, - "do": 7.59375, - "todo": 7.03125, - "spiral": 7.03125, - "notepad": 7.03125, - "type": 0.009666855476098135, - "community": 1.7578125, - "construction": 2.9296874999999996, - "sendgrid": 2, - "update": 7.2081298828125, - "concurrent": 0.28125, - "mode": 0.28125, - "developer": 0.28125, - "tools": 0.28125, - "dom": 0.6666666666666667, - "hooks": 0.6666666666666667, - "optimizing": 0.75, - "compiler": 0.75, - "reactis": 0.6666666666666667, - "reconciler": 0.6666666666666667, - "scheduler": 2, - "server": 0.75, - "rendering": 0.75, - "shallow": 0.75, - "renderer": 0.75, - "suspense": 2, - "test": 0.75, - "utils": 0.75, - "configuration": 0.5, - "confirmed": 0.5, - "conflicts": 0.5, - "contribution": 0.6666666666666667, - "welcome": 0.6666666666666667, - "critical": 0.5, - "csharp": 0.5, - "css": 0.5, - "css-select": 0.5, - "currency": 0.6666666666666667, - "(category)": 0.6666666666666667, - "defect": 0.5, - "design": 0.5, - "difficulty": 0.2777777777777778, - "challenging": 0.6666666666666667, - "easy": 2, - "hard": 2, - "medium": 2, - "starter": 2, - "unknown": 0.8333333333333333, - "or": 0.8333333333333333, - "n": 0.8333333333333333, - "a": 0.8333333333333333, - "very": 2, - "discussion": 0.5, - "not": 0.28125, - "merge": 0.09375000000000001, - "doc": 0.0703125, - "docs": 0.5, - "documentation": 0.5, - "book": 2, - "duplicate": 0.5, - "electron": 0.5, - "enterprise": 0.5, - "enterprise-": 0.6666666666666667, - "-backport": 0.6666666666666667, - "es": 0.5, - "external": 0.5, - "externs": 0.5, - "cli": 0.6666666666666667, - "babel": 0.6666666666666667, - "cli-service": 0.75, - "build": 0.75, - "serve": 2, - "e": 2, - "e-cypress": 2, - "e-nightwatch": 2, - "plugin": 2, - "api": 2, - "pwa": 2, - "typescript": 2, - "ui": 2, - "unit-jest": 2, - "unit-mocha": 2, - "feature": 0.1875, - "request": 0.75, - "feedback": 0.6666666666666667, - "requested": 0.6666666666666667, - "files": 2, - "first-timers-only": 0.5, - "flags": 2, - "flashsocket": 0.5, - "fontawesome": 0.6666666666666667, - "com": 0.6666666666666667, - "food": 2, - "freemasonry": 0.6666666666666667, - "icons": 0.6666666666666667, - "frontend": 0.5, - "future": 0.75, - "architecture": 0.75, - "enhancements": 0.75, - "crypto": 2, - "genders": 2, - "general": 0.6666666666666667, - "js": 0.6666666666666667, - "gh": 0.75, - "review": 0.75, - "accepted": 0.75, - "go": 0.8, - "client": 0.8, - "release": 0.8, - "good": 0.75, - "first": 0.75, - "issue": 0.75, - "+": 2, - "great": 0.6666666666666667, - "insight": 0.6666666666666667, - "greenkeeper": 0.5, - "hack": 0.5, - "hacked": 0.5, - "hacktoberfest": 0.5, - "handshakes": 0.5, - "has": 0.6666666666666667, - "bounty": 2, - "help": 0.75, - "wanted": 0.75, - "sos": 2, - "hi-pri": 0.5, - "high-priority": 0.5, - "hodor": 0.5, - "hot": 2, - "html": 0.5, - "htmlfile": 0.5, - "https": 0.5, - "icebox": 0.5, - "ie": 0.5, - "import": 0.6666666666666667, - "in": 0.3333333333333333, - "progress": 0.8333333333333333, - "started": 0.6666666666666667, - "infrastructure": 0.8, - "hammer": 0.8, - "and": 0.8, - "wrench": 0.8, - "installer": 2, - "internal-issue-created": 2, - "invalid": 2, - "ios": 2, - "jquery": 0.6666666666666667, - "differences": 0.6666666666666667, - "jsonp-polling": 2, - "kbfs": 2, - "lang-crystal": 2, - "lang-dart": 2, - "lang-elixir": 2, - "lang-go": 2, - "lang-julia": 2, - "lang-objc": 2, - "lang-r": 2, - "lang-scala": 2, - "legal": 2, - "library": 2, - "linux": 2, - "lks": 2, - "m": 0.6666666666666667, - "s": 0.6666666666666667, - "macos": 2, - "major": 2, - "mass": 0.6666666666666667, - "purge": 0.6666666666666667, - "minor": 2, - "mobile": 0.75, - "device": 0.75, - "support": 0.75, - "proxy": 2, - "modules": 2, - "must-triage": 2, - "namespaces": 2, - "need-info": 2, - "needs": 0.3125, - "example": 2, - "app": 2, - "failing": 2, - "browser": 0.75, - "testing": 0.75, - "changelog": 2, - "info": 0.8333333333333333, - "more": 0.8333333333333333, - "man": 0.8333333333333333, - "shrugging": 0.8333333333333333, - "repro": 2, - "triage": 2, - "needs-more-info": 2, - "needs-research": 2, - "new": 0.10546875, - "proposal": 2, - "best": 2, - "practice": 2, - "node": 0.6666666666666667, - "next": 0.6666666666666667, - "bug": 0.5, - "on": 0.8333333333333333, - "hold": 0.8333333333333333, - "open": 2, - "opinions": 2, - "needed": 2, - "optimisation": 2, - "other": 2, - "language": 2, - "integration": 2, - "p": 2, - "packaging": 2, - "parser": 2, - "parser-specific": 2, - "pending": 2, - "planned": 2, - "for": 2, - "pr-existing": 2, - "breaking": 0.6666666666666667, - "change": 0.6666666666666667, - "boom": 0.6666666666666667, - "fix": 2, - "deprecation": 2, - "memo": 2, - "house": 0.75, - "merged": 0.34722222222222215, - "rocket": 3, - "ready": 0.34722222222222215, - "be": 0.34722222222222215, - "reviewed-approved": 2, - "reviewed-changes-requested": 2, - "spec": 0.10546875, - "compliance": 2, - "eyeglasses": 2, - "underlying": 2, - "unreviewed": 2, - "wip": 2, - "priority": 2, - "high": 2, - "low": 2, - "production": 2, - "project": 2, - "management": 2, - "question": 0.75, - "react": 2, - "flare": 2, - "native": 2, - "refactor": 2, - "regression": 0.6666666666666667, - "alpha": 2, - "released": 2, - "reminder": 2, - "resolution": 2, - "information": 2, - "redirect": 2, - "revisitinfuture": 2, - "rfc": 2, - "ruby": 2, - "security": 2, - "shell": 2, - "socket": 2, - "io": 2, - "spam": 2, - "spammy": 2, - "async": 2, - "functions": 2, - "generators": 2, - "bigint": 2, - "class": 2, - "fields": 2, - "classes": 2, - "decorators": 2, - "(legacy)": 2, - "expressions": 0.10546875, - "stale": 2, - "status": 0.34722222222222215, - "heavy": 0.8333333333333334, - "check": 0.8333333333333334, - "mark": 0.8333333333333334, - "available": 0.8, - "free": 2, - "cla": 0.8333333333333334, - "signed": 0.8333333333333334, - "code": 2, - "approved": 2, - "worker": 0.8333333333333333, - "detective": 2, - "left": 2, - "out": 2, - "luggage": 2, - "stop": 0.8333333333333333, - "sign": 0.8333333333333333, - "deploy": 2, - "passport": 2, - "control": 2, - "waiting": 2, - "wontfix": 2, - "work": 2, - "suggestion": 2, - "syntax": 2, - "tests": 2, - "tips": 2, - "translation": 2, - "travis-yml": 2, - "triage-done": 2, - "trivial": 2, - "archive": 2, - "discuss": 2, - "speech": 0.75, - "balloon": 0.75, - "repeat": 2, - "bulb": 0.00556182861328125, - "getting": 2, - "x": 0.5, - "non-library": 2, - "grey": 2, - "vulnerability": 2, - "warning": 2, - "types": 2, - "unable": 0.75, - "reproduce": 0.75, - "unconfirmed": 2, - "upstream": 2, - "ux": 2, - "v": 2, - "website": 2, - "websocket": 2, - "weekly-digest": 2, - "windows": 2, - "writer-needed": 2, - "wrong": 2, - "repo": 2, - "xhr-polling": 2, - "arrow": 6.479999999999999, - "heading": 6.479999999999999, - "down": 6.479999999999999, - "pull": 6.479999999999999, - "chore": 22.78125, - "-": 0.6666666666666667, - "backlog": 0.6666666666666667, - "working": 2, - "done": 2, - "backport": 2, - "font-face": 2, - "abandoned": 2, - "accessibility": 2, - "adapter": 2, - "advance": 2, - "workflow": 2, - "android": 2, - "angular": 2, - "animals": 2, - "answered": 2, - "area": 0.6666666666666667, - "crash": 0.6666666666666667, - "arrows": 2, - "automotive": 2, - "fa": 0.8, - "pro": 0.8, - "awaiting-review": 2, - "beginner-friendly": 2, - "beverage": 2, - "blocked": 2, - "blocker": 2, - "bootstrap": 2, - "brand": 0.6666666666666667, - "icon": 0.6666666666666667, - "safari": 2, - "report": 2, - "business": 2, - "c": 0.6666666666666667, - "c++": 0.6666666666666667, - "cannot": 2, - "cantfix": 2, - "cdn": 2, - "chat": 2, - "no": 2, - "yes": 2, - "closed": 0.32000000000000006, - "due": 0.32000000000000006, - "inactivity": 0.32000000000000006, - "cmty": 2, - "bug-report": 2, - "feature-request": 2, - "cancelled": 2, - "fixed": 2, - "implemented": 2, - "resolved": 2 - }, - "negative_weights": { - "component": 2.548877908736813, - "core": 0.019775390625, - "utilities": 0.019775390625, - "bias": 3.0997513812354103, - "eslint": 0.017578125, - "rules": 0.052734375, - "dependencies": 0.00390625, - "dependency": 0.01287460327148438, - "related": 0.03703703703703705, - "enhancement": 0.000041438852349529056, - "feat": 2.5000000000000004, - "internal": 0.125, - "cleanup": 0.03703703703703705, - "lint": 0.0625, - "maintenance": 0.03515625, - "operations": 0.0625, - "performance": 0.0625, - "pr": 1.197639852762223, - "⬆️": 0.052734375, - "polish": 0.16000000000000003, - "nail": 0.16000000000000003, - "care": 0.16000000000000003, - "technical": 0.11111111111111113, - "debt": 0.11111111111111113, - "technical-debt": 0.0625, - "to": 0.0018904320987654336, - "do": 0.0011773756992669768, - "todo": 0.140625, - "spiral": 0.140625, - "notepad": 0.140625, - "type": 3.0208923362806672, - "community": 0.31640625, - "construction": 0.24609375, - "sendgrid": 1, - "update": 0.01373291015625, - "concurrent": 3.515625, - "mode": 3.515625, - "developer": 3.515625, - "tools": 3.515625, - "dom": 2, - "hooks": 2, - "optimizing": 1.875, - "compiler": 1.875, - "reactis": 2, - "reconciler": 2, - "scheduler": 1, - "server": 1.875, - "rendering": 1.875, - "shallow": 1.875, - "renderer": 1.875, - "suspense": 1, - "test": 1.875, - "utils": 1.875, - "configuration": 2.25, - "confirmed": 2.25, - "conflicts": 2.25, - "contribution": 2, - "welcome": 2, - "critical": 2.25, - "csharp": 2.25, - "css": 2.25, - "css-select": 2.25, - "currency": 2, - "(category)": 2, - "defect": 2.25, - "design": 2.25, - "difficulty": 3.5, - "challenging": 2, - "easy": 1, - "hard": 1, - "medium": 1, - "starter": 1, - "unknown": 1.75, - "or": 1.75, - "n": 1.75, - "a": 1.75, - "very": 1, - "discussion": 2.25, - "not": 3.515625, - "merge": 7.03125, - "doc": 7.91015625, - "docs": 2.25, - "documentation": 2.25, - "book": 1, - "duplicate": 2.25, - "electron": 2.25, - "enterprise": 2.25, - "enterprise-": 2, - "-backport": 2, - "es": 2.25, - "external": 2.25, - "externs": 2.25, - "cli": 2, - "babel": 2, - "cli-service": 1.875, - "build": 1.875, - "serve": 1, - "e": 1, - "e-cypress": 1, - "e-nightwatch": 1, - "plugin": 1, - "api": 1, - "pwa": 1, - "typescript": 1, - "ui": 1, - "unit-jest": 1, - "unit-mocha": 1, - "feature": 4.21875, - "request": 1.875, - "feedback": 2, - "requested": 2, - "files": 1, - "first-timers-only": 2.25, - "flags": 1, - "flashsocket": 2.25, - "fontawesome": 2, - "com": 2, - "food": 1, - "freemasonry": 2, - "icons": 2, - "frontend": 2.25, - "future": 1.875, - "architecture": 1.875, - "enhancements": 1.875, - "crypto": 1, - "genders": 1, - "general": 2, - "js": 2, - "gh": 1.875, - "review": 1.875, - "accepted": 1.875, - "go": 1.7999999999999998, - "client": 1.7999999999999998, - "release": 1.7999999999999998, - "good": 1.875, - "first": 1.875, - "issue": 1.875, - "+": 1, - "great": 2, - "insight": 2, - "greenkeeper": 2.25, - "hack": 2.25, - "hacked": 2.25, - "hacktoberfest": 2.25, - "handshakes": 2.25, - "has": 2, - "bounty": 1, - "help": 1.875, - "wanted": 1.875, - "sos": 1, - "hi-pri": 2.25, - "high-priority": 2.25, - "hodor": 2.25, - "hot": 1, - "html": 2.25, - "htmlfile": 2.25, - "https": 2.25, - "icebox": 2.25, - "ie": 2.25, - "import": 2, - "in": 3.1499999999999995, - "progress": 1.75, - "started": 2, - "infrastructure": 1.7999999999999998, - "hammer": 1.7999999999999998, - "and": 1.7999999999999998, - "wrench": 1.7999999999999998, - "installer": 1, - "internal-issue-created": 1, - "invalid": 1, - "ios": 1, - "jquery": 2, - "differences": 2, - "jsonp-polling": 1, - "kbfs": 1, - "lang-crystal": 1, - "lang-dart": 1, - "lang-elixir": 1, - "lang-go": 1, - "lang-julia": 1, - "lang-objc": 1, - "lang-r": 1, - "lang-scala": 1, - "legal": 1, - "library": 1, - "linux": 1, - "lks": 1, - "m": 2, - "s": 2, - "macos": 1, - "major": 1, - "mass": 2, - "purge": 2, - "minor": 1, - "mobile": 1.875, - "device": 1.875, - "support": 1.875, - "proxy": 1, - "modules": 1, - "must-triage": 1, - "namespaces": 1, - "need-info": 1, - "needs": 3.28125, - "example": 1, - "app": 1, - "failing": 1, - "browser": 1.875, - "testing": 1.875, - "changelog": 1, - "info": 1.75, - "more": 1.75, - "man": 1.75, - "shrugging": 1.75, - "repro": 1, - "triage": 1, - "needs-more-info": 1, - "needs-research": 1, - "new": 6.591796875, - "proposal": 1, - "best": 1, - "practice": 1, - "node": 2, - "next": 2, - "bug": 2.25, - "on": 1.75, - "hold": 1.75, - "open": 1, - "opinions": 1, - "needed": 1, - "optimisation": 1, - "other": 1, - "language": 1, - "integration": 1, - "p": 1, - "packaging": 1, - "parser": 1, - "parser-specific": 1, - "pending": 1, - "planned": 1, - "for": 1, - "pr-existing": 1, - "breaking": 2, - "change": 2, - "boom": 2, - "fix": 1, - "deprecation": 1, - "memo": 1, - "house": 1.875, - "merged": 3.0625, - "rocket": 0.2083333333333334, - "ready": 3.0625, - "be": 3.0625, - "reviewed-approved": 1, - "reviewed-changes-requested": 1, - "spec": 6.591796875, - "compliance": 1, - "eyeglasses": 1, - "underlying": 1, - "unreviewed": 1, - "wip": 1, - "priority": 1, - "high": 1, - "low": 1, - "production": 1, - "project": 1, - "management": 1, - "question": 1.875, - "react": 1, - "flare": 1, - "native": 1, - "refactor": 1, - "regression": 2, - "alpha": 1, - "released": 1, - "reminder": 1, - "resolution": 1, - "information": 1, - "redirect": 1, - "revisitinfuture": 1, - "rfc": 1, - "ruby": 1, - "security": 1, - "shell": 1, - "socket": 1, - "io": 1, - "spam": 1, - "spammy": 1, - "async": 1, - "functions": 1, - "generators": 1, - "bigint": 1, - "class": 1, - "fields": 1, - "classes": 1, - "decorators": 1, - "(legacy)": 1, - "expressions": 6.591796875, - "stale": 1, - "status": 3.0625, - "heavy": 1.75, - "check": 1.75, - "mark": 1.75, - "available": 1.7999999999999998, - "free": 1, - "cla": 1.75, - "signed": 1.75, - "code": 1, - "approved": 1, - "worker": 1.75, - "detective": 1, - "left": 1, - "out": 1, - "luggage": 1, - "stop": 1.75, - "sign": 1.75, - "deploy": 1, - "passport": 1, - "control": 1, - "waiting": 1, - "wontfix": 1, - "work": 1, - "suggestion": 1, - "syntax": 1, - "tests": 1, - "tips": 1, - "translation": 1, - "travis-yml": 1, - "triage-done": 1, - "trivial": 1, - "archive": 1, - "discuss": 1, - "speech": 1.875, - "balloon": 1.875, - "repeat": 1, - "bulb": 43.451786041259766, - "getting": 1, - "x": 2.25, - "non-library": 1, - "grey": 1, - "vulnerability": 1, - "warning": 1, - "types": 1, - "unable": 1.875, - "reproduce": 1.875, - "unconfirmed": 1, - "upstream": 1, - "ux": 1, - "v": 1, - "website": 1, - "websocket": 1, - "weekly-digest": 1, - "windows": 1, - "writer-needed": 1, - "wrong": 1, - "repo": 1, - "xhr-polling": 1, - "arrow": 0.16000000000000003, - "heading": 0.16000000000000003, - "down": 0.16000000000000003, - "pull": 0.16000000000000003, - "chore": 0.015625, - "-": 2, - "backlog": 2, - "working": 1, - "done": 1, - "backport": 1, - "font-face": 1, - "abandoned": 1, - "accessibility": 1, - "adapter": 1, - "advance": 1, - "workflow": 1, - "android": 1, - "angular": 1, - "animals": 1, - "answered": 1, - "area": 2, - "crash": 2, - "arrows": 1, - "automotive": 1, - "fa": 1.7999999999999998, - "pro": 1.7999999999999998, - "awaiting-review": 1, - "beginner-friendly": 1, - "beverage": 1, - "blocked": 1, - "blocker": 1, - "bootstrap": 1, - "brand": 2, - "icon": 2, - "safari": 1, - "report": 1, - "business": 1, - "c": 2, - "c++": 2, - "cannot": 1, - "cantfix": 1, - "cdn": 1, - "chat": 1, - "no": 1, - "yes": 1, - "closed": 3.2399999999999993, - "due": 3.2399999999999993, - "inactivity": 3.2399999999999993, - "cmty": 1, - "bug-report": 1, - "feature-request": 1, - "cancelled": 1, - "fixed": 1, - "implemented": 1, - "resolved": 1 - }, - "positive_weights_sum": {}, - "negative_weights_sum": {} - }, - "tool": { - "positive_weights": { - "component": 0.03258883953094484, - "developer": 4.94384765625, - "tools": 24.71923828125, - "bias": 3.3690379710489825e-21, - "electron": 22.78125, - "feat": 0.03125000000000001, - "babel": 16, - "flashsocket": 22.78125, - "installer": 22.78125, - "library": 22.78125, - "parser": 22.78125, - "parser-specific": 22.78125, - "pr": 0.5859375, - "underlying": 3.75, - "shell": 22.78125, - "socket": 7.03125, - "io": 7.03125, - "client": 2.8125, - "websocket": 10.125, - "concurrent": 0.28125, - "mode": 0.28125, - "core": 0.75, - "utilities": 0.75, - "dom": 0.6666666666666667, - "eslint": 0.75, - "rules": 0.75, - "hooks": 2, - "optimizing": 0.75, - "compiler": 0.75, - "reactis": 2, - "reconciler": 2, - "scheduler": 2, - "server": 2, - "rendering": 2, - "shallow": 2, - "renderer": 2, - "suspense": 2, - "test": 2, - "utils": 2, - "configuration": 0.5, - "confirmed": 0.5, - "conflicts": 0.5, - "contribution": 0.6666666666666667, - "welcome": 0.6666666666666667, - "critical": 0.5, - "csharp": 0.5, - "css": 0.5, - "css-select": 0.5, - "currency": 0.6666666666666667, - "(category)": 0.6666666666666667, - "defect": 0.5, - "dependencies": 0.5, - "dependency": 0.6666666666666667, - "related": 0.6666666666666667, - "design": 0.5, - "difficulty": 0.27777777777777785, - "challenging": 0.6666666666666667, - "easy": 2, - "hard": 2, - "medium": 2, - "starter": 2, - "unknown": 0.8333333333333334, - "or": 0.8333333333333334, - "n": 0.8333333333333334, - "a": 0.8333333333333334, - "very": 2, - "discussion": 0.5, - "do": 0.75, - "not": 0.75, - "merge": 0.75, - "doc": 0.5, - "docs": 0.5, - "documentation": 0.6666666666666667, - "book": 0.6666666666666667, - "duplicate": 0.5, - "enhancement": 0.5, - "enterprise": 0.5, - "enterprise-": 0.6666666666666667, - "-backport": 0.6666666666666667, - "es": 0.5, - "external": 0.5, - "externs": 0.5, - "cli": 0.6666666666666667, - "cli-service": 0.75, - "build": 0.75, - "serve": 2, - "e": 0.75, - "e-cypress": 0.75, - "e-nightwatch": 2, - "plugin": 0.75, - "api": 0.75, - "pwa": 0.6666666666666667, - "typescript": 0.6666666666666667, - "ui": 2, - "unit-jest": 2, - "unit-mocha": 2, - "feature": 0.5, - "request": 2, - "feedback": 0.6666666666666667, - "requested": 0.6666666666666667, - "files": 2, - "first-timers-only": 0.5, - "flags": 2, - "fontawesome": 0.6666666666666667, - "com": 0.6666666666666667, - "food": 2, - "freemasonry": 0.6666666666666667, - "icons": 0.6666666666666667, - "frontend": 0.5, - "future": 0.75, - "architecture": 0.75, - "enhancements": 0.75, - "crypto": 2, - "genders": 2, - "general": 0.6666666666666667, - "js": 0.6666666666666667, - "gh": 0.75, - "review": 0.75, - "accepted": 0.75, - "go": 0.8, - "internal": 0.8, - "release": 0.8, - "good": 0.8, - "first": 0.8, - "issue": 0.8, - "+": 0.8, - "great": 0.6666666666666667, - "insight": 0.6666666666666667, - "greenkeeper": 2, - "hack": 2, - "hacked": 2, - "hacktoberfest": 2, - "handshakes": 2, - "has": 0.6666666666666667, - "bounty": 0.6666666666666667, - "help": 0.75, - "wanted": 0.75, - "sos": 2, - "hi-pri": 2, - "high-priority": 2, - "hodor": 2, - "hot": 2, - "html": 2, - "htmlfile": 2, - "https": 2, - "icebox": 2, - "ie": 2, - "import": 0.6666666666666667, - "in": 0.8333333333333334, - "progress": 0.8333333333333334, - "started": 0.6666666666666667, - "infrastructure": 0.8, - "hammer": 0.8, - "and": 0.8, - "wrench": 0.8, - "cleanup": 2, - "internal-issue-created": 2, - "invalid": 2, - "ios": 2, - "jquery": 2, - "differences": 2, - "jsonp-polling": 2, - "kbfs": 2, - "lang-crystal": 2, - "lang-dart": 2, - "lang-elixir": 2, - "lang-go": 2, - "lang-julia": 2, - "lang-objc": 2, - "lang-r": 2, - "lang-scala": 2, - "legal": 2, - "lint": 2, - "linux": 2, - "lks": 2, - "m": 2, - "s": 2, - "macos": 2, - "maintenance": 2, - "major": 2, - "mass": 2, - "purge": 2, - "minor": 2, - "mobile": 2, - "device": 2, - "support": 2, - "proxy": 2, - "modules": 2, - "must-triage": 2, - "namespaces": 2, - "need-info": 2, - "needs": 0.8333333333333334, - "example": 2, - "app": 2, - "failing": 2, - "browser": 2, - "testing": 2, - "changelog": 2, - "info": 0.8333333333333334, - "more": 0.8333333333333334, - "man": 0.8333333333333334, - "shrugging": 0.8333333333333334, - "repro": 2, - "triage": 2, - "needs-more-info": 2, - "needs-research": 2, - "new": 2, - "proposal": 2, - "best": 2, - "practice": 2, - "node": 2, - "next": 2, - "bug": 2, - "on": 0.8333333333333334, - "hold": 0.8333333333333334, - "open": 2, - "operations": 2, - "opinions": 2, - "needed": 2, - "optimisation": 2, - "other": 2, - "language": 2, - "integration": 2, - "p": 2, - "packaging": 2, - "pending": 2, - "performance": 2, - "planned": 2, - "for": 2, - "pr-existing": 2, - "breaking": 2, - "change": 2, - "boom": 2, - "fix": 2, - "⬆️": 2, - "deprecation": 2, - "memo": 2, - "house": 2, - "merged": 0.8333333333333334, - "rocket": 2, - "polish": 2, - "nail": 2, - "care": 2, - "ready": 0.8333333333333334, - "to": 0.8333333333333334, - "be": 0.8333333333333334, - "reviewed-approved": 2, - "reviewed-changes-requested": 2, - "spec": 2, - "compliance": 2, - "eyeglasses": 2, - "unreviewed": 2, - "wip": 2, - "priority": 2, - "high": 2, - "low": 2, - "production": 2, - "project": 2, - "management": 2, - "question": 2, - "react": 2, - "flare": 2, - "native": 2, - "refactor": 2, - "regression": 2, - "alpha": 2, - "released": 2, - "reminder": 2, - "resolution": 2, - "information": 2, - "redirect": 2, - "revisitinfuture": 2, - "rfc": 2, - "ruby": 2, - "security": 2, - "spam": 2, - "spammy": 2, - "async": 2, - "functions": 2, - "generators": 2, - "bigint": 2, - "class": 2, - "fields": 2, - "classes": 2, - "decorators": 2, - "(legacy)": 2, - "expressions": 2, - "stale": 2, - "status": 0.34722222222222227, - "heavy": 0.8333333333333334, - "check": 0.8333333333333334, - "mark": 0.8333333333333334, - "available": 2, - "free": 2, - "cla": 0.8333333333333334, - "signed": 0.8333333333333334, - "code": 2, - "approved": 2, - "construction": 0.8333333333333334, - "worker": 0.8333333333333334, - "detective": 2, - "left": 2, - "out": 2, - "luggage": 2, - "stop": 0.8333333333333334, - "sign": 0.8333333333333334, - "deploy": 2, - "passport": 2, - "control": 2, - "waiting": 2, - "wontfix": 2, - "work": 2, - "suggestion": 2, - "syntax": 2, - "technical": 2, - "debt": 2, - "technical-debt": 2, - "tests": 2, - "tips": 2, - "todo": 2, - "spiral": 2, - "notepad": 2, - "translation": 2, - "travis-yml": 2, - "triage-done": 2, - "trivial": 2, - "type": 0.8, - "archive": 2, - "community": 2, - "discuss": 0.8, - "speech": 0.8, - "balloon": 0.8, - "update": 2, - "repeat": 2, - "bulb": 2, - "getting": 2, - "x": 0.6666666666666667, - "non-library": 2, - "grey": 2, - "sendgrid": 2, - "vulnerability": 2, - "warning": 2, - "types": 2, - "unable": 2, - "reproduce": 2, - "unconfirmed": 2, - "upstream": 2, - "ux": 2, - "v": 2, - "website": 2, - "weekly-digest": 2, - "windows": 2, - "writer-needed": 2, - "wrong": 2, - "repo": 2, - "xhr-polling": 2, - "bootstrap": 10.125, - "-": 0.6666666666666667, - "backlog": 0.6666666666666667, - "working": 2, - "done": 2, - "backport": 0.6666666666666667, - "arrow": 0.8, - "heading": 0.8, - "down": 0.8, - "pull": 0.8, - "font-face": 2, - "abandoned": 2, - "accessibility": 2, - "adapter": 2, - "advance": 0.75, - "workflow": 0.75, - "android": 2, - "angular": 2, - "animals": 2, - "answered": 2, - "area": 2, - "crash": 2, - "arrows": 2, - "automotive": 2, - "fa": 2, - "pro": 2, - "awaiting-review": 2, - "beginner-friendly": 2, - "beverage": 2, - "blocked": 2, - "blocker": 2, - "brand": 2, - "icon": 2, - "safari": 2, - "report": 2, - "business": 2, - "c": 2, - "c++": 2, - "cannot": 2, - "cantfix": 2, - "cdn": 2, - "chat": 2, - "chore": 2, - "no": 2, - "yes": 2, - "closed": 2, - "due": 2, - "inactivity": 2, - "cmty": 2, - "bug-report": 2, - "feature-request": 2, - "cancelled": 2, - "fixed": 2, - "implemented": 2, - "resolved": 2 - }, - "negative_weights": { - "component": 2.444162964820862, - "developer": 0.098876953125, - "tools": 0.019775390625, - "bias": 5.158420355345094, - "electron": 0.015625, - "feat": 1.9531250000000004, - "babel": 0.03703703703703705, - "flashsocket": 0.015625, - "installer": 0.015625, - "library": 0.015625, - "parser": 0.015625, - "parser-specific": 0.015625, - "pr": 1.23046875, - "underlying": 0.375, - "shell": 0.015625, - "socket": 0.140625, - "io": 0.140625, - "client": 0.253125, - "websocket": 0.0625, - "concurrent": 3.515625, - "mode": 3.515625, - "core": 1.875, - "utilities": 1.875, - "dom": 2, - "eslint": 1.875, - "rules": 1.875, - "hooks": 1, - "optimizing": 1.875, - "compiler": 1.875, - "reactis": 1, - "reconciler": 1, - "scheduler": 1, - "server": 1, - "rendering": 1, - "shallow": 1, - "renderer": 1, - "suspense": 1, - "test": 1, - "utils": 1, - "configuration": 2.25, - "confirmed": 2.25, - "conflicts": 2.25, - "contribution": 2, - "welcome": 2, - "critical": 2.25, - "csharp": 2.25, - "css": 2.25, - "css-select": 2.25, - "currency": 2, - "(category)": 2, - "defect": 2.25, - "dependencies": 2.25, - "dependency": 2, - "related": 2, - "design": 2.25, - "difficulty": 3.5, - "challenging": 2, - "easy": 1, - "hard": 1, - "medium": 1, - "starter": 1, - "unknown": 1.75, - "or": 1.75, - "n": 1.75, - "a": 1.75, - "very": 1, - "discussion": 2.25, - "do": 1.875, - "not": 1.875, - "merge": 1.875, - "doc": 2.25, - "docs": 2.25, - "documentation": 2, - "book": 2, - "duplicate": 2.25, - "enhancement": 2.25, - "enterprise": 2.25, - "enterprise-": 2, - "-backport": 2, - "es": 2.25, - "external": 2.25, - "externs": 2.25, - "cli": 2, - "cli-service": 1.875, - "build": 1.875, - "serve": 1, - "e": 1.875, - "e-cypress": 1.875, - "e-nightwatch": 1, - "plugin": 1.875, - "api": 1.875, - "pwa": 2, - "typescript": 2, - "ui": 1, - "unit-jest": 1, - "unit-mocha": 1, - "feature": 2.25, - "request": 1, - "feedback": 2, - "requested": 2, - "files": 1, - "first-timers-only": 2.25, - "flags": 1, - "fontawesome": 2, - "com": 2, - "food": 1, - "freemasonry": 2, - "icons": 2, - "frontend": 2.25, - "future": 1.875, - "architecture": 1.875, - "enhancements": 1.875, - "crypto": 1, - "genders": 1, - "general": 2, - "js": 2, - "gh": 1.875, - "review": 1.875, - "accepted": 1.875, - "go": 1.7999999999999998, - "internal": 1.7999999999999998, - "release": 1.7999999999999998, - "good": 1.7999999999999998, - "first": 1.7999999999999998, - "issue": 1.7999999999999998, - "+": 1.7999999999999998, - "great": 2, - "insight": 2, - "greenkeeper": 1, - "hack": 1, - "hacked": 1, - "hacktoberfest": 1, - "handshakes": 1, - "has": 2, - "bounty": 2, - "help": 1.875, - "wanted": 1.875, - "sos": 1, - "hi-pri": 1, - "high-priority": 1, - "hodor": 1, - "hot": 1, - "html": 1, - "htmlfile": 1, - "https": 1, - "icebox": 1, - "ie": 1, - "import": 2, - "in": 1.75, - "progress": 1.75, - "started": 2, - "infrastructure": 1.7999999999999998, - "hammer": 1.7999999999999998, - "and": 1.7999999999999998, - "wrench": 1.7999999999999998, - "cleanup": 1, - "internal-issue-created": 1, - "invalid": 1, - "ios": 1, - "jquery": 1, - "differences": 1, - "jsonp-polling": 1, - "kbfs": 1, - "lang-crystal": 1, - "lang-dart": 1, - "lang-elixir": 1, - "lang-go": 1, - "lang-julia": 1, - "lang-objc": 1, - "lang-r": 1, - "lang-scala": 1, - "legal": 1, - "lint": 1, - "linux": 1, - "lks": 1, - "m": 1, - "s": 1, - "macos": 1, - "maintenance": 1, - "major": 1, - "mass": 1, - "purge": 1, - "minor": 1, - "mobile": 1, - "device": 1, - "support": 1, - "proxy": 1, - "modules": 1, - "must-triage": 1, - "namespaces": 1, - "need-info": 1, - "needs": 1.75, - "example": 1, - "app": 1, - "failing": 1, - "browser": 1, - "testing": 1, - "changelog": 1, - "info": 1.75, - "more": 1.75, - "man": 1.75, - "shrugging": 1.75, - "repro": 1, - "triage": 1, - "needs-more-info": 1, - "needs-research": 1, - "new": 1, - "proposal": 1, - "best": 1, - "practice": 1, - "node": 1, - "next": 1, - "bug": 1, - "on": 1.75, - "hold": 1.75, - "open": 1, - "operations": 1, - "opinions": 1, - "needed": 1, - "optimisation": 1, - "other": 1, - "language": 1, - "integration": 1, - "p": 1, - "packaging": 1, - "pending": 1, - "performance": 1, - "planned": 1, - "for": 1, - "pr-existing": 1, - "breaking": 1, - "change": 1, - "boom": 1, - "fix": 1, - "⬆️": 1, - "deprecation": 1, - "memo": 1, - "house": 1, - "merged": 1.75, - "rocket": 1, - "polish": 1, - "nail": 1, - "care": 1, - "ready": 1.75, - "to": 1.75, - "be": 1.75, - "reviewed-approved": 1, - "reviewed-changes-requested": 1, - "spec": 1, - "compliance": 1, - "eyeglasses": 1, - "unreviewed": 1, - "wip": 1, - "priority": 1, - "high": 1, - "low": 1, - "production": 1, - "project": 1, - "management": 1, - "question": 1, - "react": 1, - "flare": 1, - "native": 1, - "refactor": 1, - "regression": 1, - "alpha": 1, - "released": 1, - "reminder": 1, - "resolution": 1, - "information": 1, - "redirect": 1, - "revisitinfuture": 1, - "rfc": 1, - "ruby": 1, - "security": 1, - "spam": 1, - "spammy": 1, - "async": 1, - "functions": 1, - "generators": 1, - "bigint": 1, - "class": 1, - "fields": 1, - "classes": 1, - "decorators": 1, - "(legacy)": 1, - "expressions": 1, - "stale": 1, - "status": 3.0625, - "heavy": 1.75, - "check": 1.75, - "mark": 1.75, - "available": 1, - "free": 1, - "cla": 1.75, - "signed": 1.75, - "code": 1, - "approved": 1, - "construction": 1.75, - "worker": 1.75, - "detective": 1, - "left": 1, - "out": 1, - "luggage": 1, - "stop": 1.75, - "sign": 1.75, - "deploy": 1, - "passport": 1, - "control": 1, - "waiting": 1, - "wontfix": 1, - "work": 1, - "suggestion": 1, - "syntax": 1, - "technical": 1, - "debt": 1, - "technical-debt": 1, - "tests": 1, - "tips": 1, - "todo": 1, - "spiral": 1, - "notepad": 1, - "translation": 1, - "travis-yml": 1, - "triage-done": 1, - "trivial": 1, - "type": 1.7999999999999998, - "archive": 1, - "community": 1, - "discuss": 1.7999999999999998, - "speech": 1.7999999999999998, - "balloon": 1.7999999999999998, - "update": 1, - "repeat": 1, - "bulb": 1, - "getting": 1, - "x": 2, - "non-library": 1, - "grey": 1, - "sendgrid": 1, - "vulnerability": 1, - "warning": 1, - "types": 1, - "unable": 1, - "reproduce": 1, - "unconfirmed": 1, - "upstream": 1, - "ux": 1, - "v": 1, - "website": 1, - "weekly-digest": 1, - "windows": 1, - "writer-needed": 1, - "wrong": 1, - "repo": 1, - "xhr-polling": 1, - "bootstrap": 0.0625, - "-": 2, - "backlog": 2, - "working": 1, - "done": 1, - "backport": 2, - "arrow": 1.7999999999999998, - "heading": 1.7999999999999998, - "down": 1.7999999999999998, - "pull": 1.7999999999999998, - "font-face": 1, - "abandoned": 1, - "accessibility": 1, - "adapter": 1, - "advance": 1.875, - "workflow": 1.875, - "android": 1, - "angular": 1, - "animals": 1, - "answered": 1, - "area": 1, - "crash": 1, - "arrows": 1, - "automotive": 1, - "fa": 1, - "pro": 1, - "awaiting-review": 1, - "beginner-friendly": 1, - "beverage": 1, - "blocked": 1, - "blocker": 1, - "brand": 1, - "icon": 1, - "safari": 1, - "report": 1, - "business": 1, - "c": 1, - "c++": 1, - "cannot": 1, - "cantfix": 1, - "cdn": 1, - "chat": 1, - "chore": 1, - "no": 1, - "yes": 1, - "closed": 1, - "due": 1, - "inactivity": 1, - "cmty": 1, - "bug-report": 1, - "feature-request": 1, - "cancelled": 1, - "fixed": 1, - "implemented": 1, - "resolved": 1 - }, - "positive_weights_sum": {}, - "negative_weights_sum": {} - }, - "code": { - "positive_weights": { - "component": 2.039102326989452, - "dom": 32, - "bias": 4.708793418760055e-61, - "hooks": 32, - "optimizing": 7.03125, - "compiler": 7.03125, - "reactis": 16, - "server": 7.03125, - "rendering": 7.03125, - "shallow": 13.18359375, - "renderer": 0.6952285766601562, - "configuration": 10.125, - "csharp": 10.125, - "css": 10.125, - "css-select": 10.125, - "es": 10.125, - "feat": 0.02574920654296877, - "cli": 16, - "cli-service": 13.18359375, - "build": 0.98876953125, - "serve": 3.75, - "pwa": 16, - "typescript": 16, - "frontend": 10.125, - "general": 8, - "js": 8, - "hack": 10.125, - "hacktoberfest": 7.2081298828125, - "html": 10.125, - "htmlfile": 10.125, - "lang-crystal": 10.125, - "lang-dart": 10.125, - "lang-elixir": 10.125, - "lang-go": 10.125, - "lang-julia": 10.125, - "lang-objc": 10.125, - "lang-r": 10.125, - "lang-scala": 10.125, - "modules": 10.125, - "optimisation": 10.125, - "pr": 0.061035156250000035, - "breaking": 7.03125, - "change": 7.03125, - "boom": 2, - "internal": 8.533333333333337, - "house": 7.03125, - "react": 8, - "flare": 4, - "native": 4, - "refactor": 10.125, - "ruby": 10.125, - "website": 10.125, - "concurrent": 0.10546875, - "mode": 0.10546875, - "core": 0.28125, - "utilities": 0.28125, - "developer": 0.28125, - "tools": 0.28125, - "eslint": 0.09375, - "rules": 0.28125, - "reconciler": 0.22222222222222227, - "scheduler": 0.22222222222222227, - "suspense": 0.22222222222222227, - "test": 0.10546875, - "utils": 2, - "confirmed": 0.5, - "conflicts": 0.5, - "contribution": 0.6666666666666667, - "welcome": 0.6666666666666667, - "critical": 0.5, - "currency": 0.6666666666666667, - "(category)": 0.6666666666666667, - "defect": 0.5, - "dependencies": 0.5, - "dependency": 0.6666666666666667, - "related": 0.6666666666666667, - "design": 0.5, - "difficulty": 0.2777777777777778, - "challenging": 0.6666666666666667, - "easy": 2, - "hard": 2, - "medium": 2, - "starter": 2, - "unknown": 0.8333333333333333, - "or": 0.8333333333333333, - "n": 0.8333333333333333, - "a": 0.3333333333333333, - "very": 2, - "discussion": 0.5, - "do": 0.75, - "not": 0.75, - "merge": 0.75, - "doc": 0.5, - "docs": 0.5, - "documentation": 0.5, - "book": 2, - "duplicate": 0.5, - "electron": 0.5, - "enhancement": 0.5, - "enterprise": 0.5, - "enterprise-": 0.6666666666666667, - "-backport": 0.6666666666666667, - "external": 0.5, - "externs": 0.5, - "babel": 0.22222222222222227, - "e": 0.28125, - "e-cypress": 0.75, - "e-nightwatch": 0.75, - "plugin": 0.03955078125, - "api": 8.54296875, - "ui": 0.6666666666666667, - "unit-jest": 0.6666666666666667, - "unit-mocha": 0.6666666666666667, - "feature": 0.2, - "request": 2, - "feedback": 0.6666666666666667, - "requested": 0.6666666666666667, - "files": 2, - "first-timers-only": 0.5, - "flags": 2, - "flashsocket": 0.5, - "fontawesome": 0.6666666666666667, - "com": 0.6666666666666667, - "food": 2, - "freemasonry": 0.6666666666666667, - "icons": 0.6666666666666667, - "future": 0.75, - "architecture": 0.75, - "enhancements": 0.75, - "crypto": 2, - "genders": 2, - "gh": 0.75, - "review": 0.75, - "accepted": 0.75, - "go": 0.12800000000000003, - "client": 0.12800000000000003, - "release": 0.12800000000000003, - "good": 0.75, - "first": 0.75, - "issue": 0.75, - "+": 2, - "great": 0.6666666666666667, - "insight": 0.6666666666666667, - "greenkeeper": 0.5, - "hacked": 0.5, - "handshakes": 0.5, - "has": 0.22222222222222227, - "bounty": 0.6666666666666667, - "help": 0.28125, - "wanted": 0.28125, - "sos": 2, - "hi-pri": 0.5, - "high-priority": 0.5, - "hodor": 0.5, - "hot": 2, - "https": 0.5, - "icebox": 0.5, - "ie": 0.5, - "import": 0.75, - "in": 0.30000000000000004, - "progress": 0.75, - "started": 2, - "infrastructure": 0.11250000000000002, - "hammer": 0.8, - "and": 0.8, - "wrench": 0.8, - "installer": 0.5, - "cleanup": 0.0740740740740741, - "internal-issue-created": 0.5, - "invalid": 0.5, - "ios": 0.5, - "jquery": 0.6666666666666667, - "differences": 0.6666666666666667, - "jsonp-polling": 0.5, - "kbfs": 0.5, - "legal": 0.5, - "library": 0.5, - "lint": 0.5, - "linux": 0.5, - "lks": 0.5, - "m": 0.6666666666666667, - "s": 0.6666666666666667, - "macos": 0.5, - "maintenance": 0.5, - "major": 0.5, - "mass": 0.6666666666666667, - "purge": 0.6666666666666667, - "minor": 0.5, - "mobile": 0.75, - "device": 0.75, - "support": 0.28125, - "proxy": 2, - "must-triage": 0.5, - "namespaces": 0.5, - "need-info": 0.5, - "needs": 0.3333333333333333, - "example": 0.8, - "app": 0.8, - "failing": 2, - "browser": 0.6666666666666667, - "testing": 2, - "changelog": 2, - "info": 0.8333333333333333, - "more": 0.8333333333333333, - "man": 0.8333333333333333, - "shrugging": 0.8333333333333333, - "repro": 2, - "triage": 2, - "needs-more-info": 0.5, - "needs-research": 0.5, - "new": 0.03955078125, - "proposal": 0.10546875, - "best": 0.75, - "practice": 0.75, - "node": 0.6666666666666667, - "next": 0.6666666666666667, - "bug": 0.75, - "on": 0.6666666666666667, - "hold": 0.6666666666666667, - "open": 0.5, - "operations": 0.5, - "opinions": 0.6666666666666667, - "needed": 0.6666666666666667, - "other": 0.8, - "language": 0.8, - "integration": 0.8, - "p": 0.5, - "packaging": 0.5, - "parser": 0.5, - "parser-specific": 0.5, - "pending": 2, - "performance": 0.5, - "planned": 2, - "for": 2, - "pr-existing": 0.5, - "fix": 0.75, - "⬆️": 2, - "deprecation": 0.6666666666666667, - "memo": 2, - "merged": 0.8333333333333333, - "rocket": 2, - "polish": 0.8, - "nail": 0.8, - "care": 0.8, - "ready": 0.8333333333333333, - "to": 0.3333333333333333, - "be": 0.8333333333333333, - "reviewed-approved": 0.6666666666666667, - "reviewed-changes-requested": 0.6666666666666667, - "spec": 0.30000000000000004, - "compliance": 0.8, - "eyeglasses": 0.8, - "underlying": 2, - "unreviewed": 0.6666666666666667, - "wip": 0.6666666666666667, - "priority": 0.6666666666666667, - "high": 0.6666666666666667, - "low": 2, - "production": 0.5, - "project": 0.6666666666666667, - "management": 0.6666666666666667, - "question": 0.5, - "regression": 0.5, - "alpha": 2, - "released": 0.5, - "reminder": 0.5, - "resolution": 0.75, - "information": 2, - "redirect": 0.75, - "revisitinfuture": 0.5, - "rfc": 0.5, - "security": 0.5, - "shell": 0.5, - "socket": 2, - "io": 2, - "spam": 0.5, - "spammy": 0.5, - "async": 0.75, - "functions": 0.75, - "generators": 2, - "bigint": 2, - "class": 2, - "fields": 2, - "classes": 2, - "decorators": 2, - "(legacy)": 2, - "expressions": 2, - "stale": 0.5, - "status": 0.28125, - "heavy": 0.8333333333333333, - "check": 0.8333333333333333, - "mark": 0.8333333333333333, - "available": 0.8, - "free": 2, - "cla": 0.8333333333333333, - "signed": 0.8333333333333333, - "code": 2, - "approved": 0.28125, - "construction": 2, - "worker": 2, - "detective": 2, - "left": 2, - "out": 2, - "luggage": 2, - "stop": 2, - "sign": 2, - "deploy": 2, - "passport": 2, - "control": 2, - "waiting": 2, - "wontfix": 2, - "work": 2, - "suggestion": 2, - "syntax": 2, - "technical": 0.6666666666666667, - "debt": 0.6666666666666667, - "technical-debt": 2, - "tests": 2, - "tips": 2, - "todo": 0.75, - "spiral": 0.75, - "notepad": 0.75, - "translation": 2, - "travis-yml": 2, - "triage-done": 2, - "trivial": 2, - "type": 0.8, - "archive": 2, - "community": 0.5, - "discuss": 0.8, - "speech": 0.8, - "balloon": 0.8, - "update": 2, - "repeat": 2, - "bulb": 2, - "getting": 2, - "x": 0.5, - "non-library": 2, - "grey": 2, - "sendgrid": 2, - "vulnerability": 2, - "warning": 2, - "types": 2, - "unable": 2, - "reproduce": 0.6666666666666667, - "unconfirmed": 2, - "upstream": 2, - "ux": 2, - "v": 2, - "websocket": 2, - "weekly-digest": 2, - "windows": 2, - "writer-needed": 2, - "wrong": 0.6666666666666667, - "repo": 0.6666666666666667, - "xhr-polling": 2, - "angular": 22.78125, - "-": 0.6666666666666667, - "backlog": 0.6666666666666667, - "working": 2, - "done": 2, - "backport": 2, - "arrow": 0.8, - "heading": 0.8, - "down": 0.8, - "pull": 0.8, - "font-face": 0.5, - "abandoned": 0.5, - "accessibility": 0.5, - "adapter": 0.5, - "advance": 2, - "workflow": 2, - "android": 0.5, - "animals": 2, - "answered": 0.5, - "area": 0.6666666666666667, - "crash": 0.6666666666666667, - "arrows": 2, - "automotive": 2, - "fa": 0.8, - "pro": 0.8, - "awaiting-review": 0.5, - "beginner-friendly": 0.5, - "beverage": 2, - "blocked": 0.5, - "blocker": 0.5, - "bootstrap": 0.5, - "brand": 0.6666666666666667, - "icon": 0.6666666666666667, - "safari": 0.6666666666666667, - "report": 2, - "business": 2, - "c": 0.6666666666666667, - "c++": 0.6666666666666667, - "cannot": 0.6666666666666667, - "cantfix": 0.5, - "cdn": 0.5, - "chat": 2, - "chore": 0.5, - "no": 2, - "yes": 2, - "closed": 0.8, - "due": 0.8, - "inactivity": 0.8, - "cmty": 0.6666666666666667, - "bug-report": 0.6666666666666667, - "feature-request": 2, - "cancelled": 2, - "fixed": 2, - "implemented": 2, - "resolved": 2 - }, - "negative_weights": { - "component": 4.70573859585724e-9, - "dom": 0.012345679012345684, - "bias": 2.0098499515670714, - "hooks": 0.012345679012345684, - "optimizing": 0.140625, - "compiler": 0.140625, - "reactis": 0.03703703703703705, - "server": 0.140625, - "rendering": 0.140625, - "shallow": 0.052734375, - "renderer": 0.3476142883300781, - "configuration": 0.0625, - "csharp": 0.0625, - "css": 0.0625, - "css-select": 0.0625, - "es": 0.0625, - "feat": 0.007450580596923835, - "cli": 0.03703703703703705, - "cli-service": 0.052734375, - "build": 0.494384765625, - "serve": 0.375, - "pwa": 0.03703703703703705, - "typescript": 0.03703703703703705, - "frontend": 0.0625, - "general": 0.11111111111111113, - "js": 0.11111111111111113, - "hack": 0.0625, - "hacktoberfest": 0.01373291015625, - "html": 0.0625, - "htmlfile": 0.0625, - "lang-crystal": 0.0625, - "lang-dart": 0.0625, - "lang-elixir": 0.0625, - "lang-go": 0.0625, - "lang-julia": 0.0625, - "lang-objc": 0.0625, - "lang-r": 0.0625, - "lang-scala": 0.0625, - "modules": 0.0625, - "optimisation": 0.0625, - "pr": 0.0024032592773437526, - "breaking": 0.140625, - "change": 0.140625, - "boom": 1, - "internal": 0.00033333333333333354, - "house": 0.140625, - "react": 0.11111111111111113, - "flare": 0.33333333333333337, - "native": 0.33333333333333337, - "refactor": 0.0625, - "ruby": 0.0625, - "website": 0.0625, - "concurrent": 6.591796875, - "mode": 6.591796875, - "core": 3.515625, - "utilities": 3.515625, - "developer": 3.515625, - "tools": 3.515625, - "eslint": 7.03125, - "rules": 3.515625, - "reconciler": 4, - "scheduler": 4, - "suspense": 4, - "test": 6.591796875, - "utils": 1, - "confirmed": 2.25, - "conflicts": 2.25, - "contribution": 2, - "welcome": 2, - "critical": 2.25, - "currency": 2, - "(category)": 2, - "defect": 2.25, - "dependencies": 2.25, - "dependency": 2, - "related": 2, - "design": 2.25, - "difficulty": 3.5, - "challenging": 2, - "easy": 1, - "hard": 1, - "medium": 1, - "starter": 1, - "unknown": 1.75, - "or": 1.75, - "n": 1.75, - "a": 3.1499999999999995, - "very": 1, - "discussion": 2.25, - "do": 1.875, - "not": 1.875, - "merge": 1.875, - "doc": 2.25, - "docs": 2.25, - "documentation": 2.25, - "book": 1, - "duplicate": 2.25, - "electron": 2.25, - "enhancement": 2.25, - "enterprise": 2.25, - "enterprise-": 2, - "-backport": 2, - "external": 2.25, - "externs": 2.25, - "babel": 4, - "e": 3.515625, - "e-cypress": 1.875, - "e-nightwatch": 1.875, - "plugin": 12.359619140625, - "api": 0.00015330412750872102, - "ui": 2, - "unit-jest": 2, - "unit-mocha": 2, - "feature": 4.05, - "request": 1, - "feedback": 2, - "requested": 2, - "files": 1, - "first-timers-only": 2.25, - "flags": 1, - "flashsocket": 2.25, - "fontawesome": 2, - "com": 2, - "food": 1, - "freemasonry": 2, - "icons": 2, - "future": 1.875, - "architecture": 1.875, - "enhancements": 1.875, - "crypto": 1, - "genders": 1, - "gh": 1.875, - "review": 1.875, - "accepted": 1.875, - "go": 5.831999999999998, - "client": 5.831999999999998, - "release": 5.831999999999998, - "good": 1.875, - "first": 1.875, - "issue": 1.875, - "+": 1, - "great": 2, - "insight": 2, - "greenkeeper": 2.25, - "hacked": 2.25, - "handshakes": 2.25, - "has": 4, - "bounty": 2, - "help": 3.515625, - "wanted": 3.515625, - "sos": 1, - "hi-pri": 2.25, - "high-priority": 2.25, - "hodor": 2.25, - "hot": 1, - "https": 2.25, - "icebox": 2.25, - "ie": 2.25, - "import": 1.875, - "in": 3.3749999999999996, - "progress": 1.875, - "started": 1, - "infrastructure": 6.328124999999999, - "hammer": 1.7999999999999998, - "and": 1.7999999999999998, - "wrench": 1.7999999999999998, - "installer": 2.25, - "cleanup": 8, - "internal-issue-created": 2.25, - "invalid": 2.25, - "ios": 2.25, - "jquery": 2, - "differences": 2, - "jsonp-polling": 2.25, - "kbfs": 2.25, - "legal": 2.25, - "library": 2.25, - "lint": 2.25, - "linux": 2.25, - "lks": 2.25, - "m": 2, - "s": 2, - "macos": 2.25, - "maintenance": 2.25, - "major": 2.25, - "mass": 2, - "purge": 2, - "minor": 2.25, - "mobile": 1.875, - "device": 1.875, - "support": 3.515625, - "proxy": 1, - "must-triage": 2.25, - "namespaces": 2.25, - "need-info": 2.25, - "needs": 3.1499999999999995, - "example": 1.7999999999999998, - "app": 1.7999999999999998, - "failing": 1, - "browser": 2, - "testing": 1, - "changelog": 1, - "info": 1.75, - "more": 1.75, - "man": 1.75, - "shrugging": 1.75, - "repro": 1, - "triage": 1, - "needs-more-info": 2.25, - "needs-research": 2.25, - "new": 12.359619140625, - "proposal": 6.591796875, - "best": 1.875, - "practice": 1.875, - "node": 2, - "next": 2, - "bug": 1.875, - "on": 2, - "hold": 2, - "open": 2.25, - "operations": 2.25, - "opinions": 2, - "needed": 2, - "other": 1.7999999999999998, - "language": 1.7999999999999998, - "integration": 1.7999999999999998, - "p": 2.25, - "packaging": 2.25, - "parser": 2.25, - "parser-specific": 2.25, - "pending": 1, - "performance": 2.25, - "planned": 1, - "for": 1, - "pr-existing": 2.25, - "fix": 1.875, - "⬆️": 1, - "deprecation": 2, - "memo": 1, - "merged": 1.75, - "rocket": 1, - "polish": 1.7999999999999998, - "nail": 1.7999999999999998, - "care": 1.7999999999999998, - "ready": 1.75, - "to": 3.1499999999999995, - "be": 1.75, - "reviewed-approved": 2, - "reviewed-changes-requested": 2, - "spec": 3.3749999999999996, - "compliance": 1.7999999999999998, - "eyeglasses": 1.7999999999999998, - "underlying": 1, - "unreviewed": 2, - "wip": 2, - "priority": 2, - "high": 2, - "low": 1, - "production": 2.25, - "project": 2, - "management": 2, - "question": 2.25, - "regression": 2.25, - "alpha": 1, - "released": 2.25, - "reminder": 2.25, - "resolution": 1.875, - "information": 1, - "redirect": 1.875, - "revisitinfuture": 2.25, - "rfc": 2.25, - "security": 2.25, - "shell": 2.25, - "socket": 1, - "io": 1, - "spam": 2.25, - "spammy": 2.25, - "async": 1.875, - "functions": 1.875, - "generators": 1, - "bigint": 1, - "class": 1, - "fields": 1, - "classes": 1, - "decorators": 1, - "(legacy)": 1, - "expressions": 1, - "stale": 2.25, - "status": 3.515625, - "heavy": 1.75, - "check": 1.75, - "mark": 1.75, - "available": 1.7999999999999998, - "free": 1, - "cla": 1.75, - "signed": 1.75, - "code": 1, - "approved": 3.515625, - "construction": 1, - "worker": 1, - "detective": 1, - "left": 1, - "out": 1, - "luggage": 1, - "stop": 1, - "sign": 1, - "deploy": 1, - "passport": 1, - "control": 1, - "waiting": 1, - "wontfix": 1, - "work": 1, - "suggestion": 1, - "syntax": 1, - "technical": 2, - "debt": 2, - "technical-debt": 1, - "tests": 1, - "tips": 1, - "todo": 1.875, - "spiral": 1.875, - "notepad": 1.875, - "translation": 1, - "travis-yml": 1, - "triage-done": 1, - "trivial": 1, - "type": 1.7999999999999998, - "archive": 1, - "community": 2.25, - "discuss": 1.7999999999999998, - "speech": 1.7999999999999998, - "balloon": 1.7999999999999998, - "update": 1, - "repeat": 1, - "bulb": 1, - "getting": 1, - "x": 2.25, - "non-library": 1, - "grey": 1, - "sendgrid": 1, - "vulnerability": 1, - "warning": 1, - "types": 1, - "unable": 1, - "reproduce": 2, - "unconfirmed": 1, - "upstream": 1, - "ux": 1, - "v": 1, - "websocket": 1, - "weekly-digest": 1, - "windows": 1, - "writer-needed": 1, - "wrong": 2, - "repo": 2, - "xhr-polling": 1, - "angular": 0.015625, - "-": 2, - "backlog": 2, - "working": 1, - "done": 1, - "backport": 1, - "arrow": 1.7999999999999998, - "heading": 1.7999999999999998, - "down": 1.7999999999999998, - "pull": 1.7999999999999998, - "font-face": 2.25, - "abandoned": 2.25, - "accessibility": 2.25, - "adapter": 2.25, - "advance": 1, - "workflow": 1, - "android": 2.25, - "animals": 1, - "answered": 2.25, - "area": 2, - "crash": 2, - "arrows": 1, - "automotive": 1, - "fa": 1.7999999999999998, - "pro": 1.7999999999999998, - "awaiting-review": 2.25, - "beginner-friendly": 2.25, - "beverage": 1, - "blocked": 2.25, - "blocker": 2.25, - "bootstrap": 2.25, - "brand": 2, - "icon": 2, - "safari": 2, - "report": 1, - "business": 1, - "c": 2, - "c++": 2, - "cannot": 2, - "cantfix": 2.25, - "cdn": 2.25, - "chat": 1, - "chore": 2.25, - "no": 1, - "yes": 1, - "closed": 1.7999999999999998, - "due": 1.7999999999999998, - "inactivity": 1.7999999999999998, - "cmty": 2, - "bug-report": 2, - "feature-request": 1, - "cancelled": 1, - "fixed": 1, - "implemented": 1, - "resolved": 1 - }, - "positive_weights_sum": {}, - "negative_weights_sum": {} - }, - "test": { - "positive_weights": { - "component": 0.012305921948413965, - "test": 18.125354017684014, - "renderer": 11.328346261052502, - "bias": 1.3430604975016468e-14, - "utils": 7.03125, - "feat": 1.9531250000000018, - "e": 13.18359375, - "e-cypress": 7.03125, - "e-nightwatch": 3.75, - "unit-jest": 32, - "unit-mocha": 32, - "tests": 22.78125, - "concurrent": 0.75, - "mode": 0.75, - "core": 0.75, - "utilities": 0.75, - "developer": 0.75, - "tools": 0.75, - "dom": 0.6666666666666667, - "eslint": 0.75, - "rules": 0.75, - "hooks": 0.6666666666666667, - "optimizing": 0.75, - "compiler": 0.75, - "reactis": 2, - "reconciler": 2, - "scheduler": 2, - "server": 0.75, - "rendering": 0.75, - "shallow": 0.03955078125, - "suspense": 2, - "configuration": 0.5, - "confirmed": 0.5, - "conflicts": 0.5, - "contribution": 0.6666666666666667, - "welcome": 0.6666666666666667, - "critical": 0.5, - "csharp": 2, - "css": 2, - "css-select": 2, - "currency": 0.6666666666666667, - "(category)": 0.6666666666666667, - "defect": 2, - "dependencies": 2, - "dependency": 0.6666666666666667, - "related": 0.6666666666666667, - "design": 2, - "difficulty": 0.8333333333333334, - "challenging": 2, - "easy": 2, - "hard": 2, - "medium": 2, - "starter": 2, - "unknown": 0.8333333333333334, - "or": 0.8333333333333334, - "n": 0.8333333333333334, - "a": 0.053333333333333344, - "very": 2, - "discussion": 2, - "do": 0.75, - "not": 0.75, - "merge": 0.75, - "doc": 2, - "docs": 2, - "documentation": 0.6666666666666667, - "book": 0.6666666666666667, - "duplicate": 2, - "electron": 2, - "enhancement": 2, - "enterprise": 2, - "enterprise-": 2, - "-backport": 2, - "es": 2, - "external": 2, - "externs": 2, - "cli": 0.22222222222222227, - "babel": 0.6666666666666667, - "cli-service": 0.75, - "build": 0.75, - "serve": 2, - "plugin": 0.75, - "api": 0.75, - "pwa": 0.6666666666666667, - "typescript": 0.6666666666666667, - "ui": 2, - "feature": 0.75, - "request": 0.75, - "feedback": 2, - "requested": 2, - "files": 2, - "first-timers-only": 2, - "flags": 2, - "flashsocket": 2, - "fontawesome": 2, - "com": 2, - "food": 2, - "freemasonry": 2, - "icons": 2, - "frontend": 2, - "future": 0.75, - "architecture": 0.75, - "enhancements": 0.75, - "crypto": 2, - "genders": 2, - "general": 2, - "js": 2, - "gh": 0.75, - "review": 0.75, - "accepted": 0.75, - "go": 0.8, - "client": 0.8, - "internal": 0.8, - "release": 0.8, - "good": 0.8, - "first": 0.8, - "issue": 0.8, - "+": 0.8, - "great": 2, - "insight": 2, - "greenkeeper": 2, - "hack": 2, - "hacked": 2, - "hacktoberfest": 2, - "handshakes": 2, - "has": 2, - "bounty": 2, - "pr": 0.8333333333333334, - "help": 2, - "wanted": 2, - "sos": 2, - "hi-pri": 2, - "high-priority": 2, - "hodor": 2, - "hot": 2, - "html": 2, - "htmlfile": 2, - "https": 2, - "icebox": 2, - "ie": 2, - "import": 2, - "in": 0.8333333333333334, - "progress": 0.8333333333333334, - "started": 2, - "infrastructure": 0.8, - "hammer": 0.8, - "and": 0.8, - "wrench": 0.8, - "installer": 2, - "cleanup": 2, - "internal-issue-created": 2, - "invalid": 2, - "ios": 2, - "jquery": 2, - "differences": 2, - "jsonp-polling": 2, - "kbfs": 2, - "lang-crystal": 2, - "lang-dart": 2, - "lang-elixir": 2, - "lang-go": 2, - "lang-julia": 2, - "lang-objc": 2, - "lang-r": 2, - "lang-scala": 2, - "legal": 2, - "library": 2, - "lint": 2, - "linux": 2, - "lks": 2, - "m": 2, - "s": 2, - "macos": 2, - "maintenance": 2, - "major": 2, - "mass": 2, - "purge": 2, - "minor": 2, - "mobile": 2, - "device": 2, - "support": 2, - "proxy": 2, - "modules": 2, - "must-triage": 2, - "namespaces": 2, - "need-info": 2, - "needs": 0.12800000000000003, - "example": 2, - "app": 2, - "failing": 0.12800000000000003, - "browser": 2, - "testing": 2, - "changelog": 2, - "info": 2, - "more": 2, - "man": 2, - "shrugging": 2, - "repro": 2, - "triage": 2, - "needs-more-info": 2, - "needs-research": 2, - "new": 2, - "proposal": 2, - "best": 2, - "practice": 2, - "node": 2, - "next": 2, - "bug": 2, - "on": 2, - "hold": 2, - "open": 2, - "operations": 2, - "opinions": 2, - "needed": 0.024691358024691367, - "optimisation": 2, - "other": 2, - "language": 2, - "integration": 2, - "p": 2, - "packaging": 2, - "parser": 2, - "parser-specific": 2, - "pending": 2, - "performance": 2, - "planned": 2, - "for": 2, - "pr-existing": 2, - "breaking": 2, - "change": 2, - "boom": 0.6666666666666667, - "fix": 2, - "⬆️": 2, - "deprecation": 2, - "memo": 2, - "house": 2, - "merged": 0.8333333333333334, - "rocket": 0.75, - "polish": 2, - "nail": 2, - "care": 2, - "ready": 0.8333333333333334, - "to": 0.8333333333333334, - "be": 0.8333333333333334, - "reviewed-approved": 2, - "reviewed-changes-requested": 2, - "spec": 2, - "compliance": 2, - "eyeglasses": 2, - "underlying": 2, - "unreviewed": 2, - "wip": 2, - "priority": 2, - "high": 2, - "low": 2, - "production": 2, - "project": 2, - "management": 2, - "question": 2, - "react": 2, - "flare": 2, - "native": 2, - "refactor": 2, - "regression": 0.6666666666666667, - "alpha": 2, - "released": 2, - "reminder": 2, - "resolution": 2, - "information": 2, - "redirect": 2, - "revisitinfuture": 2, - "rfc": 2, - "ruby": 2, - "security": 2, - "shell": 2, - "socket": 2, - "io": 2, - "spam": 2, - "spammy": 2, - "async": 2, - "functions": 2, - "generators": 2, - "bigint": 2, - "class": 2, - "fields": 2, - "classes": 2, - "decorators": 2, - "(legacy)": 2, - "expressions": 2, - "stale": 2, - "status": 0.8333333333333334, - "heavy": 0.8333333333333334, - "check": 0.8333333333333334, - "mark": 0.8333333333333334, - "available": 2, - "free": 2, - "cla": 0.8333333333333334, - "signed": 0.8333333333333334, - "code": 2, - "approved": 2, - "construction": 0.8333333333333334, - "worker": 0.8333333333333334, - "detective": 2, - "left": 2, - "out": 2, - "luggage": 2, - "stop": 2, - "sign": 2, - "deploy": 2, - "passport": 2, - "control": 2, - "waiting": 2, - "wontfix": 2, - "work": 2, - "suggestion": 2, - "syntax": 2, - "technical": 2, - "debt": 2, - "technical-debt": 2, - "tips": 2, - "todo": 2, - "spiral": 2, - "notepad": 2, - "translation": 2, - "travis-yml": 2, - "triage-done": 2, - "trivial": 2, - "type": 0.8, - "archive": 2, - "community": 2, - "discuss": 0.8, - "speech": 0.8, - "balloon": 0.8, - "update": 2, - "repeat": 2, - "bulb": 2, - "getting": 2, - "x": 0.6666666666666667, - "non-library": 2, - "grey": 2, - "sendgrid": 2, - "vulnerability": 2, - "warning": 2, - "types": 2, - "unable": 2, - "reproduce": 2, - "unconfirmed": 2, - "upstream": 2, - "ux": 2, - "v": 2, - "website": 2, - "websocket": 2, - "weekly-digest": 2, - "windows": 2, - "writer-needed": 2, - "wrong": 2, - "repo": 2, - "xhr-polling": 2, - "-": 0.6666666666666667, - "backlog": 0.6666666666666667, - "working": 2, - "done": 2, - "backport": 0.6666666666666667, - "arrow": 0.8, - "heading": 0.8, - "down": 0.8, - "pull": 0.8, - "font-face": 2, - "abandoned": 2, - "accessibility": 2, - "adapter": 2, - "advance": 2, - "workflow": 2, - "android": 2, - "angular": 2, - "animals": 2, - "answered": 2, - "area": 2, - "crash": 2, - "arrows": 2, - "automotive": 2, - "fa": 2, - "pro": 2, - "awaiting-review": 2, - "beginner-friendly": 2, - "beverage": 2, - "blocked": 2, - "blocker": 2, - "bootstrap": 2, - "brand": 2, - "icon": 2, - "safari": 2, - "report": 2, - "business": 2, - "c": 2, - "c++": 2, - "cannot": 2, - "cantfix": 2, - "cdn": 2, - "chat": 2, - "chore": 2, - "no": 2, - "yes": 2, - "closed": 2, - "due": 2, - "inactivity": 2, - "cmty": 2, - "bug-report": 2, - "feature-request": 2, - "cancelled": 2, - "fixed": 2, - "implemented": 2, - "resolved": 2 - }, - "negative_weights": { - "component": 0.044301319014290255, - "test": 0.00003006778727285564, - "renderer": 0.0018125354017684003, - "bias": 6.557379904904883, - "utils": 0.140625, - "feat": 0.0009042245370370377, - "e": 0.052734375, - "e-cypress": 0.140625, - "e-nightwatch": 0.375, - "unit-jest": 0.012345679012345684, - "unit-mocha": 0.012345679012345684, - "tests": 0.015625, - "concurrent": 1.875, - "mode": 1.875, - "core": 1.875, - "utilities": 1.875, - "developer": 1.875, - "tools": 1.875, - "dom": 2, - "eslint": 1.875, - "rules": 1.875, - "hooks": 2, - "optimizing": 1.875, - "compiler": 1.875, - "reactis": 1, - "reconciler": 1, - "scheduler": 1, - "server": 1.875, - "rendering": 1.875, - "shallow": 12.359619140625, - "suspense": 1, - "configuration": 2.25, - "confirmed": 2.25, - "conflicts": 2.25, - "contribution": 2, - "welcome": 2, - "critical": 2.25, - "csharp": 1, - "css": 1, - "css-select": 1, - "currency": 2, - "(category)": 2, - "defect": 1, - "dependencies": 1, - "dependency": 2, - "related": 2, - "design": 1, - "difficulty": 1.75, - "challenging": 1, - "easy": 1, - "hard": 1, - "medium": 1, - "starter": 1, - "unknown": 1.75, - "or": 1.75, - "n": 1.75, - "a": 10.205999999999996, - "very": 1, - "discussion": 1, - "do": 1.875, - "not": 1.875, - "merge": 1.875, - "doc": 1, - "docs": 1, - "documentation": 2, - "book": 2, - "duplicate": 1, - "electron": 1, - "enhancement": 1, - "enterprise": 1, - "enterprise-": 1, - "-backport": 1, - "es": 1, - "external": 1, - "externs": 1, - "cli": 4, - "babel": 2, - "cli-service": 1.875, - "build": 1.875, - "serve": 1, - "plugin": 1.875, - "api": 1.875, - "pwa": 2, - "typescript": 2, - "ui": 1, - "feature": 1.875, - "request": 1.875, - "feedback": 1, - "requested": 1, - "files": 1, - "first-timers-only": 1, - "flags": 1, - "flashsocket": 1, - "fontawesome": 1, - "com": 1, - "food": 1, - "freemasonry": 1, - "icons": 1, - "frontend": 1, - "future": 1.875, - "architecture": 1.875, - "enhancements": 1.875, - "crypto": 1, - "genders": 1, - "general": 1, - "js": 1, - "gh": 1.875, - "review": 1.875, - "accepted": 1.875, - "go": 1.7999999999999998, - "client": 1.7999999999999998, - "internal": 1.7999999999999998, - "release": 1.7999999999999998, - "good": 1.7999999999999998, - "first": 1.7999999999999998, - "issue": 1.7999999999999998, - "+": 1.7999999999999998, - "great": 1, - "insight": 1, - "greenkeeper": 1, - "hack": 1, - "hacked": 1, - "hacktoberfest": 1, - "handshakes": 1, - "has": 1, - "bounty": 1, - "pr": 1.75, - "help": 1, - "wanted": 1, - "sos": 1, - "hi-pri": 1, - "high-priority": 1, - "hodor": 1, - "hot": 1, - "html": 1, - "htmlfile": 1, - "https": 1, - "icebox": 1, - "ie": 1, - "import": 1, - "in": 1.75, - "progress": 1.75, - "started": 1, - "infrastructure": 1.7999999999999998, - "hammer": 1.7999999999999998, - "and": 1.7999999999999998, - "wrench": 1.7999999999999998, - "installer": 1, - "cleanup": 1, - "internal-issue-created": 1, - "invalid": 1, - "ios": 1, - "jquery": 1, - "differences": 1, - "jsonp-polling": 1, - "kbfs": 1, - "lang-crystal": 1, - "lang-dart": 1, - "lang-elixir": 1, - "lang-go": 1, - "lang-julia": 1, - "lang-objc": 1, - "lang-r": 1, - "lang-scala": 1, - "legal": 1, - "library": 1, - "lint": 1, - "linux": 1, - "lks": 1, - "m": 1, - "s": 1, - "macos": 1, - "maintenance": 1, - "major": 1, - "mass": 1, - "purge": 1, - "minor": 1, - "mobile": 1, - "device": 1, - "support": 1, - "proxy": 1, - "modules": 1, - "must-triage": 1, - "namespaces": 1, - "need-info": 1, - "needs": 5.831999999999998, - "example": 1, - "app": 1, - "failing": 5.831999999999998, - "browser": 1, - "testing": 1, - "changelog": 1, - "info": 1, - "more": 1, - "man": 1, - "shrugging": 1, - "repro": 1, - "triage": 1, - "needs-more-info": 1, - "needs-research": 1, - "new": 1, - "proposal": 1, - "best": 1, - "practice": 1, - "node": 1, - "next": 1, - "bug": 1, - "on": 1, - "hold": 1, - "open": 1, - "operations": 1, - "opinions": 1, - "needed": 16, - "optimisation": 1, - "other": 1, - "language": 1, - "integration": 1, - "p": 1, - "packaging": 1, - "parser": 1, - "parser-specific": 1, - "pending": 1, - "performance": 1, - "planned": 1, - "for": 1, - "pr-existing": 1, - "breaking": 1, - "change": 1, - "boom": 2, - "fix": 1, - "⬆️": 1, - "deprecation": 1, - "memo": 1, - "house": 1, - "merged": 1.75, - "rocket": 1.875, - "polish": 1, - "nail": 1, - "care": 1, - "ready": 1.75, - "to": 1.75, - "be": 1.75, - "reviewed-approved": 1, - "reviewed-changes-requested": 1, - "spec": 1, - "compliance": 1, - "eyeglasses": 1, - "underlying": 1, - "unreviewed": 1, - "wip": 1, - "priority": 1, - "high": 1, - "low": 1, - "production": 1, - "project": 1, - "management": 1, - "question": 1, - "react": 1, - "flare": 1, - "native": 1, - "refactor": 1, - "regression": 2, - "alpha": 1, - "released": 1, - "reminder": 1, - "resolution": 1, - "information": 1, - "redirect": 1, - "revisitinfuture": 1, - "rfc": 1, - "ruby": 1, - "security": 1, - "shell": 1, - "socket": 1, - "io": 1, - "spam": 1, - "spammy": 1, - "async": 1, - "functions": 1, - "generators": 1, - "bigint": 1, - "class": 1, - "fields": 1, - "classes": 1, - "decorators": 1, - "(legacy)": 1, - "expressions": 1, - "stale": 1, - "status": 1.75, - "heavy": 1.75, - "check": 1.75, - "mark": 1.75, - "available": 1, - "free": 1, - "cla": 1.75, - "signed": 1.75, - "code": 1, - "approved": 1, - "construction": 1.75, - "worker": 1.75, - "detective": 1, - "left": 1, - "out": 1, - "luggage": 1, - "stop": 1, - "sign": 1, - "deploy": 1, - "passport": 1, - "control": 1, - "waiting": 1, - "wontfix": 1, - "work": 1, - "suggestion": 1, - "syntax": 1, - "technical": 1, - "debt": 1, - "technical-debt": 1, - "tips": 1, - "todo": 1, - "spiral": 1, - "notepad": 1, - "translation": 1, - "travis-yml": 1, - "triage-done": 1, - "trivial": 1, - "type": 1.7999999999999998, - "archive": 1, - "community": 1, - "discuss": 1.7999999999999998, - "speech": 1.7999999999999998, - "balloon": 1.7999999999999998, - "update": 1, - "repeat": 1, - "bulb": 1, - "getting": 1, - "x": 2, - "non-library": 1, - "grey": 1, - "sendgrid": 1, - "vulnerability": 1, - "warning": 1, - "types": 1, - "unable": 1, - "reproduce": 1, - "unconfirmed": 1, - "upstream": 1, - "ux": 1, - "v": 1, - "website": 1, - "websocket": 1, - "weekly-digest": 1, - "windows": 1, - "writer-needed": 1, - "wrong": 1, - "repo": 1, - "xhr-polling": 1, - "-": 2, - "backlog": 2, - "working": 1, - "done": 1, - "backport": 2, - "arrow": 1.7999999999999998, - "heading": 1.7999999999999998, - "down": 1.7999999999999998, - "pull": 1.7999999999999998, - "font-face": 1, - "abandoned": 1, - "accessibility": 1, - "adapter": 1, - "advance": 1, - "workflow": 1, - "android": 1, - "angular": 1, - "animals": 1, - "answered": 1, - "area": 1, - "crash": 1, - "arrows": 1, - "automotive": 1, - "fa": 1, - "pro": 1, - "awaiting-review": 1, - "beginner-friendly": 1, - "beverage": 1, - "blocked": 1, - "blocker": 1, - "bootstrap": 1, - "brand": 1, - "icon": 1, - "safari": 1, - "report": 1, - "business": 1, - "c": 1, - "c++": 1, - "cannot": 1, - "cantfix": 1, - "cdn": 1, - "chat": 1, - "chore": 1, - "no": 1, - "yes": 1, - "closed": 1, - "due": 1, - "inactivity": 1, - "cmty": 1, - "bug-report": 1, - "feature-request": 1, - "cancelled": 1, - "fixed": 1, - "implemented": 1, - "resolved": 1 - }, - "positive_weights_sum": {}, - "negative_weights_sum": {} - }, - "financial": { - "positive_weights": { - "currency": 16, - "(category)": 1.7777777777777781, - "bias": 0.0036168981481481486, - "component": 0.28125, - "concurrent": 0.75, - "mode": 0.75, - "core": 0.75, - "utilities": 0.75, - "developer": 2, - "tools": 2, - "dom": 2, - "eslint": 2, - "rules": 2, - "hooks": 2, - "optimizing": 2, - "compiler": 2, - "reactis": 2, - "reconciler": 2, - "scheduler": 2, - "server": 2, - "rendering": 2, - "shallow": 2, - "renderer": 2, - "suspense": 2, - "test": 2, - "utils": 2, - "configuration": 0.5, - "confirmed": 2, - "conflicts": 2, - "contribution": 0.6666666666666667, - "welcome": 0.6666666666666667, - "critical": 2, - "csharp": 2, - "css": 2, - "css-select": 2, - "defect": 2, - "dependencies": 2, - "dependency": 2, - "related": 2, - "design": 0.22222222222222227, - "difficulty": 0.8333333333333333, - "challenging": 2, - "easy": 2, - "hard": 2, - "medium": 2, - "starter": 2, - "unknown": 0.8333333333333333, - "or": 0.8333333333333333, - "n": 0.8333333333333333, - "a": 0.8333333333333333, - "very": 2, - "discussion": 2, - "do": 2, - "not": 2, - "merge": 2, - "doc": 2, - "docs": 2, - "documentation": 2, - "book": 2, - "duplicate": 2, - "electron": 2, - "enhancement": 2, - "enterprise": 2, - "enterprise-": 2, - "-backport": 2, - "es": 2, - "external": 2, - "externs": 2, - "feat": 2, - "cli": 2, - "babel": 2, - "cli-service": 2, - "build": 2, - "serve": 2, - "e": 2, - "e-cypress": 2, - "e-nightwatch": 2, - "plugin": 2, - "api": 2, - "pwa": 2, - "typescript": 2, - "ui": 2, - "unit-jest": 2, - "unit-mocha": 2, - "feature": 2, - "request": 2, - "feedback": 2, - "requested": 2, - "files": 2, - "first-timers-only": 2, - "flags": 2, - "flashsocket": 2, - "fontawesome": 2, - "com": 2, - "food": 2, - "freemasonry": 2, - "icons": 2, - "frontend": 2, - "future": 2, - "architecture": 2, - "enhancements": 2, - "crypto": 2, - "genders": 2, - "general": 2, - "js": 2, - "gh": 2, - "review": 2, - "accepted": 2, - "go": 2, - "client": 2, - "internal": 2, - "release": 2, - "good": 2, - "first": 2, - "issue": 2, - "+": 2, - "great": 2, - "insight": 2, - "greenkeeper": 2, - "hack": 2, - "hacked": 2, - "hacktoberfest": 2, - "handshakes": 2, - "has": 2, - "bounty": 2, - "pr": 2, - "help": 2, - "wanted": 2, - "sos": 2, - "hi-pri": 2, - "high-priority": 2, - "hodor": 2, - "hot": 2, - "html": 2, - "htmlfile": 2, - "https": 2, - "icebox": 2, - "ie": 2, - "import": 2, - "in": 2, - "progress": 2, - "started": 2, - "infrastructure": 2, - "hammer": 2, - "and": 2, - "wrench": 2, - "installer": 2, - "cleanup": 2, - "internal-issue-created": 2, - "invalid": 2, - "ios": 2, - "jquery": 2, - "differences": 2, - "jsonp-polling": 2, - "kbfs": 2, - "lang-crystal": 2, - "lang-dart": 2, - "lang-elixir": 2, - "lang-go": 2, - "lang-julia": 2, - "lang-objc": 2, - "lang-r": 2, - "lang-scala": 2, - "legal": 2, - "library": 2, - "lint": 2, - "linux": 2, - "lks": 2, - "m": 2, - "s": 2, - "macos": 2, - "maintenance": 2, - "major": 2, - "mass": 2, - "purge": 2, - "minor": 2, - "mobile": 2, - "device": 2, - "support": 2, - "proxy": 2, - "modules": 2, - "must-triage": 2, - "namespaces": 2, - "need-info": 2, - "needs": 0.8333333333333333, - "example": 2, - "app": 2, - "failing": 2, - "browser": 2, - "testing": 2, - "changelog": 2, - "info": 0.8333333333333333, - "more": 0.8333333333333333, - "man": 0.8333333333333333, - "shrugging": 0.8333333333333333, - "repro": 2, - "triage": 2, - "needs-more-info": 2, - "needs-research": 2, - "new": 2, - "proposal": 2, - "best": 2, - "practice": 2, - "node": 2, - "next": 2, - "bug": 2, - "on": 2, - "hold": 2, - "open": 2, - "operations": 2, - "opinions": 2, - "needed": 2, - "optimisation": 2, - "other": 2, - "language": 2, - "integration": 2, - "p": 2, - "packaging": 2, - "parser": 2, - "parser-specific": 2, - "pending": 2, - "performance": 2, - "planned": 2, - "for": 2, - "pr-existing": 2, - "breaking": 2, - "change": 2, - "boom": 2, - "fix": 2, - "⬆️": 2, - "deprecation": 2, - "memo": 2, - "house": 2, - "merged": 2, - "rocket": 2, - "polish": 2, - "nail": 2, - "care": 2, - "ready": 2, - "to": 2, - "be": 2, - "reviewed-approved": 2, - "reviewed-changes-requested": 2, - "spec": 2, - "compliance": 2, - "eyeglasses": 2, - "underlying": 2, - "unreviewed": 2, - "wip": 2, - "priority": 2, - "high": 2, - "low": 2, - "production": 2, - "project": 2, - "management": 2, - "question": 2, - "react": 2, - "flare": 2, - "native": 2, - "refactor": 2, - "regression": 2, - "alpha": 2, - "released": 2, - "reminder": 2, - "resolution": 2, - "information": 2, - "redirect": 2, - "revisitinfuture": 2, - "rfc": 2, - "ruby": 2, - "security": 2, - "shell": 2, - "socket": 2, - "io": 2, - "spam": 2, - "spammy": 2, - "async": 2, - "functions": 2, - "generators": 2, - "bigint": 2, - "class": 2, - "fields": 2, - "classes": 2, - "decorators": 2, - "(legacy)": 2, - "expressions": 2, - "stale": 2, - "status": 2, - "heavy": 2, - "check": 2, - "mark": 2, - "available": 2, - "free": 2, - "cla": 2, - "signed": 2, - "code": 2, - "approved": 2, - "construction": 2, - "worker": 2, - "detective": 2, - "left": 2, - "out": 2, - "luggage": 2, - "stop": 2, - "sign": 2, - "deploy": 2, - "passport": 2, - "control": 2, - "waiting": 2, - "wontfix": 2, - "work": 2, - "suggestion": 2, - "syntax": 2, - "technical": 2, - "debt": 2, - "technical-debt": 2, - "tests": 2, - "tips": 2, - "todo": 2, - "spiral": 2, - "notepad": 2, - "translation": 2, - "travis-yml": 2, - "triage-done": 2, - "trivial": 2, - "type": 2, - "archive": 2, - "community": 2, - "discuss": 2, - "speech": 2, - "balloon": 2, - "update": 2, - "repeat": 2, - "bulb": 2, - "getting": 2, - "x": 2, - "non-library": 2, - "grey": 2, - "sendgrid": 2, - "vulnerability": 2, - "warning": 2, - "types": 2, - "unable": 2, - "reproduce": 2, - "unconfirmed": 2, - "upstream": 2, - "ux": 2, - "v": 2, - "website": 2, - "websocket": 2, - "weekly-digest": 2, - "windows": 2, - "writer-needed": 2, - "wrong": 2, - "repo": 2, - "xhr-polling": 2, - "-": 2, - "backlog": 2, - "working": 2, - "done": 2, - "backport": 2, - "arrow": 2, - "heading": 2, - "down": 2, - "pull": 2, - "font-face": 2, - "abandoned": 2, - "accessibility": 2, - "adapter": 2, - "advance": 2, - "workflow": 2, - "android": 2, - "angular": 2, - "animals": 2, - "answered": 2, - "area": 2, - "crash": 2, - "arrows": 2, - "automotive": 2, - "fa": 2, - "pro": 2, - "awaiting-review": 2, - "beginner-friendly": 2, - "beverage": 2, - "blocked": 2, - "blocker": 2, - "bootstrap": 2, - "brand": 2, - "icon": 2, - "safari": 2, - "report": 2, - "business": 2, - "c": 2, - "c++": 2, - "cannot": 2, - "cantfix": 2, - "cdn": 2, - "chat": 2, - "chore": 2, - "no": 2, - "yes": 2, - "closed": 2, - "due": 2, - "inactivity": 2, - "cmty": 2, - "bug-report": 2, - "feature-request": 2, - "cancelled": 2, - "fixed": 2, - "implemented": 2, - "resolved": 2 - }, - "negative_weights": { - "currency": 0.03703703703703705, - "(category)": 0.1481481481481482, - "bias": 7.1777343750000036, - "component": 3.515625, - "concurrent": 1.875, - "mode": 1.875, - "core": 1.875, - "utilities": 1.875, - "developer": 1, - "tools": 1, - "dom": 1, - "eslint": 1, - "rules": 1, - "hooks": 1, - "optimizing": 1, - "compiler": 1, - "reactis": 1, - "reconciler": 1, - "scheduler": 1, - "server": 1, - "rendering": 1, - "shallow": 1, - "renderer": 1, - "suspense": 1, - "test": 1, - "utils": 1, - "configuration": 2.25, - "confirmed": 1, - "conflicts": 1, - "contribution": 2, - "welcome": 2, - "critical": 1, - "csharp": 1, - "css": 1, - "css-select": 1, - "defect": 1, - "dependencies": 1, - "dependency": 1, - "related": 1, - "design": 4, - "difficulty": 1.75, - "challenging": 1, - "easy": 1, - "hard": 1, - "medium": 1, - "starter": 1, - "unknown": 1.75, - "or": 1.75, - "n": 1.75, - "a": 1.75, - "very": 1, - "discussion": 1, - "do": 1, - "not": 1, - "merge": 1, - "doc": 1, - "docs": 1, - "documentation": 1, - "book": 1, - "duplicate": 1, - "electron": 1, - "enhancement": 1, - "enterprise": 1, - "enterprise-": 1, - "-backport": 1, - "es": 1, - "external": 1, - "externs": 1, - "feat": 1, - "cli": 1, - "babel": 1, - "cli-service": 1, - "build": 1, - "serve": 1, - "e": 1, - "e-cypress": 1, - "e-nightwatch": 1, - "plugin": 1, - "api": 1, - "pwa": 1, - "typescript": 1, - "ui": 1, - "unit-jest": 1, - "unit-mocha": 1, - "feature": 1, - "request": 1, - "feedback": 1, - "requested": 1, - "files": 1, - "first-timers-only": 1, - "flags": 1, - "flashsocket": 1, - "fontawesome": 1, - "com": 1, - "food": 1, - "freemasonry": 1, - "icons": 1, - "frontend": 1, - "future": 1, - "architecture": 1, - "enhancements": 1, - "crypto": 1, - "genders": 1, - "general": 1, - "js": 1, - "gh": 1, - "review": 1, - "accepted": 1, - "go": 1, - "client": 1, - "internal": 1, - "release": 1, - "good": 1, - "first": 1, - "issue": 1, - "+": 1, - "great": 1, - "insight": 1, - "greenkeeper": 1, - "hack": 1, - "hacked": 1, - "hacktoberfest": 1, - "handshakes": 1, - "has": 1, - "bounty": 1, - "pr": 1, - "help": 1, - "wanted": 1, - "sos": 1, - "hi-pri": 1, - "high-priority": 1, - "hodor": 1, - "hot": 1, - "html": 1, - "htmlfile": 1, - "https": 1, - "icebox": 1, - "ie": 1, - "import": 1, - "in": 1, - "progress": 1, - "started": 1, - "infrastructure": 1, - "hammer": 1, - "and": 1, - "wrench": 1, - "installer": 1, - "cleanup": 1, - "internal-issue-created": 1, - "invalid": 1, - "ios": 1, - "jquery": 1, - "differences": 1, - "jsonp-polling": 1, - "kbfs": 1, - "lang-crystal": 1, - "lang-dart": 1, - "lang-elixir": 1, - "lang-go": 1, - "lang-julia": 1, - "lang-objc": 1, - "lang-r": 1, - "lang-scala": 1, - "legal": 1, - "library": 1, - "lint": 1, - "linux": 1, - "lks": 1, - "m": 1, - "s": 1, - "macos": 1, - "maintenance": 1, - "major": 1, - "mass": 1, - "purge": 1, - "minor": 1, - "mobile": 1, - "device": 1, - "support": 1, - "proxy": 1, - "modules": 1, - "must-triage": 1, - "namespaces": 1, - "need-info": 1, - "needs": 1.75, - "example": 1, - "app": 1, - "failing": 1, - "browser": 1, - "testing": 1, - "changelog": 1, - "info": 1.75, - "more": 1.75, - "man": 1.75, - "shrugging": 1.75, - "repro": 1, - "triage": 1, - "needs-more-info": 1, - "needs-research": 1, - "new": 1, - "proposal": 1, - "best": 1, - "practice": 1, - "node": 1, - "next": 1, - "bug": 1, - "on": 1, - "hold": 1, - "open": 1, - "operations": 1, - "opinions": 1, - "needed": 1, - "optimisation": 1, - "other": 1, - "language": 1, - "integration": 1, - "p": 1, - "packaging": 1, - "parser": 1, - "parser-specific": 1, - "pending": 1, - "performance": 1, - "planned": 1, - "for": 1, - "pr-existing": 1, - "breaking": 1, - "change": 1, - "boom": 1, - "fix": 1, - "⬆️": 1, - "deprecation": 1, - "memo": 1, - "house": 1, - "merged": 1, - "rocket": 1, - "polish": 1, - "nail": 1, - "care": 1, - "ready": 1, - "to": 1, - "be": 1, - "reviewed-approved": 1, - "reviewed-changes-requested": 1, - "spec": 1, - "compliance": 1, - "eyeglasses": 1, - "underlying": 1, - "unreviewed": 1, - "wip": 1, - "priority": 1, - "high": 1, - "low": 1, - "production": 1, - "project": 1, - "management": 1, - "question": 1, - "react": 1, - "flare": 1, - "native": 1, - "refactor": 1, - "regression": 1, - "alpha": 1, - "released": 1, - "reminder": 1, - "resolution": 1, - "information": 1, - "redirect": 1, - "revisitinfuture": 1, - "rfc": 1, - "ruby": 1, - "security": 1, - "shell": 1, - "socket": 1, - "io": 1, - "spam": 1, - "spammy": 1, - "async": 1, - "functions": 1, - "generators": 1, - "bigint": 1, - "class": 1, - "fields": 1, - "classes": 1, - "decorators": 1, - "(legacy)": 1, - "expressions": 1, - "stale": 1, - "status": 1, - "heavy": 1, - "check": 1, - "mark": 1, - "available": 1, - "free": 1, - "cla": 1, - "signed": 1, - "code": 1, - "approved": 1, - "construction": 1, - "worker": 1, - "detective": 1, - "left": 1, - "out": 1, - "luggage": 1, - "stop": 1, - "sign": 1, - "deploy": 1, - "passport": 1, - "control": 1, - "waiting": 1, - "wontfix": 1, - "work": 1, - "suggestion": 1, - "syntax": 1, - "technical": 1, - "debt": 1, - "technical-debt": 1, - "tests": 1, - "tips": 1, - "todo": 1, - "spiral": 1, - "notepad": 1, - "translation": 1, - "travis-yml": 1, - "triage-done": 1, - "trivial": 1, - "type": 1, - "archive": 1, - "community": 1, - "discuss": 1, - "speech": 1, - "balloon": 1, - "update": 1, - "repeat": 1, - "bulb": 1, - "getting": 1, - "x": 1, - "non-library": 1, - "grey": 1, - "sendgrid": 1, - "vulnerability": 1, - "warning": 1, - "types": 1, - "unable": 1, - "reproduce": 1, - "unconfirmed": 1, - "upstream": 1, - "ux": 1, - "v": 1, - "website": 1, - "websocket": 1, - "weekly-digest": 1, - "windows": 1, - "writer-needed": 1, - "wrong": 1, - "repo": 1, - "xhr-polling": 1, - "-": 1, - "backlog": 1, - "working": 1, - "done": 1, - "backport": 1, - "arrow": 1, - "heading": 1, - "down": 1, - "pull": 1, - "font-face": 1, - "abandoned": 1, - "accessibility": 1, - "adapter": 1, - "advance": 1, - "workflow": 1, - "android": 1, - "angular": 1, - "animals": 1, - "answered": 1, - "area": 1, - "crash": 1, - "arrows": 1, - "automotive": 1, - "fa": 1, - "pro": 1, - "awaiting-review": 1, - "beginner-friendly": 1, - "beverage": 1, - "blocked": 1, - "blocker": 1, - "bootstrap": 1, - "brand": 1, - "icon": 1, - "safari": 1, - "report": 1, - "business": 1, - "c": 1, - "c++": 1, - "cannot": 1, - "cantfix": 1, - "cdn": 1, - "chat": 1, - "chore": 1, - "no": 1, - "yes": 1, - "closed": 1, - "due": 1, - "inactivity": 1, - "cmty": 1, - "bug-report": 1, - "feature-request": 1, - "cancelled": 1, - "fixed": 1, - "implemented": 1, - "resolved": 1 - }, - "positive_weights_sum": {}, - "negative_weights_sum": {} - }, - "bug": { - "positive_weights": { - "defect": 22.78125, - "bias": 1.899062029076233e-14, - "internal-issue-created": 22.78125, - "pr": 1.3732910156250002, - "bug": 20.856857299804688, - "fix": 24.71923828125, - "regression": 42.71484375, - "type": 1.333333333333334, - "boom": 1.5, - "upstream": 4, - "component": 0.28125, - "concurrent": 0.25, - "mode": 0.75, - "core": 0.75, - "utilities": 0.75, - "developer": 0.75, - "tools": 2, - "dom": 2, - "eslint": 2, - "rules": 2, - "hooks": 2, - "optimizing": 2, - "compiler": 2, - "reactis": 2, - "reconciler": 2, - "scheduler": 2, - "server": 2, - "rendering": 2, - "shallow": 2, - "renderer": 2, - "suspense": 2, - "test": 2, - "utils": 2, - "configuration": 0.5, - "confirmed": 0.5, - "conflicts": 0.5, - "contribution": 0.6666666666666667, - "welcome": 0.6666666666666667, - "critical": 0.5, - "csharp": 0.5, - "css": 0.5, - "css-select": 0.5, - "currency": 0.6666666666666667, - "(category)": 0.6666666666666667, - "dependencies": 0.5, - "dependency": 0.6666666666666667, - "related": 0.6666666666666667, - "design": 0.5, - "difficulty": 0.3125, - "challenging": 2, - "easy": 2, - "hard": 0.75, - "medium": 2, - "starter": 2, - "unknown": 0.8333333333333334, - "or": 0.8333333333333334, - "n": 0.8333333333333334, - "a": 0.0439453125, - "very": 0.75, - "discussion": 2, - "do": 0.75, - "not": 0.03955078125, - "merge": 0.75, - "doc": 2, - "docs": 2, - "documentation": 0.6666666666666667, - "book": 0.6666666666666667, - "duplicate": 2, - "electron": 2, - "enhancement": 0.6666666666666667, - "enterprise": 2, - "enterprise-": 0.6666666666666667, - "-backport": 0.6666666666666667, - "es": 2, - "external": 2, - "externs": 2, - "feat": 0.75, - "cli": 2, - "babel": 2, - "cli-service": 0.75, - "build": 0.75, - "serve": 2, - "e": 2, - "e-cypress": 2, - "e-nightwatch": 2, - "plugin": 2, - "api": 2, - "pwa": 2, - "typescript": 2, - "ui": 2, - "unit-jest": 2, - "unit-mocha": 2, - "feature": 0.8, - "request": 2, - "feedback": 2, - "requested": 2, - "files": 2, - "first-timers-only": 2, - "flags": 2, - "flashsocket": 2, - "fontawesome": 2, - "com": 2, - "food": 2, - "freemasonry": 2, - "icons": 2, - "frontend": 2, - "future": 0.75, - "architecture": 0.75, - "enhancements": 0.75, - "crypto": 2, - "genders": 2, - "general": 2, - "js": 2, - "gh": 0.75, - "review": 0.75, - "accepted": 0.75, - "go": 0.8, - "client": 0.8, - "internal": 0.8, - "release": 0.8, - "good": 0.8, - "first": 0.8, - "issue": 0.8, - "+": 0.8, - "great": 2, - "insight": 2, - "greenkeeper": 2, - "hack": 2, - "hacked": 2, - "hacktoberfest": 2, - "handshakes": 2, - "has": 0.6666666666666667, - "bounty": 2, - "help": 2, - "wanted": 2, - "sos": 2, - "hi-pri": 2, - "high-priority": 2, - "hodor": 2, - "hot": 2, - "html": 2, - "htmlfile": 2, - "https": 2, - "icebox": 2, - "ie": 2, - "import": 2, - "in": 0.33333333333333337, - "progress": 0.8333333333333334, - "started": 2, - "infrastructure": 0.8, - "hammer": 0.8, - "and": 0.8, - "wrench": 0.8, - "installer": 2, - "cleanup": 2, - "invalid": 2, - "ios": 2, - "jquery": 2, - "differences": 2, - "jsonp-polling": 2, - "kbfs": 2, - "lang-crystal": 2, - "lang-dart": 2, - "lang-elixir": 2, - "lang-go": 2, - "lang-julia": 2, - "lang-objc": 2, - "lang-r": 2, - "lang-scala": 2, - "legal": 2, - "library": 2, - "lint": 2, - "linux": 2, - "lks": 2, - "m": 2, - "s": 2, - "macos": 2, - "maintenance": 2, - "major": 2, - "mass": 2, - "purge": 2, - "minor": 2, - "mobile": 2, - "device": 2, - "support": 2, - "proxy": 2, - "modules": 2, - "must-triage": 2, - "namespaces": 2, - "need-info": 2, - "needs": 0.8333333333333334, - "example": 2, - "app": 2, - "failing": 2, - "browser": 2, - "testing": 2, - "changelog": 2, - "info": 0.8333333333333334, - "more": 0.8333333333333334, - "man": 0.8333333333333334, - "shrugging": 0.8333333333333334, - "repro": 2, - "triage": 2, - "needs-more-info": 2, - "needs-research": 2, - "new": 2, - "proposal": 2, - "best": 2, - "practice": 2, - "node": 2, - "next": 2, - "on": 2, - "hold": 2, - "open": 2, - "operations": 2, - "opinions": 2, - "needed": 2, - "optimisation": 2, - "other": 0.8, - "language": 0.8, - "integration": 0.8, - "p": 2, - "packaging": 2, - "parser": 2, - "parser-specific": 2, - "pending": 2, - "performance": 2, - "planned": 2, - "for": 2, - "pr-existing": 2, - "breaking": 0.8, - "change": 0.8, - "⬆️": 2, - "deprecation": 2, - "memo": 2, - "house": 2, - "merged": 0.8333333333333334, - "rocket": 0.6666666666666667, - "polish": 2, - "nail": 2, - "care": 2, - "ready": 0.8333333333333334, - "to": 0.8333333333333334, - "be": 0.8333333333333334, - "reviewed-approved": 2, - "reviewed-changes-requested": 2, - "spec": 2, - "compliance": 2, - "eyeglasses": 2, - "underlying": 2, - "unreviewed": 2, - "wip": 2, - "priority": 2, - "high": 2, - "low": 2, - "production": 2, - "project": 2, - "management": 2, - "question": 0.6666666666666667, - "react": 2, - "flare": 2, - "native": 2, - "refactor": 2, - "alpha": 2, - "released": 2, - "reminder": 2, - "resolution": 2, - "information": 2, - "redirect": 2, - "revisitinfuture": 2, - "rfc": 2, - "ruby": 2, - "security": 2, - "shell": 2, - "socket": 2, - "io": 2, - "spam": 2, - "spammy": 2, - "async": 2, - "functions": 2, - "generators": 2, - "bigint": 2, - "class": 2, - "fields": 2, - "classes": 2, - "decorators": 2, - "(legacy)": 2, - "expressions": 2, - "stale": 2, - "status": 0.8333333333333334, - "heavy": 0.8333333333333333, - "check": 0.8333333333333333, - "mark": 0.8333333333333333, - "available": 0.8, - "free": 2, - "cla": 0.8333333333333333, - "signed": 0.8333333333333333, - "code": 2, - "approved": 2, - "construction": 0.8333333333333334, - "worker": 0.8333333333333334, - "detective": 2, - "left": 2, - "out": 2, - "luggage": 2, - "stop": 2, - "sign": 2, - "deploy": 2, - "passport": 2, - "control": 2, - "waiting": 2, - "wontfix": 2, - "work": 2, - "suggestion": 2, - "syntax": 2, - "technical": 2, - "debt": 2, - "technical-debt": 2, - "tests": 2, - "tips": 2, - "todo": 2, - "spiral": 2, - "notepad": 2, - "translation": 2, - "travis-yml": 2, - "triage-done": 2, - "trivial": 2, - "archive": 0.22222222222222227, - "community": 2, - "discuss": 0.8, - "speech": 0.8, - "balloon": 0.8, - "update": 2, - "repeat": 2, - "bulb": 2, - "getting": 2, - "x": 0.6666666666666667, - "non-library": 2, - "grey": 2, - "sendgrid": 2, - "vulnerability": 2, - "warning": 2, - "types": 2, - "unable": 2, - "reproduce": 2, - "unconfirmed": 2, - "ux": 2, - "v": 2, - "website": 2, - "websocket": 2, - "weekly-digest": 2, - "windows": 2, - "writer-needed": 2, - "wrong": 2, - "repo": 2, - "xhr-polling": 2, - "area": 5.333333333333334, - "crash": 16, - "report": 2, - "cmty": 3.5555555555555562, - "bug-report": 32, - "-": 0.6666666666666667, - "backlog": 0.6666666666666667, - "working": 2, - "done": 2, - "backport": 0.6666666666666667, - "arrow": 0.8, - "heading": 0.8, - "down": 0.8, - "pull": 0.8, - "font-face": 2, - "abandoned": 2, - "accessibility": 2, - "adapter": 2, - "advance": 0.75, - "workflow": 0.75, - "android": 2, - "angular": 2, - "animals": 2, - "answered": 2, - "arrows": 2, - "automotive": 2, - "fa": 0.8, - "pro": 0.8, - "awaiting-review": 2, - "beginner-friendly": 2, - "beverage": 2, - "blocked": 2, - "blocker": 2, - "bootstrap": 2, - "brand": 2, - "icon": 2, - "safari": 2, - "business": 2, - "c": 2, - "c++": 2, - "cannot": 2, - "cantfix": 2, - "cdn": 2, - "chat": 2, - "chore": 2, - "no": 2, - "yes": 2, - "closed": 2, - "due": 2, - "inactivity": 2, - "feature-request": 0.6666666666666667, - "cancelled": 2, - "fixed": 2, - "implemented": 2, - "resolved": 2 - }, - "negative_weights": { - "defect": 0.015625, - "bias": 7.042542783818394, - "internal-issue-created": 0.015625, - "pr": 0.12458496093749999, - "bug": 0.001609325408935548, - "fix": 0.019775390625, - "regression": 0.005859375, - "type": 0.1, - "boom": 0.6749999999999999, - "upstream": 0.33333333333333337, - "component": 3.515625, - "concurrent": 3.75, - "mode": 1.875, - "core": 1.875, - "utilities": 1.875, - "developer": 1.875, - "tools": 1, - "dom": 1, - "eslint": 1, - "rules": 1, - "hooks": 1, - "optimizing": 1, - "compiler": 1, - "reactis": 1, - "reconciler": 1, - "scheduler": 1, - "server": 1, - "rendering": 1, - "shallow": 1, - "renderer": 1, - "suspense": 1, - "test": 1, - "utils": 1, - "configuration": 2.25, - "confirmed": 2.25, - "conflicts": 2.25, - "contribution": 2, - "welcome": 2, - "critical": 2.25, - "csharp": 2.25, - "css": 2.25, - "css-select": 2.25, - "currency": 2, - "(category)": 2, - "dependencies": 2.25, - "dependency": 2, - "related": 2, - "design": 2.25, - "difficulty": 3.28125, - "challenging": 1, - "easy": 1, - "hard": 1.875, - "medium": 1, - "starter": 1, - "unknown": 1.75, - "or": 1.75, - "n": 1.75, - "a": 11.53564453125, - "very": 1.875, - "discussion": 1, - "do": 1.875, - "not": 12.359619140625, - "merge": 1.875, - "doc": 1, - "docs": 1, - "documentation": 2, - "book": 2, - "duplicate": 1, - "electron": 1, - "enhancement": 2, - "enterprise": 1, - "enterprise-": 2, - "-backport": 2, - "es": 1, - "external": 1, - "externs": 1, - "feat": 1.875, - "cli": 1, - "babel": 1, - "cli-service": 1.875, - "build": 1.875, - "serve": 1, - "e": 1, - "e-cypress": 1, - "e-nightwatch": 1, - "plugin": 1, - "api": 1, - "pwa": 1, - "typescript": 1, - "ui": 1, - "unit-jest": 1, - "unit-mocha": 1, - "feature": 1.7999999999999998, - "request": 1, - "feedback": 1, - "requested": 1, - "files": 1, - "first-timers-only": 1, - "flags": 1, - "flashsocket": 1, - "fontawesome": 1, - "com": 1, - "food": 1, - "freemasonry": 1, - "icons": 1, - "frontend": 1, - "future": 1.875, - "architecture": 1.875, - "enhancements": 1.875, - "crypto": 1, - "genders": 1, - "general": 1, - "js": 1, - "gh": 1.875, - "review": 1.875, - "accepted": 1.875, - "go": 1.7999999999999998, - "client": 1.7999999999999998, - "internal": 1.7999999999999998, - "release": 1.7999999999999998, - "good": 1.7999999999999998, - "first": 1.7999999999999998, - "issue": 1.7999999999999998, - "+": 1.7999999999999998, - "great": 1, - "insight": 1, - "greenkeeper": 1, - "hack": 1, - "hacked": 1, - "hacktoberfest": 1, - "handshakes": 1, - "has": 2, - "bounty": 1, - "help": 1, - "wanted": 1, - "sos": 1, - "hi-pri": 1, - "high-priority": 1, - "hodor": 1, - "hot": 1, - "html": 1, - "htmlfile": 1, - "https": 1, - "icebox": 1, - "ie": 1, - "import": 1, - "in": 3.1499999999999995, - "progress": 1.75, - "started": 1, - "infrastructure": 1.7999999999999998, - "hammer": 1.7999999999999998, - "and": 1.7999999999999998, - "wrench": 1.7999999999999998, - "installer": 1, - "cleanup": 1, - "invalid": 1, - "ios": 1, - "jquery": 1, - "differences": 1, - "jsonp-polling": 1, - "kbfs": 1, - "lang-crystal": 1, - "lang-dart": 1, - "lang-elixir": 1, - "lang-go": 1, - "lang-julia": 1, - "lang-objc": 1, - "lang-r": 1, - "lang-scala": 1, - "legal": 1, - "library": 1, - "lint": 1, - "linux": 1, - "lks": 1, - "m": 1, - "s": 1, - "macos": 1, - "maintenance": 1, - "major": 1, - "mass": 1, - "purge": 1, - "minor": 1, - "mobile": 1, - "device": 1, - "support": 1, - "proxy": 1, - "modules": 1, - "must-triage": 1, - "namespaces": 1, - "need-info": 1, - "needs": 1.75, - "example": 1, - "app": 1, - "failing": 1, - "browser": 1, - "testing": 1, - "changelog": 1, - "info": 1.75, - "more": 1.75, - "man": 1.75, - "shrugging": 1.75, - "repro": 1, - "triage": 1, - "needs-more-info": 1, - "needs-research": 1, - "new": 1, - "proposal": 1, - "best": 1, - "practice": 1, - "node": 1, - "next": 1, - "on": 1, - "hold": 1, - "open": 1, - "operations": 1, - "opinions": 1, - "needed": 1, - "optimisation": 1, - "other": 1.7999999999999998, - "language": 1.7999999999999998, - "integration": 1.7999999999999998, - "p": 1, - "packaging": 1, - "parser": 1, - "parser-specific": 1, - "pending": 1, - "performance": 1, - "planned": 1, - "for": 1, - "pr-existing": 1, - "breaking": 1.7999999999999998, - "change": 1.7999999999999998, - "⬆️": 1, - "deprecation": 1, - "memo": 1, - "house": 1, - "merged": 1.75, - "rocket": 2, - "polish": 1, - "nail": 1, - "care": 1, - "ready": 1.75, - "to": 1.75, - "be": 1.75, - "reviewed-approved": 1, - "reviewed-changes-requested": 1, - "spec": 1, - "compliance": 1, - "eyeglasses": 1, - "underlying": 1, - "unreviewed": 1, - "wip": 1, - "priority": 1, - "high": 1, - "low": 1, - "production": 1, - "project": 1, - "management": 1, - "question": 2, - "react": 1, - "flare": 1, - "native": 1, - "refactor": 1, - "alpha": 1, - "released": 1, - "reminder": 1, - "resolution": 1, - "information": 1, - "redirect": 1, - "revisitinfuture": 1, - "rfc": 1, - "ruby": 1, - "security": 1, - "shell": 1, - "socket": 1, - "io": 1, - "spam": 1, - "spammy": 1, - "async": 1, - "functions": 1, - "generators": 1, - "bigint": 1, - "class": 1, - "fields": 1, - "classes": 1, - "decorators": 1, - "(legacy)": 1, - "expressions": 1, - "stale": 1, - "status": 1.75, - "heavy": 1.75, - "check": 1.75, - "mark": 1.75, - "available": 1.7999999999999998, - "free": 1, - "cla": 1.75, - "signed": 1.75, - "code": 1, - "approved": 1, - "construction": 1.75, - "worker": 1.75, - "detective": 1, - "left": 1, - "out": 1, - "luggage": 1, - "stop": 1, - "sign": 1, - "deploy": 1, - "passport": 1, - "control": 1, - "waiting": 1, - "wontfix": 1, - "work": 1, - "suggestion": 1, - "syntax": 1, - "technical": 1, - "debt": 1, - "technical-debt": 1, - "tests": 1, - "tips": 1, - "todo": 1, - "spiral": 1, - "notepad": 1, - "translation": 1, - "travis-yml": 1, - "triage-done": 1, - "trivial": 1, - "archive": 4, - "community": 1, - "discuss": 1.7999999999999998, - "speech": 1.7999999999999998, - "balloon": 1.7999999999999998, - "update": 1, - "repeat": 1, - "bulb": 1, - "getting": 1, - "x": 2, - "non-library": 1, - "grey": 1, - "sendgrid": 1, - "vulnerability": 1, - "warning": 1, - "types": 1, - "unable": 1, - "reproduce": 1, - "unconfirmed": 1, - "ux": 1, - "v": 1, - "website": 1, - "websocket": 1, - "weekly-digest": 1, - "windows": 1, - "writer-needed": 1, - "wrong": 1, - "repo": 1, - "xhr-polling": 1, - "area": 0.0740740740740741, - "crash": 0.03703703703703705, - "report": 1, - "cmty": 0.049382716049382734, - "bug-report": 0.012345679012345684, - "-": 2, - "backlog": 2, - "working": 1, - "done": 1, - "backport": 2, - "arrow": 1.7999999999999998, - "heading": 1.7999999999999998, - "down": 1.7999999999999998, - "pull": 1.7999999999999998, - "font-face": 1, - "abandoned": 1, - "accessibility": 1, - "adapter": 1, - "advance": 1.875, - "workflow": 1.875, - "android": 1, - "angular": 1, - "animals": 1, - "answered": 1, - "arrows": 1, - "automotive": 1, - "fa": 1.7999999999999998, - "pro": 1.7999999999999998, - "awaiting-review": 1, - "beginner-friendly": 1, - "beverage": 1, - "blocked": 1, - "blocker": 1, - "bootstrap": 1, - "brand": 1, - "icon": 1, - "safari": 1, - "business": 1, - "c": 1, - "c++": 1, - "cannot": 1, - "cantfix": 1, - "cdn": 1, - "chat": 1, - "chore": 1, - "no": 1, - "yes": 1, - "closed": 1, - "due": 1, - "inactivity": 1, - "feature-request": 2, - "cancelled": 1, - "fixed": 1, - "implemented": 1, - "resolved": 1 - }, - "positive_weights_sum": {}, - "negative_weights_sum": {} - }, - "design": { - "positive_weights": { - "design": 22.78125, - "bias": 3.982621732401273e-10, - "(category)": 0.6666666666666667, - "feat": 1, - "ui": 18, - "freemasonry": 8, - "icons": 8, - "ux": 10.125, - "component": 0.28125, - "concurrent": 0.75, - "mode": 0.75, - "core": 0.75, - "utilities": 0.75, - "developer": 0.75, - "tools": 2, - "dom": 2, - "eslint": 2, - "rules": 2, - "hooks": 2, - "optimizing": 2, - "compiler": 2, - "reactis": 2, - "reconciler": 2, - "scheduler": 2, - "server": 2, - "rendering": 2, - "shallow": 2, - "renderer": 2, - "suspense": 2, - "test": 2, - "utils": 2, - "configuration": 0.5, - "confirmed": 0.5, - "conflicts": 0.5, - "contribution": 0.6666666666666667, - "welcome": 0.6666666666666667, - "critical": 0.5, - "csharp": 0.5, - "css": 0.5, - "css-select": 0.5, - "currency": 0.6666666666666667, - "defect": 0.5, - "dependencies": 0.5, - "dependency": 0.6666666666666667, - "related": 0.6666666666666667, - "difficulty": 0.8333333333333333, - "challenging": 2, - "easy": 2, - "hard": 2, - "medium": 2, - "starter": 2, - "unknown": 0.8333333333333333, - "or": 0.8333333333333333, - "n": 0.8333333333333333, - "a": 0.8333333333333333, - "very": 2, - "discussion": 2, - "do": 0.75, - "not": 0.75, - "merge": 0.75, - "doc": 2, - "docs": 2, - "documentation": 2, - "book": 2, - "duplicate": 2, - "electron": 2, - "enhancement": 0.6666666666666667, - "enterprise": 2, - "enterprise-": 2, - "-backport": 2, - "es": 2, - "external": 2, - "externs": 2, - "cli": 0.6666666666666667, - "babel": 2, - "cli-service": 0.75, - "build": 0.75, - "serve": 2, - "e": 2, - "e-cypress": 2, - "e-nightwatch": 2, - "plugin": 2, - "api": 2, - "pwa": 2, - "typescript": 2, - "unit-jest": 2, - "unit-mocha": 2, - "feature": 2, - "request": 2, - "feedback": 2, - "requested": 2, - "files": 2, - "first-timers-only": 2, - "flags": 2, - "flashsocket": 2, - "fontawesome": 2, - "com": 2, - "food": 2, - "frontend": 2, - "future": 0.75, - "architecture": 0.75, - "enhancements": 0.75, - "crypto": 2, - "genders": 2, - "general": 2, - "js": 2, - "gh": 2, - "review": 2, - "accepted": 2, - "go": 2, - "client": 2, - "internal": 2, - "release": 2, - "good": 2, - "first": 2, - "issue": 2, - "+": 2, - "great": 2, - "insight": 2, - "greenkeeper": 2, - "hack": 2, - "hacked": 2, - "hacktoberfest": 2, - "handshakes": 2, - "has": 2, - "bounty": 2, - "pr": 2, - "help": 2, - "wanted": 2, - "sos": 2, - "hi-pri": 2, - "high-priority": 2, - "hodor": 2, - "hot": 2, - "html": 2, - "htmlfile": 2, - "https": 2, - "icebox": 2, - "ie": 2, - "import": 2, - "in": 0.8, - "progress": 2, - "started": 2, - "infrastructure": 2, - "hammer": 2, - "and": 2, - "wrench": 2, - "installer": 2, - "cleanup": 2, - "internal-issue-created": 2, - "invalid": 2, - "ios": 2, - "jquery": 2, - "differences": 2, - "jsonp-polling": 2, - "kbfs": 2, - "lang-crystal": 2, - "lang-dart": 2, - "lang-elixir": 2, - "lang-go": 2, - "lang-julia": 2, - "lang-objc": 2, - "lang-r": 2, - "lang-scala": 2, - "legal": 2, - "library": 2, - "lint": 2, - "linux": 2, - "lks": 2, - "m": 2, - "s": 2, - "macos": 2, - "maintenance": 2, - "major": 2, - "mass": 2, - "purge": 2, - "minor": 2, - "mobile": 2, - "device": 2, - "support": 2, - "proxy": 2, - "modules": 2, - "must-triage": 2, - "namespaces": 2, - "need-info": 2, - "needs": 0.8333333333333333, - "example": 2, - "app": 2, - "failing": 2, - "browser": 2, - "testing": 2, - "changelog": 2, - "info": 0.8333333333333333, - "more": 0.8333333333333333, - "man": 0.8333333333333333, - "shrugging": 0.8333333333333333, - "repro": 2, - "triage": 2, - "needs-more-info": 2, - "needs-research": 2, - "new": 2, - "proposal": 2, - "best": 2, - "practice": 2, - "node": 2, - "next": 2, - "bug": 2, - "on": 2, - "hold": 2, - "open": 2, - "operations": 2, - "opinions": 2, - "needed": 2, - "optimisation": 2, - "other": 2, - "language": 2, - "integration": 2, - "p": 2, - "packaging": 2, - "parser": 2, - "parser-specific": 2, - "pending": 2, - "performance": 2, - "planned": 2, - "for": 2, - "pr-existing": 2, - "breaking": 2, - "change": 2, - "boom": 0.6666666666666667, - "fix": 2, - "⬆️": 2, - "deprecation": 2, - "memo": 2, - "house": 2, - "merged": 2, - "rocket": 0.6666666666666667, - "polish": 2, - "nail": 2, - "care": 2, - "ready": 2, - "to": 0.8, - "be": 2, - "reviewed-approved": 2, - "reviewed-changes-requested": 2, - "spec": 2, - "compliance": 2, - "eyeglasses": 2, - "underlying": 2, - "unreviewed": 2, - "wip": 2, - "priority": 2, - "high": 2, - "low": 2, - "production": 2, - "project": 2, - "management": 2, - "question": 0.75, - "react": 2, - "flare": 2, - "native": 2, - "refactor": 2, - "regression": 0.6666666666666667, - "alpha": 2, - "released": 2, - "reminder": 2, - "resolution": 2, - "information": 2, - "redirect": 2, - "revisitinfuture": 2, - "rfc": 2, - "ruby": 2, - "security": 2, - "shell": 2, - "socket": 2, - "io": 2, - "spam": 2, - "spammy": 2, - "async": 2, - "functions": 2, - "generators": 2, - "bigint": 2, - "class": 2, - "fields": 2, - "classes": 2, - "decorators": 2, - "(legacy)": 2, - "expressions": 2, - "stale": 2, - "status": 2, - "heavy": 0.8333333333333333, - "check": 0.8333333333333333, - "mark": 0.8333333333333333, - "available": 0.8, - "free": 2, - "cla": 0.8333333333333333, - "signed": 0.8333333333333333, - "code": 2, - "approved": 2, - "construction": 2, - "worker": 2, - "detective": 2, - "left": 2, - "out": 2, - "luggage": 2, - "stop": 2, - "sign": 2, - "deploy": 2, - "passport": 2, - "control": 2, - "waiting": 2, - "wontfix": 2, - "work": 2, - "suggestion": 2, - "syntax": 2, - "technical": 2, - "debt": 2, - "technical-debt": 2, - "tests": 2, - "tips": 2, - "todo": 2, - "spiral": 2, - "notepad": 2, - "translation": 2, - "travis-yml": 2, - "triage-done": 2, - "trivial": 2, - "type": 2, - "archive": 2, - "community": 2, - "discuss": 2, - "speech": 0.75, - "balloon": 0.75, - "update": 2, - "repeat": 2, - "bulb": 2, - "getting": 2, - "x": 0.5, - "non-library": 2, - "grey": 2, - "sendgrid": 2, - "vulnerability": 2, - "warning": 2, - "types": 2, - "unable": 2, - "reproduce": 2, - "unconfirmed": 2, - "upstream": 2, - "v": 2, - "website": 2, - "websocket": 2, - "weekly-digest": 2, - "windows": 2, - "writer-needed": 2, - "wrong": 2, - "repo": 2, - "xhr-polling": 2, - "font-face": 22.78125, - "brand": 8, - "icon": 8, - "-": 0.6666666666666667, - "backlog": 0.6666666666666667, - "working": 2, - "done": 2, - "backport": 2, - "arrow": 0.8, - "heading": 0.8, - "down": 0.8, - "pull": 0.8, - "abandoned": 2, - "accessibility": 2, - "adapter": 2, - "advance": 0.75, - "workflow": 0.75, - "android": 2, - "angular": 2, - "animals": 2, - "answered": 2, - "area": 2, - "crash": 2, - "arrows": 2, - "automotive": 2, - "fa": 0.8, - "pro": 0.8, - "awaiting-review": 2, - "beginner-friendly": 2, - "beverage": 2, - "blocked": 2, - "blocker": 2, - "bootstrap": 2, - "safari": 2, - "report": 2, - "business": 2, - "c": 2, - "c++": 2, - "cannot": 2, - "cantfix": 2, - "cdn": 2, - "chat": 2, - "chore": 2, - "no": 2, - "yes": 2, - "closed": 0.8, - "due": 0.8, - "inactivity": 0.8, - "cmty": 2, - "bug-report": 2, - "feature-request": 2, - "cancelled": 2, - "fixed": 2, - "implemented": 2, - "resolved": 2 - }, - "negative_weights": { - "design": 0.015625, - "bias": 5.671634900769914, - "(category)": 2, - "feat": 0.4166666666666668, - "ui": 0.027777777777777783, - "freemasonry": 0.11111111111111113, - "icons": 0.11111111111111113, - "ux": 0.0625, - "component": 3.515625, - "concurrent": 1.875, - "mode": 1.875, - "core": 1.875, - "utilities": 1.875, - "developer": 1.875, - "tools": 1, - "dom": 1, - "eslint": 1, - "rules": 1, - "hooks": 1, - "optimizing": 1, - "compiler": 1, - "reactis": 1, - "reconciler": 1, - "scheduler": 1, - "server": 1, - "rendering": 1, - "shallow": 1, - "renderer": 1, - "suspense": 1, - "test": 1, - "utils": 1, - "configuration": 2.25, - "confirmed": 2.25, - "conflicts": 2.25, - "contribution": 2, - "welcome": 2, - "critical": 2.25, - "csharp": 2.25, - "css": 2.25, - "css-select": 2.25, - "currency": 2, - "defect": 2.25, - "dependencies": 2.25, - "dependency": 2, - "related": 2, - "difficulty": 1.75, - "challenging": 1, - "easy": 1, - "hard": 1, - "medium": 1, - "starter": 1, - "unknown": 1.75, - "or": 1.75, - "n": 1.75, - "a": 1.75, - "very": 1, - "discussion": 1, - "do": 1.875, - "not": 1.875, - "merge": 1.875, - "doc": 1, - "docs": 1, - "documentation": 1, - "book": 1, - "duplicate": 1, - "electron": 1, - "enhancement": 2, - "enterprise": 1, - "enterprise-": 1, - "-backport": 1, - "es": 1, - "external": 1, - "externs": 1, - "cli": 2, - "babel": 1, - "cli-service": 1.875, - "build": 1.875, - "serve": 1, - "e": 1, - "e-cypress": 1, - "e-nightwatch": 1, - "plugin": 1, - "api": 1, - "pwa": 1, - "typescript": 1, - "unit-jest": 1, - "unit-mocha": 1, - "feature": 1, - "request": 1, - "feedback": 1, - "requested": 1, - "files": 1, - "first-timers-only": 1, - "flags": 1, - "flashsocket": 1, - "fontawesome": 1, - "com": 1, - "food": 1, - "frontend": 1, - "future": 1.875, - "architecture": 1.875, - "enhancements": 1.875, - "crypto": 1, - "genders": 1, - "general": 1, - "js": 1, - "gh": 1, - "review": 1, - "accepted": 1, - "go": 1, - "client": 1, - "internal": 1, - "release": 1, - "good": 1, - "first": 1, - "issue": 1, - "+": 1, - "great": 1, - "insight": 1, - "greenkeeper": 1, - "hack": 1, - "hacked": 1, - "hacktoberfest": 1, - "handshakes": 1, - "has": 1, - "bounty": 1, - "pr": 1, - "help": 1, - "wanted": 1, - "sos": 1, - "hi-pri": 1, - "high-priority": 1, - "hodor": 1, - "hot": 1, - "html": 1, - "htmlfile": 1, - "https": 1, - "icebox": 1, - "ie": 1, - "import": 1, - "in": 1.7999999999999998, - "progress": 1, - "started": 1, - "infrastructure": 1, - "hammer": 1, - "and": 1, - "wrench": 1, - "installer": 1, - "cleanup": 1, - "internal-issue-created": 1, - "invalid": 1, - "ios": 1, - "jquery": 1, - "differences": 1, - "jsonp-polling": 1, - "kbfs": 1, - "lang-crystal": 1, - "lang-dart": 1, - "lang-elixir": 1, - "lang-go": 1, - "lang-julia": 1, - "lang-objc": 1, - "lang-r": 1, - "lang-scala": 1, - "legal": 1, - "library": 1, - "lint": 1, - "linux": 1, - "lks": 1, - "m": 1, - "s": 1, - "macos": 1, - "maintenance": 1, - "major": 1, - "mass": 1, - "purge": 1, - "minor": 1, - "mobile": 1, - "device": 1, - "support": 1, - "proxy": 1, - "modules": 1, - "must-triage": 1, - "namespaces": 1, - "need-info": 1, - "needs": 1.75, - "example": 1, - "app": 1, - "failing": 1, - "browser": 1, - "testing": 1, - "changelog": 1, - "info": 1.75, - "more": 1.75, - "man": 1.75, - "shrugging": 1.75, - "repro": 1, - "triage": 1, - "needs-more-info": 1, - "needs-research": 1, - "new": 1, - "proposal": 1, - "best": 1, - "practice": 1, - "node": 1, - "next": 1, - "bug": 1, - "on": 1, - "hold": 1, - "open": 1, - "operations": 1, - "opinions": 1, - "needed": 1, - "optimisation": 1, - "other": 1, - "language": 1, - "integration": 1, - "p": 1, - "packaging": 1, - "parser": 1, - "parser-specific": 1, - "pending": 1, - "performance": 1, - "planned": 1, - "for": 1, - "pr-existing": 1, - "breaking": 1, - "change": 1, - "boom": 2, - "fix": 1, - "⬆️": 1, - "deprecation": 1, - "memo": 1, - "house": 1, - "merged": 1, - "rocket": 2, - "polish": 1, - "nail": 1, - "care": 1, - "ready": 1, - "to": 1.7999999999999998, - "be": 1, - "reviewed-approved": 1, - "reviewed-changes-requested": 1, - "spec": 1, - "compliance": 1, - "eyeglasses": 1, - "underlying": 1, - "unreviewed": 1, - "wip": 1, - "priority": 1, - "high": 1, - "low": 1, - "production": 1, - "project": 1, - "management": 1, - "question": 1.875, - "react": 1, - "flare": 1, - "native": 1, - "refactor": 1, - "regression": 2, - "alpha": 1, - "released": 1, - "reminder": 1, - "resolution": 1, - "information": 1, - "redirect": 1, - "revisitinfuture": 1, - "rfc": 1, - "ruby": 1, - "security": 1, - "shell": 1, - "socket": 1, - "io": 1, - "spam": 1, - "spammy": 1, - "async": 1, - "functions": 1, - "generators": 1, - "bigint": 1, - "class": 1, - "fields": 1, - "classes": 1, - "decorators": 1, - "(legacy)": 1, - "expressions": 1, - "stale": 1, - "status": 1, - "heavy": 1.75, - "check": 1.75, - "mark": 1.75, - "available": 1.7999999999999998, - "free": 1, - "cla": 1.75, - "signed": 1.75, - "code": 1, - "approved": 1, - "construction": 1, - "worker": 1, - "detective": 1, - "left": 1, - "out": 1, - "luggage": 1, - "stop": 1, - "sign": 1, - "deploy": 1, - "passport": 1, - "control": 1, - "waiting": 1, - "wontfix": 1, - "work": 1, - "suggestion": 1, - "syntax": 1, - "technical": 1, - "debt": 1, - "technical-debt": 1, - "tests": 1, - "tips": 1, - "todo": 1, - "spiral": 1, - "notepad": 1, - "translation": 1, - "travis-yml": 1, - "triage-done": 1, - "trivial": 1, - "type": 1, - "archive": 1, - "community": 1, - "discuss": 1, - "speech": 1.875, - "balloon": 1.875, - "update": 1, - "repeat": 1, - "bulb": 1, - "getting": 1, - "x": 2.25, - "non-library": 1, - "grey": 1, - "sendgrid": 1, - "vulnerability": 1, - "warning": 1, - "types": 1, - "unable": 1, - "reproduce": 1, - "unconfirmed": 1, - "upstream": 1, - "v": 1, - "website": 1, - "websocket": 1, - "weekly-digest": 1, - "windows": 1, - "writer-needed": 1, - "wrong": 1, - "repo": 1, - "xhr-polling": 1, - "font-face": 0.015625, - "brand": 0.11111111111111113, - "icon": 0.11111111111111113, - "-": 2, - "backlog": 2, - "working": 1, - "done": 1, - "backport": 1, - "arrow": 1.7999999999999998, - "heading": 1.7999999999999998, - "down": 1.7999999999999998, - "pull": 1.7999999999999998, - "abandoned": 1, - "accessibility": 1, - "adapter": 1, - "advance": 1.875, - "workflow": 1.875, - "android": 1, - "angular": 1, - "animals": 1, - "answered": 1, - "area": 1, - "crash": 1, - "arrows": 1, - "automotive": 1, - "fa": 1.7999999999999998, - "pro": 1.7999999999999998, - "awaiting-review": 1, - "beginner-friendly": 1, - "beverage": 1, - "blocked": 1, - "blocker": 1, - "bootstrap": 1, - "safari": 1, - "report": 1, - "business": 1, - "c": 1, - "c++": 1, - "cannot": 1, - "cantfix": 1, - "cdn": 1, - "chat": 1, - "chore": 1, - "no": 1, - "yes": 1, - "closed": 1.7999999999999998, - "due": 1.7999999999999998, - "inactivity": 1.7999999999999998, - "cmty": 1, - "bug-report": 1, - "feature-request": 1, - "cancelled": 1, - "fixed": 1, - "implemented": 1, - "resolved": 1 - }, - "positive_weights_sum": {}, - "negative_weights_sum": {} - }, - "ideas": { - "positive_weights": { - "discussion": 22.78125, - "bias": 2.4984015715481654e-24, - "feature": 32.84204177856447, - "request": 4, - "future": 7.03125, - "architecture": 3.75, - "enhancements": 7.03125, - "crypto": 3.75, - "great": 8, - "insight": 8, - "hot": 2, - "new": 24.71923828125, - "api": 1.40625, - "proposal": 3.75, - "best": 3.75, - "practice": 3.75, - "other": 3.5999999999999996, - "language": 3.5999999999999996, - "integration": 3.5999999999999996, - "pr": 0.4119873046875, - "dependency": 0.8789062500000002, - "rocket": 2, - "revisitinfuture": 10.125, - "rfc": 10.125, - "suggestion": 10.125, - "syntax": 2, - "tips": 10.125, - "type": 1.2013549804687498, - "discuss": 11.663999999999996, - "speech": 1.6402499999999995, - "balloon": 1.6402499999999995, - "enhancement": 0.308990478515625, - "bulb": 13.18359375, - "component": 0.10546875, - "concurrent": 0.28125, - "mode": 0.28125, - "core": 0.75, - "utilities": 0.75, - "developer": 0.75, - "tools": 2, - "dom": 2, - "eslint": 2, - "rules": 2, - "hooks": 2, - "optimizing": 2, - "compiler": 2, - "reactis": 2, - "reconciler": 2, - "scheduler": 2, - "server": 2, - "rendering": 2, - "shallow": 2, - "renderer": 2, - "suspense": 2, - "test": 2, - "utils": 2, - "configuration": 0.125, - "confirmed": 0.5, - "conflicts": 0.5, - "contribution": 0.6666666666666667, - "welcome": 0.6666666666666667, - "critical": 0.5, - "csharp": 0.5, - "css": 0.5, - "css-select": 0.5, - "currency": 0.6666666666666667, - "(category)": 0.5925925925925928, - "defect": 0.5, - "dependencies": 0.5, - "related": 0.6666666666666667, - "design": 0.5, - "difficulty": 0.3125, - "challenging": 2, - "easy": 2, - "hard": 0.75, - "medium": 2, - "starter": 2, - "unknown": 0.8333333333333334, - "or": 0.8333333333333334, - "n": 0.8333333333333334, - "a": 0.8333333333333334, - "very": 0.75, - "do": 0.75, - "not": 0.75, - "merge": 0.75, - "doc": 0.5, - "docs": 0.5, - "documentation": 0.5, - "book": 2, - "duplicate": 0.5, - "electron": 0.5, - "enterprise": 0.5, - "enterprise-": 0.6666666666666667, - "-backport": 0.6666666666666667, - "es": 0.5, - "external": 0.5, - "externs": 0.5, - "feat": 0.28125, - "cli": 2, - "babel": 2, - "cli-service": 0.75, - "build": 0.75, - "serve": 2, - "e": 2, - "e-cypress": 2, - "e-nightwatch": 2, - "plugin": 0.75, - "pwa": 2, - "typescript": 2, - "ui": 2, - "unit-jest": 2, - "unit-mocha": 2, - "feedback": 0.6666666666666667, - "requested": 0.6666666666666667, - "files": 2, - "first-timers-only": 0.5, - "flags": 2, - "flashsocket": 0.5, - "fontawesome": 0.6666666666666667, - "com": 0.6666666666666667, - "food": 2, - "freemasonry": 0.6666666666666667, - "icons": 0.6666666666666667, - "frontend": 2, - "genders": 2, - "general": 0.6666666666666667, - "js": 0.6666666666666667, - "gh": 0.75, - "review": 0.75, - "accepted": 0.75, - "go": 0.8, - "client": 0.8, - "internal": 0.8, - "release": 0.8, - "good": 0.8, - "first": 0.8, - "issue": 0.8, - "+": 0.8, - "greenkeeper": 2, - "hack": 2, - "hacked": 2, - "hacktoberfest": 2, - "handshakes": 2, - "has": 0.6666666666666667, - "bounty": 0.6666666666666667, - "help": 0.75, - "wanted": 0.75, - "sos": 2, - "hi-pri": 2, - "high-priority": 2, - "hodor": 2, - "html": 2, - "htmlfile": 2, - "https": 2, - "icebox": 2, - "ie": 2, - "import": 0.75, - "in": 0.75, - "progress": 0.75, - "started": 0.75, - "infrastructure": 0.8, - "hammer": 0.8, - "and": 0.8, - "wrench": 0.8, - "installer": 2, - "cleanup": 2, - "internal-issue-created": 2, - "invalid": 2, - "ios": 2, - "jquery": 0.6666666666666667, - "differences": 0.6666666666666667, - "jsonp-polling": 2, - "kbfs": 2, - "lang-crystal": 2, - "lang-dart": 2, - "lang-elixir": 2, - "lang-go": 2, - "lang-julia": 2, - "lang-objc": 2, - "lang-r": 2, - "lang-scala": 2, - "legal": 2, - "library": 2, - "lint": 2, - "linux": 2, - "lks": 2, - "m": 2, - "s": 2, - "macos": 2, - "maintenance": 2, - "major": 2, - "mass": 2, - "purge": 2, - "minor": 2, - "mobile": 0.75, - "device": 0.75, - "support": 0.75, - "proxy": 2, - "modules": 2, - "must-triage": 2, - "namespaces": 2, - "need-info": 2, - "needs": 0.8333333333333334, - "example": 2, - "app": 2, - "failing": 2, - "browser": 2, - "testing": 2, - "changelog": 2, - "info": 0.8333333333333334, - "more": 0.8333333333333334, - "man": 0.8333333333333334, - "shrugging": 0.8333333333333334, - "repro": 2, - "triage": 2, - "needs-more-info": 2, - "needs-research": 2, - "node": 2, - "next": 2, - "bug": 0.6666666666666667, - "on": 0.8333333333333334, - "hold": 0.8333333333333334, - "open": 2, - "operations": 2, - "opinions": 2, - "needed": 2, - "optimisation": 2, - "p": 2, - "packaging": 2, - "parser": 2, - "parser-specific": 2, - "pending": 2, - "performance": 2, - "planned": 0.002743484224965708, - "for": 2, - "pr-existing": 2, - "breaking": 2, - "change": 2, - "boom": 0.6666666666666667, - "fix": 2, - "⬆️": 0.75, - "deprecation": 2, - "memo": 2, - "house": 2, - "merged": 0.8333333333333334, - "polish": 2, - "nail": 2, - "care": 2, - "ready": 0.8333333333333334, - "to": 0.8333333333333334, - "be": 0.8333333333333334, - "reviewed-approved": 2, - "reviewed-changes-requested": 2, - "spec": 0.75, - "compliance": 2, - "eyeglasses": 2, - "underlying": 2, - "unreviewed": 2, - "wip": 2, - "priority": 2, - "high": 2, - "low": 2, - "production": 2, - "project": 2, - "management": 2, - "question": 0.28125, - "react": 2, - "flare": 2, - "native": 2, - "refactor": 2, - "regression": 0.6666666666666667, - "alpha": 2, - "released": 2, - "reminder": 2, - "resolution": 2, - "information": 2, - "redirect": 2, - "ruby": 2, - "security": 2, - "shell": 2, - "socket": 2, - "io": 2, - "spam": 2, - "spammy": 2, - "async": 0.75, - "functions": 0.75, - "generators": 2, - "bigint": 2, - "class": 2, - "fields": 2, - "classes": 2, - "decorators": 2, - "(legacy)": 2, - "expressions": 2, - "stale": 2, - "status": 0.3125, - "heavy": 0.8333333333333333, - "check": 0.8333333333333333, - "mark": 0.8333333333333333, - "available": 2, - "free": 2, - "cla": 0.8333333333333333, - "signed": 0.8333333333333333, - "code": 2, - "approved": 2, - "construction": 2, - "worker": 2, - "detective": 2, - "left": 2, - "out": 2, - "luggage": 2, - "stop": 0.8333333333333334, - "sign": 0.8333333333333334, - "deploy": 2, - "passport": 2, - "control": 2, - "waiting": 2, - "wontfix": 2, - "work": 2, - "technical": 2, - "debt": 2, - "technical-debt": 2, - "tests": 2, - "todo": 2, - "spiral": 2, - "notepad": 2, - "translation": 2, - "travis-yml": 2, - "triage-done": 2, - "trivial": 2, - "archive": 0.6666666666666667, - "community": 0.75, - "update": 2, - "repeat": 2, - "getting": 0.75, - "x": 0.6666666666666667, - "non-library": 2, - "grey": 2, - "sendgrid": 2, - "vulnerability": 2, - "warning": 2, - "types": 2, - "unable": 2, - "reproduce": 2, - "unconfirmed": 2, - "upstream": 2, - "ux": 2, - "v": 2, - "website": 2, - "websocket": 2, - "weekly-digest": 2, - "windows": 2, - "writer-needed": 2, - "wrong": 2, - "repo": 2, - "xhr-polling": 2, - "chat": 16, - "cmty": 2, - "feature-request": 16, - "-": 0.6666666666666667, - "backlog": 0.6666666666666667, - "working": 2, - "done": 2, - "backport": 0.6666666666666667, - "arrow": 0.8, - "heading": 0.8, - "down": 0.8, - "pull": 0.8, - "font-face": 2, - "abandoned": 2, - "accessibility": 2, - "adapter": 2, - "advance": 0.75, - "workflow": 0.75, - "android": 2, - "angular": 2, - "animals": 0.6666666666666667, - "answered": 2, - "area": 2, - "crash": 2, - "arrows": 0.6666666666666667, - "automotive": 2, - "fa": 2, - "pro": 2, - "awaiting-review": 2, - "beginner-friendly": 2, - "beverage": 2, - "blocked": 2, - "blocker": 2, - "bootstrap": 2, - "brand": 2, - "icon": 2, - "safari": 2, - "report": 2, - "business": 2, - "c": 2, - "c++": 2, - "cannot": 2, - "cantfix": 2, - "cdn": 2, - "chore": 2, - "no": 2, - "yes": 2, - "closed": 2, - "due": 2, - "inactivity": 2, - "bug-report": 0.6666666666666667, - "cancelled": 0.75, - "fixed": 2, - "implemented": 2, - "resolved": 2 - }, - "negative_weights": { - "discussion": 0.015625, - "bias": 5.464809510798253, - "feature": 0.000008138020833333335, - "request": 0.33333333333333337, - "future": 0.140625, - "architecture": 0.375, - "enhancements": 0.140625, - "crypto": 0.375, - "great": 0.11111111111111113, - "insight": 0.11111111111111113, - "hot": 1, - "new": 0.019775390625, - "api": 0.703125, - "proposal": 0.375, - "best": 0.375, - "practice": 0.375, - "other": 0.4, - "language": 0.4, - "integration": 0.4, - "pr": 0.86517333984375, - "dependency": 0.52734375, - "rocket": 1, - "revisitinfuture": 0.0625, - "rfc": 0.0625, - "suggestion": 0.0625, - "syntax": 1, - "tips": 0.0625, - "type": 0.047460937500000015, - "discuss": 0.06400000000000002, - "speech": 0.22500000000000006, - "balloon": 0.22500000000000006, - "enhancement": 0.5005645751953125, - "bulb": 0.052734375, - "component": 6.591796875, - "concurrent": 3.515625, - "mode": 3.515625, - "core": 1.875, - "utilities": 1.875, - "developer": 1.875, - "tools": 1, - "dom": 1, - "eslint": 1, - "rules": 1, - "hooks": 1, - "optimizing": 1, - "compiler": 1, - "reactis": 1, - "reconciler": 1, - "scheduler": 1, - "server": 1, - "rendering": 1, - "shallow": 1, - "renderer": 1, - "suspense": 1, - "test": 1, - "utils": 1, - "configuration": 5.0625, - "confirmed": 2.25, - "conflicts": 2.25, - "contribution": 2, - "welcome": 2, - "critical": 2.25, - "csharp": 2.25, - "css": 2.25, - "css-select": 2.25, - "currency": 2, - "(category)": 0.2962962962962964, - "defect": 2.25, - "dependencies": 2.25, - "related": 2, - "design": 2.25, - "difficulty": 3.28125, - "challenging": 1, - "easy": 1, - "hard": 1.875, - "medium": 1, - "starter": 1, - "unknown": 1.75, - "or": 1.75, - "n": 1.75, - "a": 1.75, - "very": 1.875, - "do": 1.875, - "not": 1.875, - "merge": 1.875, - "doc": 2.25, - "docs": 2.25, - "documentation": 2.25, - "book": 1, - "duplicate": 2.25, - "electron": 2.25, - "enterprise": 2.25, - "enterprise-": 2, - "-backport": 2, - "es": 2.25, - "external": 2.25, - "externs": 2.25, - "feat": 3.515625, - "cli": 1, - "babel": 1, - "cli-service": 1.875, - "build": 1.875, - "serve": 1, - "e": 1, - "e-cypress": 1, - "e-nightwatch": 1, - "plugin": 1.875, - "pwa": 1, - "typescript": 1, - "ui": 1, - "unit-jest": 1, - "unit-mocha": 1, - "feedback": 2, - "requested": 2, - "files": 1, - "first-timers-only": 2.25, - "flags": 1, - "flashsocket": 2.25, - "fontawesome": 2, - "com": 2, - "food": 1, - "freemasonry": 2, - "icons": 2, - "frontend": 1, - "genders": 1, - "general": 2, - "js": 2, - "gh": 1.875, - "review": 1.875, - "accepted": 1.875, - "go": 1.7999999999999998, - "client": 1.7999999999999998, - "internal": 1.7999999999999998, - "release": 1.7999999999999998, - "good": 1.7999999999999998, - "first": 1.7999999999999998, - "issue": 1.7999999999999998, - "+": 1.7999999999999998, - "greenkeeper": 1, - "hack": 1, - "hacked": 1, - "hacktoberfest": 1, - "handshakes": 1, - "has": 2, - "bounty": 2, - "help": 1.875, - "wanted": 1.875, - "sos": 1, - "hi-pri": 1, - "high-priority": 1, - "hodor": 1, - "html": 1, - "htmlfile": 1, - "https": 1, - "icebox": 1, - "ie": 1, - "import": 1.875, - "in": 1.875, - "progress": 1.875, - "started": 1.875, - "infrastructure": 1.7999999999999998, - "hammer": 1.7999999999999998, - "and": 1.7999999999999998, - "wrench": 1.7999999999999998, - "installer": 1, - "cleanup": 1, - "internal-issue-created": 1, - "invalid": 1, - "ios": 1, - "jquery": 2, - "differences": 2, - "jsonp-polling": 1, - "kbfs": 1, - "lang-crystal": 1, - "lang-dart": 1, - "lang-elixir": 1, - "lang-go": 1, - "lang-julia": 1, - "lang-objc": 1, - "lang-r": 1, - "lang-scala": 1, - "legal": 1, - "library": 1, - "lint": 1, - "linux": 1, - "lks": 1, - "m": 1, - "s": 1, - "macos": 1, - "maintenance": 1, - "major": 1, - "mass": 1, - "purge": 1, - "minor": 1, - "mobile": 1.875, - "device": 1.875, - "support": 1.875, - "proxy": 1, - "modules": 1, - "must-triage": 1, - "namespaces": 1, - "need-info": 1, - "needs": 1.75, - "example": 1, - "app": 1, - "failing": 1, - "browser": 1, - "testing": 1, - "changelog": 1, - "info": 1.75, - "more": 1.75, - "man": 1.75, - "shrugging": 1.75, - "repro": 1, - "triage": 1, - "needs-more-info": 1, - "needs-research": 1, - "node": 1, - "next": 1, - "bug": 2, - "on": 1.75, - "hold": 1.75, - "open": 1, - "operations": 1, - "opinions": 1, - "needed": 1, - "optimisation": 1, - "p": 1, - "packaging": 1, - "parser": 1, - "parser-specific": 1, - "pending": 1, - "performance": 1, - "planned": 64, - "for": 1, - "pr-existing": 1, - "breaking": 1, - "change": 1, - "boom": 2, - "fix": 1, - "⬆️": 1.875, - "deprecation": 1, - "memo": 1, - "house": 1, - "merged": 1.75, - "polish": 1, - "nail": 1, - "care": 1, - "ready": 1.75, - "to": 1.75, - "be": 1.75, - "reviewed-approved": 1, - "reviewed-changes-requested": 1, - "spec": 1.875, - "compliance": 1, - "eyeglasses": 1, - "underlying": 1, - "unreviewed": 1, - "wip": 1, - "priority": 1, - "high": 1, - "low": 1, - "production": 1, - "project": 1, - "management": 1, - "question": 3.515625, - "react": 1, - "flare": 1, - "native": 1, - "refactor": 1, - "regression": 2, - "alpha": 1, - "released": 1, - "reminder": 1, - "resolution": 1, - "information": 1, - "redirect": 1, - "ruby": 1, - "security": 1, - "shell": 1, - "socket": 1, - "io": 1, - "spam": 1, - "spammy": 1, - "async": 1.875, - "functions": 1.875, - "generators": 1, - "bigint": 1, - "class": 1, - "fields": 1, - "classes": 1, - "decorators": 1, - "(legacy)": 1, - "expressions": 1, - "stale": 1, - "status": 3.28125, - "heavy": 1.75, - "check": 1.75, - "mark": 1.75, - "available": 1, - "free": 1, - "cla": 1.75, - "signed": 1.75, - "code": 1, - "approved": 1, - "construction": 1, - "worker": 1, - "detective": 1, - "left": 1, - "out": 1, - "luggage": 1, - "stop": 1.75, - "sign": 1.75, - "deploy": 1, - "passport": 1, - "control": 1, - "waiting": 1, - "wontfix": 1, - "work": 1, - "technical": 1, - "debt": 1, - "technical-debt": 1, - "tests": 1, - "todo": 1, - "spiral": 1, - "notepad": 1, - "translation": 1, - "travis-yml": 1, - "triage-done": 1, - "trivial": 1, - "archive": 2, - "community": 1.875, - "update": 1, - "repeat": 1, - "getting": 1.875, - "x": 2, - "non-library": 1, - "grey": 1, - "sendgrid": 1, - "vulnerability": 1, - "warning": 1, - "types": 1, - "unable": 1, - "reproduce": 1, - "unconfirmed": 1, - "upstream": 1, - "ux": 1, - "v": 1, - "website": 1, - "websocket": 1, - "weekly-digest": 1, - "windows": 1, - "writer-needed": 1, - "wrong": 1, - "repo": 1, - "xhr-polling": 1, - "chat": 0.03703703703703705, - "cmty": 0.13888888888888892, - "feature-request": 0.03703703703703705, - "-": 2, - "backlog": 2, - "working": 1, - "done": 1, - "backport": 2, - "arrow": 1.7999999999999998, - "heading": 1.7999999999999998, - "down": 1.7999999999999998, - "pull": 1.7999999999999998, - "font-face": 1, - "abandoned": 1, - "accessibility": 1, - "adapter": 1, - "advance": 1.875, - "workflow": 1.875, - "android": 1, - "angular": 1, - "animals": 2, - "answered": 1, - "area": 1, - "crash": 1, - "arrows": 2, - "automotive": 1, - "fa": 1, - "pro": 1, - "awaiting-review": 1, - "beginner-friendly": 1, - "beverage": 1, - "blocked": 1, - "blocker": 1, - "bootstrap": 1, - "brand": 1, - "icon": 1, - "safari": 1, - "report": 1, - "business": 1, - "c": 1, - "c++": 1, - "cannot": 1, - "cantfix": 1, - "cdn": 1, - "chore": 1, - "no": 1, - "yes": 1, - "closed": 1, - "due": 1, - "inactivity": 1, - "bug-report": 2, - "cancelled": 1.875, - "fixed": 1, - "implemented": 1, - "resolved": 1 - }, - "positive_weights_sum": {}, - "negative_weights_sum": {} - }, - "doc": { - "positive_weights": { - "doc": 22.78125, - "bias": 6.489451027483932e-13, - "docs": 18.020324707031254, - "documentation": 22.781250000000004, - "book": 4, - "pr": 0.28125, - "memo": 3.75, - "spec": 23.730468749999996, - "compliance": 3.5999999999999996, - "eyeglasses": 3.5999999999999996, - "async": 3.75, - "functions": 3.75, - "generators": 2, - "bigint": 2, - "class": 3.75, - "fields": 3.75, - "classes": 2, - "decorators": 2, - "(legacy)": 2, - "do": 1.40625, - "expressions": 3.75, - "type": 2, - "update": 2, - "component": 0.28125, - "concurrent": 0.75, - "mode": 0.75, - "core": 0.75, - "utilities": 0.75, - "developer": 2, - "tools": 2, - "dom": 2, - "eslint": 2, - "rules": 2, - "hooks": 2, - "optimizing": 2, - "compiler": 2, - "reactis": 2, - "reconciler": 2, - "scheduler": 2, - "server": 2, - "rendering": 2, - "shallow": 2, - "renderer": 2, - "suspense": 2, - "test": 2, - "utils": 2, - "configuration": 0.5, - "confirmed": 0.5, - "conflicts": 0.5, - "contribution": 0.6666666666666667, - "welcome": 0.6666666666666667, - "critical": 0.5, - "csharp": 0.5, - "css": 0.5, - "css-select": 0.5, - "currency": 0.6666666666666667, - "(category)": 0.6666666666666667, - "defect": 0.5, - "dependencies": 0.5, - "dependency": 0.6666666666666667, - "related": 0.6666666666666667, - "design": 0.5, - "difficulty": 0.3125, - "challenging": 2, - "easy": 2, - "hard": 0.75, - "medium": 2, - "starter": 2, - "unknown": 0.8333333333333333, - "or": 0.8333333333333333, - "n": 0.8333333333333333, - "a": 0.8333333333333333, - "very": 0.75, - "discussion": 0.5, - "not": 0.75, - "merge": 0.75, - "duplicate": 2, - "electron": 2, - "enhancement": 2, - "enterprise": 2, - "enterprise-": 0.6666666666666667, - "-backport": 0.6666666666666667, - "es": 2, - "external": 2, - "externs": 2, - "feat": 0.6666666666666667, - "cli": 0.6666666666666667, - "babel": 2, - "cli-service": 2, - "build": 2, - "serve": 2, - "e": 2, - "e-cypress": 2, - "e-nightwatch": 2, - "plugin": 2, - "api": 2, - "pwa": 2, - "typescript": 2, - "ui": 2, - "unit-jest": 2, - "unit-mocha": 2, - "feature": 0.6666666666666667, - "request": 0.6666666666666667, - "feedback": 0.6666666666666667, - "requested": 0.6666666666666667, - "files": 2, - "first-timers-only": 2, - "flags": 2, - "flashsocket": 2, - "fontawesome": 0.6666666666666667, - "com": 0.6666666666666667, - "food": 2, - "freemasonry": 2, - "icons": 2, - "frontend": 2, - "future": 0.75, - "architecture": 0.75, - "enhancements": 0.75, - "crypto": 2, - "genders": 2, - "general": 2, - "js": 2, - "gh": 0.75, - "review": 0.75, - "accepted": 0.75, - "go": 0.8, - "client": 0.8, - "internal": 0.8, - "release": 0.8, - "good": 0.8, - "first": 0.8, - "issue": 0.8, - "+": 0.8, - "great": 2, - "insight": 2, - "greenkeeper": 2, - "hack": 2, - "hacked": 2, - "hacktoberfest": 2, - "handshakes": 2, - "has": 0.6666666666666667, - "bounty": 2, - "help": 0.75, - "wanted": 0.75, - "sos": 2, - "hi-pri": 2, - "high-priority": 2, - "hodor": 2, - "hot": 2, - "html": 2, - "htmlfile": 2, - "https": 2, - "icebox": 2, - "ie": 2, - "import": 2, - "in": 0.8333333333333333, - "progress": 0.8333333333333333, - "started": 2, - "infrastructure": 0.8, - "hammer": 0.8, - "and": 0.8, - "wrench": 0.8, - "installer": 2, - "cleanup": 2, - "internal-issue-created": 2, - "invalid": 2, - "ios": 2, - "jquery": 2, - "differences": 2, - "jsonp-polling": 2, - "kbfs": 2, - "lang-crystal": 2, - "lang-dart": 2, - "lang-elixir": 2, - "lang-go": 2, - "lang-julia": 2, - "lang-objc": 2, - "lang-r": 2, - "lang-scala": 2, - "legal": 2, - "library": 2, - "lint": 2, - "linux": 2, - "lks": 2, - "m": 2, - "s": 2, - "macos": 2, - "maintenance": 2, - "major": 2, - "mass": 2, - "purge": 2, - "minor": 2, - "mobile": 2, - "device": 2, - "support": 2, - "proxy": 2, - "modules": 2, - "must-triage": 2, - "namespaces": 2, - "need-info": 2, - "needs": 0.008230452674897124, - "example": 2, - "app": 2, - "failing": 2, - "browser": 2, - "testing": 2, - "changelog": 2, - "info": 2, - "more": 2, - "man": 2, - "shrugging": 2, - "repro": 2, - "triage": 2, - "needs-more-info": 2, - "needs-research": 2, - "new": 2, - "proposal": 2, - "best": 2, - "practice": 2, - "node": 2, - "next": 2, - "bug": 2, - "on": 2, - "hold": 2, - "open": 2, - "operations": 2, - "opinions": 2, - "needed": 2, - "optimisation": 2, - "other": 2, - "language": 2, - "integration": 2, - "p": 2, - "packaging": 2, - "parser": 2, - "parser-specific": 2, - "pending": 2, - "performance": 2, - "planned": 2, - "for": 2, - "pr-existing": 2, - "breaking": 0.8, - "change": 0.8, - "boom": 0.8, - "fix": 2, - "⬆️": 2, - "deprecation": 2, - "house": 2, - "merged": 0.8333333333333333, - "rocket": 2, - "polish": 2, - "nail": 2, - "care": 2, - "ready": 0.8333333333333333, - "to": 0.8333333333333333, - "be": 0.8333333333333333, - "reviewed-approved": 2, - "reviewed-changes-requested": 2, - "underlying": 2, - "unreviewed": 2, - "wip": 2, - "priority": 2, - "high": 2, - "low": 2, - "production": 2, - "project": 2, - "management": 2, - "question": 2, - "react": 2, - "flare": 2, - "native": 2, - "refactor": 2, - "regression": 2, - "alpha": 2, - "released": 2, - "reminder": 2, - "resolution": 2, - "information": 2, - "redirect": 2, - "revisitinfuture": 2, - "rfc": 2, - "ruby": 2, - "security": 2, - "shell": 2, - "socket": 2, - "io": 2, - "spam": 2, - "spammy": 2, - "stale": 2, - "status": 0.8333333333333333, - "heavy": 2, - "check": 2, - "mark": 2, - "available": 2, - "free": 2, - "cla": 2, - "signed": 2, - "code": 2, - "approved": 2, - "construction": 0.8333333333333333, - "worker": 0.8333333333333333, - "detective": 2, - "left": 2, - "out": 2, - "luggage": 2, - "stop": 2, - "sign": 2, - "deploy": 2, - "passport": 2, - "control": 2, - "waiting": 2, - "wontfix": 2, - "work": 2, - "suggestion": 2, - "syntax": 2, - "technical": 2, - "debt": 2, - "technical-debt": 2, - "tests": 2, - "tips": 2, - "todo": 2, - "spiral": 2, - "notepad": 2, - "translation": 2, - "travis-yml": 2, - "triage-done": 2, - "trivial": 2, - "archive": 2, - "community": 2, - "discuss": 2, - "speech": 2, - "balloon": 2, - "repeat": 2, - "bulb": 2, - "getting": 2, - "x": 2, - "non-library": 2, - "grey": 2, - "sendgrid": 2, - "vulnerability": 2, - "warning": 2, - "types": 2, - "unable": 2, - "reproduce": 2, - "unconfirmed": 2, - "upstream": 2, - "ux": 2, - "v": 2, - "website": 2, - "websocket": 2, - "weekly-digest": 2, - "windows": 2, - "writer-needed": 2, - "wrong": 2, - "repo": 2, - "xhr-polling": 2, - "-": 2, - "backlog": 2, - "working": 2, - "done": 2, - "backport": 2, - "arrow": 2, - "heading": 2, - "down": 2, - "pull": 2, - "font-face": 2, - "abandoned": 2, - "accessibility": 2, - "adapter": 2, - "advance": 2, - "workflow": 2, - "android": 2, - "angular": 2, - "animals": 2, - "answered": 2, - "area": 2, - "crash": 2, - "arrows": 2, - "automotive": 2, - "fa": 2, - "pro": 2, - "awaiting-review": 2, - "beginner-friendly": 2, - "beverage": 2, - "blocked": 2, - "blocker": 2, - "bootstrap": 2, - "brand": 2, - "icon": 2, - "safari": 2, - "report": 2, - "business": 2, - "c": 2, - "c++": 2, - "cannot": 2, - "cantfix": 2, - "cdn": 2, - "chat": 2, - "chore": 2, - "no": 2, - "yes": 2, - "closed": 2, - "due": 2, - "inactivity": 2, - "cmty": 2, - "bug-report": 2, - "feature-request": 2, - "cancelled": 2, - "fixed": 2, - "implemented": 2, - "resolved": 2 - }, - "negative_weights": { - "doc": 0.015625, - "bias": 7.358738582275542, - "docs": 0.000732421875, - "documentation": 0.0017361111111111114, - "book": 0.33333333333333337, - "pr": 0.590625, - "memo": 0.375, - "spec": 0.02109375, - "compliance": 0.4, - "eyeglasses": 0.4, - "async": 0.375, - "functions": 0.375, - "generators": 1, - "bigint": 1, - "class": 0.375, - "fields": 0.375, - "classes": 1, - "decorators": 1, - "(legacy)": 1, - "do": 0.703125, - "expressions": 0.375, - "type": 1, - "update": 1, - "component": 3.515625, - "concurrent": 1.875, - "mode": 1.875, - "core": 1.875, - "utilities": 1.875, - "developer": 1, - "tools": 1, - "dom": 1, - "eslint": 1, - "rules": 1, - "hooks": 1, - "optimizing": 1, - "compiler": 1, - "reactis": 1, - "reconciler": 1, - "scheduler": 1, - "server": 1, - "rendering": 1, - "shallow": 1, - "renderer": 1, - "suspense": 1, - "test": 1, - "utils": 1, - "configuration": 2.25, - "confirmed": 2.25, - "conflicts": 2.25, - "contribution": 2, - "welcome": 2, - "critical": 2.25, - "csharp": 2.25, - "css": 2.25, - "css-select": 2.25, - "currency": 2, - "(category)": 2, - "defect": 2.25, - "dependencies": 2.25, - "dependency": 2, - "related": 2, - "design": 2.25, - "difficulty": 3.28125, - "challenging": 1, - "easy": 1, - "hard": 1.875, - "medium": 1, - "starter": 1, - "unknown": 1.75, - "or": 1.75, - "n": 1.75, - "a": 1.75, - "very": 1.875, - "discussion": 2.25, - "not": 1.875, - "merge": 1.875, - "duplicate": 1, - "electron": 1, - "enhancement": 1, - "enterprise": 1, - "enterprise-": 2, - "-backport": 2, - "es": 1, - "external": 1, - "externs": 1, - "feat": 2, - "cli": 2, - "babel": 1, - "cli-service": 1, - "build": 1, - "serve": 1, - "e": 1, - "e-cypress": 1, - "e-nightwatch": 1, - "plugin": 1, - "api": 1, - "pwa": 1, - "typescript": 1, - "ui": 1, - "unit-jest": 1, - "unit-mocha": 1, - "feature": 2, - "request": 2, - "feedback": 2, - "requested": 2, - "files": 1, - "first-timers-only": 1, - "flags": 1, - "flashsocket": 1, - "fontawesome": 2, - "com": 2, - "food": 1, - "freemasonry": 1, - "icons": 1, - "frontend": 1, - "future": 1.875, - "architecture": 1.875, - "enhancements": 1.875, - "crypto": 1, - "genders": 1, - "general": 1, - "js": 1, - "gh": 1.875, - "review": 1.875, - "accepted": 1.875, - "go": 1.7999999999999998, - "client": 1.7999999999999998, - "internal": 1.7999999999999998, - "release": 1.7999999999999998, - "good": 1.7999999999999998, - "first": 1.7999999999999998, - "issue": 1.7999999999999998, - "+": 1.7999999999999998, - "great": 1, - "insight": 1, - "greenkeeper": 1, - "hack": 1, - "hacked": 1, - "hacktoberfest": 1, - "handshakes": 1, - "has": 2, - "bounty": 1, - "help": 1.875, - "wanted": 1.875, - "sos": 1, - "hi-pri": 1, - "high-priority": 1, - "hodor": 1, - "hot": 1, - "html": 1, - "htmlfile": 1, - "https": 1, - "icebox": 1, - "ie": 1, - "import": 1, - "in": 1.75, - "progress": 1.75, - "started": 1, - "infrastructure": 1.7999999999999998, - "hammer": 1.7999999999999998, - "and": 1.7999999999999998, - "wrench": 1.7999999999999998, - "installer": 1, - "cleanup": 1, - "internal-issue-created": 1, - "invalid": 1, - "ios": 1, - "jquery": 1, - "differences": 1, - "jsonp-polling": 1, - "kbfs": 1, - "lang-crystal": 1, - "lang-dart": 1, - "lang-elixir": 1, - "lang-go": 1, - "lang-julia": 1, - "lang-objc": 1, - "lang-r": 1, - "lang-scala": 1, - "legal": 1, - "library": 1, - "lint": 1, - "linux": 1, - "lks": 1, - "m": 1, - "s": 1, - "macos": 1, - "maintenance": 1, - "major": 1, - "mass": 1, - "purge": 1, - "minor": 1, - "mobile": 1, - "device": 1, - "support": 1, - "proxy": 1, - "modules": 1, - "must-triage": 1, - "namespaces": 1, - "need-info": 1, - "needs": 32, - "example": 1, - "app": 1, - "failing": 1, - "browser": 1, - "testing": 1, - "changelog": 1, - "info": 1, - "more": 1, - "man": 1, - "shrugging": 1, - "repro": 1, - "triage": 1, - "needs-more-info": 1, - "needs-research": 1, - "new": 1, - "proposal": 1, - "best": 1, - "practice": 1, - "node": 1, - "next": 1, - "bug": 1, - "on": 1, - "hold": 1, - "open": 1, - "operations": 1, - "opinions": 1, - "needed": 1, - "optimisation": 1, - "other": 1, - "language": 1, - "integration": 1, - "p": 1, - "packaging": 1, - "parser": 1, - "parser-specific": 1, - "pending": 1, - "performance": 1, - "planned": 1, - "for": 1, - "pr-existing": 1, - "breaking": 1.7999999999999998, - "change": 1.7999999999999998, - "boom": 1.7999999999999998, - "fix": 1, - "⬆️": 1, - "deprecation": 1, - "house": 1, - "merged": 1.75, - "rocket": 1, - "polish": 1, - "nail": 1, - "care": 1, - "ready": 1.75, - "to": 1.75, - "be": 1.75, - "reviewed-approved": 1, - "reviewed-changes-requested": 1, - "underlying": 1, - "unreviewed": 1, - "wip": 1, - "priority": 1, - "high": 1, - "low": 1, - "production": 1, - "project": 1, - "management": 1, - "question": 1, - "react": 1, - "flare": 1, - "native": 1, - "refactor": 1, - "regression": 1, - "alpha": 1, - "released": 1, - "reminder": 1, - "resolution": 1, - "information": 1, - "redirect": 1, - "revisitinfuture": 1, - "rfc": 1, - "ruby": 1, - "security": 1, - "shell": 1, - "socket": 1, - "io": 1, - "spam": 1, - "spammy": 1, - "stale": 1, - "status": 1.75, - "heavy": 1, - "check": 1, - "mark": 1, - "available": 1, - "free": 1, - "cla": 1, - "signed": 1, - "code": 1, - "approved": 1, - "construction": 1.75, - "worker": 1.75, - "detective": 1, - "left": 1, - "out": 1, - "luggage": 1, - "stop": 1, - "sign": 1, - "deploy": 1, - "passport": 1, - "control": 1, - "waiting": 1, - "wontfix": 1, - "work": 1, - "suggestion": 1, - "syntax": 1, - "technical": 1, - "debt": 1, - "technical-debt": 1, - "tests": 1, - "tips": 1, - "todo": 1, - "spiral": 1, - "notepad": 1, - "translation": 1, - "travis-yml": 1, - "triage-done": 1, - "trivial": 1, - "archive": 1, - "community": 1, - "discuss": 1, - "speech": 1, - "balloon": 1, - "repeat": 1, - "bulb": 1, - "getting": 1, - "x": 1, - "non-library": 1, - "grey": 1, - "sendgrid": 1, - "vulnerability": 1, - "warning": 1, - "types": 1, - "unable": 1, - "reproduce": 1, - "unconfirmed": 1, - "upstream": 1, - "ux": 1, - "v": 1, - "website": 1, - "websocket": 1, - "weekly-digest": 1, - "windows": 1, - "writer-needed": 1, - "wrong": 1, - "repo": 1, - "xhr-polling": 1, - "-": 1, - "backlog": 1, - "working": 1, - "done": 1, - "backport": 1, - "arrow": 1, - "heading": 1, - "down": 1, - "pull": 1, - "font-face": 1, - "abandoned": 1, - "accessibility": 1, - "adapter": 1, - "advance": 1, - "workflow": 1, - "android": 1, - "angular": 1, - "animals": 1, - "answered": 1, - "area": 1, - "crash": 1, - "arrows": 1, - "automotive": 1, - "fa": 1, - "pro": 1, - "awaiting-review": 1, - "beginner-friendly": 1, - "beverage": 1, - "blocked": 1, - "blocker": 1, - "bootstrap": 1, - "brand": 1, - "icon": 1, - "safari": 1, - "report": 1, - "business": 1, - "c": 1, - "c++": 1, - "cannot": 1, - "cantfix": 1, - "cdn": 1, - "chat": 1, - "chore": 1, - "no": 1, - "yes": 1, - "closed": 1, - "due": 1, - "inactivity": 1, - "cmty": 1, - "bug-report": 1, - "feature-request": 1, - "cancelled": 1, - "fixed": 1, - "implemented": 1, - "resolved": 1 - }, - "positive_weights_sum": {}, - "negative_weights_sum": {} - }, - "plugin": { - "positive_weights": { - "external": 22.78125, - "bias": 6.22284645687699e-8, - "externs": 22.78125, - "feat": 0.5493164062500002, - "plugin": 13.18359375, - "api": 4.94384765625, - "component": 0.28125, - "concurrent": 0.75, - "mode": 0.75, - "core": 0.75, - "utilities": 0.75, - "developer": 2, - "tools": 2, - "dom": 2, - "eslint": 2, - "rules": 2, - "hooks": 2, - "optimizing": 2, - "compiler": 2, - "reactis": 2, - "reconciler": 2, - "scheduler": 2, - "server": 2, - "rendering": 2, - "shallow": 2, - "renderer": 2, - "suspense": 2, - "test": 2, - "utils": 2, - "configuration": 0.5, - "confirmed": 0.5, - "conflicts": 0.5, - "contribution": 0.6666666666666667, - "welcome": 0.6666666666666667, - "critical": 0.5, - "csharp": 0.5, - "css": 0.5, - "css-select": 0.5, - "currency": 0.6666666666666667, - "(category)": 0.6666666666666667, - "defect": 2, - "dependencies": 2, - "dependency": 0.6666666666666667, - "related": 0.6666666666666667, - "design": 2, - "difficulty": 0.8333333333333334, - "challenging": 2, - "easy": 2, - "hard": 2, - "medium": 2, - "starter": 2, - "unknown": 0.8333333333333334, - "or": 0.8333333333333334, - "n": 0.8333333333333334, - "a": 0.8333333333333334, - "very": 2, - "discussion": 2, - "do": 0.75, - "not": 0.75, - "merge": 0.75, - "doc": 2, - "docs": 2, - "documentation": 2, - "book": 2, - "duplicate": 2, - "electron": 2, - "enhancement": 2, - "enterprise": 2, - "enterprise-": 2, - "-backport": 2, - "es": 2, - "cli": 0.6666666666666667, - "babel": 0.6666666666666667, - "cli-service": 0.75, - "build": 0.75, - "serve": 2, - "e": 2, - "e-cypress": 2, - "e-nightwatch": 2, - "pwa": 2, - "typescript": 2, - "ui": 2, - "unit-jest": 2, - "unit-mocha": 2, - "feature": 2, - "request": 2, - "feedback": 2, - "requested": 2, - "files": 2, - "first-timers-only": 2, - "flags": 2, - "flashsocket": 2, - "fontawesome": 2, - "com": 2, - "food": 2, - "freemasonry": 2, - "icons": 2, - "frontend": 2, - "future": 2, - "architecture": 2, - "enhancements": 2, - "crypto": 2, - "genders": 2, - "general": 2, - "js": 2, - "gh": 2, - "review": 2, - "accepted": 2, - "go": 2, - "client": 2, - "internal": 2, - "release": 2, - "good": 2, - "first": 2, - "issue": 2, - "+": 2, - "great": 2, - "insight": 2, - "greenkeeper": 2, - "hack": 2, - "hacked": 2, - "hacktoberfest": 2, - "handshakes": 2, - "has": 2, - "bounty": 2, - "pr": 2, - "help": 2, - "wanted": 2, - "sos": 2, - "hi-pri": 2, - "high-priority": 2, - "hodor": 2, - "hot": 2, - "html": 2, - "htmlfile": 2, - "https": 2, - "icebox": 2, - "ie": 2, - "import": 2, - "in": 0.8, - "progress": 2, - "started": 2, - "infrastructure": 2, - "hammer": 2, - "and": 2, - "wrench": 2, - "installer": 2, - "cleanup": 2, - "internal-issue-created": 2, - "invalid": 2, - "ios": 2, - "jquery": 2, - "differences": 2, - "jsonp-polling": 2, - "kbfs": 2, - "lang-crystal": 2, - "lang-dart": 2, - "lang-elixir": 2, - "lang-go": 2, - "lang-julia": 2, - "lang-objc": 2, - "lang-r": 2, - "lang-scala": 2, - "legal": 2, - "library": 2, - "lint": 2, - "linux": 2, - "lks": 2, - "m": 2, - "s": 2, - "macos": 2, - "maintenance": 2, - "major": 2, - "mass": 2, - "purge": 2, - "minor": 2, - "mobile": 2, - "device": 2, - "support": 2, - "proxy": 2, - "modules": 2, - "must-triage": 2, - "namespaces": 2, - "need-info": 2, - "needs": 0.8333333333333334, - "example": 2, - "app": 2, - "failing": 2, - "browser": 2, - "testing": 2, - "changelog": 2, - "info": 0.8333333333333334, - "more": 0.8333333333333334, - "man": 0.8333333333333334, - "shrugging": 0.8333333333333334, - "repro": 2, - "triage": 2, - "needs-more-info": 2, - "needs-research": 2, - "new": 0.75, - "proposal": 0.75, - "best": 2, - "practice": 2, - "node": 2, - "next": 2, - "bug": 2, - "on": 2, - "hold": 2, - "open": 2, - "operations": 2, - "opinions": 2, - "needed": 2, - "optimisation": 2, - "other": 2, - "language": 2, - "integration": 2, - "p": 2, - "packaging": 2, - "parser": 2, - "parser-specific": 2, - "pending": 2, - "performance": 2, - "planned": 2, - "for": 2, - "pr-existing": 2, - "breaking": 2, - "change": 2, - "boom": 2, - "fix": 2, - "⬆️": 2, - "deprecation": 2, - "memo": 2, - "house": 2, - "merged": 2, - "rocket": 2, - "polish": 2, - "nail": 2, - "care": 2, - "ready": 2, - "to": 2, - "be": 2, - "reviewed-approved": 2, - "reviewed-changes-requested": 2, - "spec": 2, - "compliance": 2, - "eyeglasses": 2, - "underlying": 2, - "unreviewed": 2, - "wip": 2, - "priority": 2, - "high": 2, - "low": 2, - "production": 2, - "project": 2, - "management": 2, - "question": 2, - "react": 2, - "flare": 2, - "native": 2, - "refactor": 2, - "regression": 2, - "alpha": 2, - "released": 2, - "reminder": 2, - "resolution": 2, - "information": 2, - "redirect": 2, - "revisitinfuture": 2, - "rfc": 2, - "ruby": 2, - "security": 2, - "shell": 2, - "socket": 2, - "io": 2, - "spam": 2, - "spammy": 2, - "async": 2, - "functions": 2, - "generators": 2, - "bigint": 2, - "class": 2, - "fields": 2, - "classes": 2, - "decorators": 2, - "(legacy)": 2, - "expressions": 2, - "stale": 2, - "status": 2, - "heavy": 0.8333333333333334, - "check": 0.8333333333333334, - "mark": 0.8333333333333334, - "available": 0.8, - "free": 2, - "cla": 0.8333333333333334, - "signed": 0.8333333333333334, - "code": 2, - "approved": 2, - "construction": 2, - "worker": 2, - "detective": 2, - "left": 2, - "out": 2, - "luggage": 2, - "stop": 2, - "sign": 2, - "deploy": 2, - "passport": 2, - "control": 2, - "waiting": 2, - "wontfix": 2, - "work": 2, - "suggestion": 2, - "syntax": 2, - "technical": 2, - "debt": 2, - "technical-debt": 2, - "tests": 2, - "tips": 2, - "todo": 2, - "spiral": 2, - "notepad": 2, - "translation": 2, - "travis-yml": 2, - "triage-done": 2, - "trivial": 2, - "type": 2, - "archive": 2, - "community": 2, - "discuss": 2, - "speech": 2, - "balloon": 2, - "update": 2, - "repeat": 2, - "bulb": 2, - "getting": 2, - "x": 2, - "non-library": 2, - "grey": 2, - "sendgrid": 2, - "vulnerability": 2, - "warning": 2, - "types": 2, - "unable": 2, - "reproduce": 2, - "unconfirmed": 2, - "upstream": 2, - "ux": 2, - "v": 2, - "website": 2, - "websocket": 2, - "weekly-digest": 2, - "windows": 2, - "writer-needed": 2, - "wrong": 2, - "repo": 2, - "xhr-polling": 2, - "adapter": 10.125, - "-": 0.6666666666666667, - "backlog": 0.6666666666666667, - "working": 2, - "done": 2, - "backport": 2, - "arrow": 0.8, - "heading": 0.8, - "down": 0.8, - "pull": 0.8, - "font-face": 2, - "abandoned": 2, - "accessibility": 2, - "advance": 2, - "workflow": 2, - "android": 2, - "angular": 2, - "animals": 2, - "answered": 2, - "area": 2, - "crash": 2, - "arrows": 2, - "automotive": 2, - "fa": 0.8, - "pro": 0.8, - "awaiting-review": 2, - "beginner-friendly": 2, - "beverage": 2, - "blocked": 2, - "blocker": 2, - "bootstrap": 2, - "brand": 2, - "icon": 2, - "safari": 2, - "report": 2, - "business": 2, - "c": 2, - "c++": 2, - "cannot": 2, - "cantfix": 2, - "cdn": 2, - "chat": 2, - "chore": 2, - "no": 2, - "yes": 2, - "closed": 2, - "due": 2, - "inactivity": 2, - "cmty": 2, - "bug-report": 2, - "feature-request": 2, - "cancelled": 2, - "fixed": 2, - "implemented": 2, - "resolved": 2 - }, - "negative_weights": { - "external": 0.015625, - "bias": 6.049743894154572, - "externs": 0.015625, - "feat": 0.3955078125, - "plugin": 0.052734375, - "api": 0.098876953125, - "component": 3.515625, - "concurrent": 1.875, - "mode": 1.875, - "core": 1.875, - "utilities": 1.875, - "developer": 1, - "tools": 1, - "dom": 1, - "eslint": 1, - "rules": 1, - "hooks": 1, - "optimizing": 1, - "compiler": 1, - "reactis": 1, - "reconciler": 1, - "scheduler": 1, - "server": 1, - "rendering": 1, - "shallow": 1, - "renderer": 1, - "suspense": 1, - "test": 1, - "utils": 1, - "configuration": 2.25, - "confirmed": 2.25, - "conflicts": 2.25, - "contribution": 2, - "welcome": 2, - "critical": 2.25, - "csharp": 2.25, - "css": 2.25, - "css-select": 2.25, - "currency": 2, - "(category)": 2, - "defect": 1, - "dependencies": 1, - "dependency": 2, - "related": 2, - "design": 1, - "difficulty": 1.75, - "challenging": 1, - "easy": 1, - "hard": 1, - "medium": 1, - "starter": 1, - "unknown": 1.75, - "or": 1.75, - "n": 1.75, - "a": 1.75, - "very": 1, - "discussion": 1, - "do": 1.875, - "not": 1.875, - "merge": 1.875, - "doc": 1, - "docs": 1, - "documentation": 1, - "book": 1, - "duplicate": 1, - "electron": 1, - "enhancement": 1, - "enterprise": 1, - "enterprise-": 1, - "-backport": 1, - "es": 1, - "cli": 2, - "babel": 2, - "cli-service": 1.875, - "build": 1.875, - "serve": 1, - "e": 1, - "e-cypress": 1, - "e-nightwatch": 1, - "pwa": 1, - "typescript": 1, - "ui": 1, - "unit-jest": 1, - "unit-mocha": 1, - "feature": 1, - "request": 1, - "feedback": 1, - "requested": 1, - "files": 1, - "first-timers-only": 1, - "flags": 1, - "flashsocket": 1, - "fontawesome": 1, - "com": 1, - "food": 1, - "freemasonry": 1, - "icons": 1, - "frontend": 1, - "future": 1, - "architecture": 1, - "enhancements": 1, - "crypto": 1, - "genders": 1, - "general": 1, - "js": 1, - "gh": 1, - "review": 1, - "accepted": 1, - "go": 1, - "client": 1, - "internal": 1, - "release": 1, - "good": 1, - "first": 1, - "issue": 1, - "+": 1, - "great": 1, - "insight": 1, - "greenkeeper": 1, - "hack": 1, - "hacked": 1, - "hacktoberfest": 1, - "handshakes": 1, - "has": 1, - "bounty": 1, - "pr": 1, - "help": 1, - "wanted": 1, - "sos": 1, - "hi-pri": 1, - "high-priority": 1, - "hodor": 1, - "hot": 1, - "html": 1, - "htmlfile": 1, - "https": 1, - "icebox": 1, - "ie": 1, - "import": 1, - "in": 1.7999999999999998, - "progress": 1, - "started": 1, - "infrastructure": 1, - "hammer": 1, - "and": 1, - "wrench": 1, - "installer": 1, - "cleanup": 1, - "internal-issue-created": 1, - "invalid": 1, - "ios": 1, - "jquery": 1, - "differences": 1, - "jsonp-polling": 1, - "kbfs": 1, - "lang-crystal": 1, - "lang-dart": 1, - "lang-elixir": 1, - "lang-go": 1, - "lang-julia": 1, - "lang-objc": 1, - "lang-r": 1, - "lang-scala": 1, - "legal": 1, - "library": 1, - "lint": 1, - "linux": 1, - "lks": 1, - "m": 1, - "s": 1, - "macos": 1, - "maintenance": 1, - "major": 1, - "mass": 1, - "purge": 1, - "minor": 1, - "mobile": 1, - "device": 1, - "support": 1, - "proxy": 1, - "modules": 1, - "must-triage": 1, - "namespaces": 1, - "need-info": 1, - "needs": 1.75, - "example": 1, - "app": 1, - "failing": 1, - "browser": 1, - "testing": 1, - "changelog": 1, - "info": 1.75, - "more": 1.75, - "man": 1.75, - "shrugging": 1.75, - "repro": 1, - "triage": 1, - "needs-more-info": 1, - "needs-research": 1, - "new": 1.875, - "proposal": 1.875, - "best": 1, - "practice": 1, - "node": 1, - "next": 1, - "bug": 1, - "on": 1, - "hold": 1, - "open": 1, - "operations": 1, - "opinions": 1, - "needed": 1, - "optimisation": 1, - "other": 1, - "language": 1, - "integration": 1, - "p": 1, - "packaging": 1, - "parser": 1, - "parser-specific": 1, - "pending": 1, - "performance": 1, - "planned": 1, - "for": 1, - "pr-existing": 1, - "breaking": 1, - "change": 1, - "boom": 1, - "fix": 1, - "⬆️": 1, - "deprecation": 1, - "memo": 1, - "house": 1, - "merged": 1, - "rocket": 1, - "polish": 1, - "nail": 1, - "care": 1, - "ready": 1, - "to": 1, - "be": 1, - "reviewed-approved": 1, - "reviewed-changes-requested": 1, - "spec": 1, - "compliance": 1, - "eyeglasses": 1, - "underlying": 1, - "unreviewed": 1, - "wip": 1, - "priority": 1, - "high": 1, - "low": 1, - "production": 1, - "project": 1, - "management": 1, - "question": 1, - "react": 1, - "flare": 1, - "native": 1, - "refactor": 1, - "regression": 1, - "alpha": 1, - "released": 1, - "reminder": 1, - "resolution": 1, - "information": 1, - "redirect": 1, - "revisitinfuture": 1, - "rfc": 1, - "ruby": 1, - "security": 1, - "shell": 1, - "socket": 1, - "io": 1, - "spam": 1, - "spammy": 1, - "async": 1, - "functions": 1, - "generators": 1, - "bigint": 1, - "class": 1, - "fields": 1, - "classes": 1, - "decorators": 1, - "(legacy)": 1, - "expressions": 1, - "stale": 1, - "status": 1, - "heavy": 1.75, - "check": 1.75, - "mark": 1.75, - "available": 1.7999999999999998, - "free": 1, - "cla": 1.75, - "signed": 1.75, - "code": 1, - "approved": 1, - "construction": 1, - "worker": 1, - "detective": 1, - "left": 1, - "out": 1, - "luggage": 1, - "stop": 1, - "sign": 1, - "deploy": 1, - "passport": 1, - "control": 1, - "waiting": 1, - "wontfix": 1, - "work": 1, - "suggestion": 1, - "syntax": 1, - "technical": 1, - "debt": 1, - "technical-debt": 1, - "tests": 1, - "tips": 1, - "todo": 1, - "spiral": 1, - "notepad": 1, - "translation": 1, - "travis-yml": 1, - "triage-done": 1, - "trivial": 1, - "type": 1, - "archive": 1, - "community": 1, - "discuss": 1, - "speech": 1, - "balloon": 1, - "update": 1, - "repeat": 1, - "bulb": 1, - "getting": 1, - "x": 1, - "non-library": 1, - "grey": 1, - "sendgrid": 1, - "vulnerability": 1, - "warning": 1, - "types": 1, - "unable": 1, - "reproduce": 1, - "unconfirmed": 1, - "upstream": 1, - "ux": 1, - "v": 1, - "website": 1, - "websocket": 1, - "weekly-digest": 1, - "windows": 1, - "writer-needed": 1, - "wrong": 1, - "repo": 1, - "xhr-polling": 1, - "adapter": 0.0625, - "-": 2, - "backlog": 2, - "working": 1, - "done": 1, - "backport": 1, - "arrow": 1.7999999999999998, - "heading": 1.7999999999999998, - "down": 1.7999999999999998, - "pull": 1.7999999999999998, - "font-face": 1, - "abandoned": 1, - "accessibility": 1, - "advance": 1, - "workflow": 1, - "android": 1, - "angular": 1, - "animals": 1, - "answered": 1, - "area": 1, - "crash": 1, - "arrows": 1, - "automotive": 1, - "fa": 1.7999999999999998, - "pro": 1.7999999999999998, - "awaiting-review": 1, - "beginner-friendly": 1, - "beverage": 1, - "blocked": 1, - "blocker": 1, - "bootstrap": 1, - "brand": 1, - "icon": 1, - "safari": 1, - "report": 1, - "business": 1, - "c": 1, - "c++": 1, - "cannot": 1, - "cantfix": 1, - "cdn": 1, - "chat": 1, - "chore": 1, - "no": 1, - "yes": 1, - "closed": 1, - "due": 1, - "inactivity": 1, - "cmty": 1, - "bug-report": 1, - "feature-request": 1, - "cancelled": 1, - "fixed": 1, - "implemented": 1, - "resolved": 1 - }, - "positive_weights_sum": {}, - "negative_weights_sum": {} - }, - "infra": { - "positive_weights": { - "greenkeeper": 22.78125, - "bias": 1.890189611276385e-8, - "infrastructure": 22.781249999999993, - "hammer": 6.479999999999999, - "and": 6.479999999999999, - "wrench": 6.479999999999999, - "travis-yml": 22.78125, - "component": 0.37078857421875, - "concurrent": 0.75, - "mode": 0.75, - "core": 0.75, - "utilities": 0.75, - "developer": 4.94384765625, - "tools": 0.75, - "dom": 2, - "eslint": 2, - "rules": 2, - "hooks": 2, - "optimizing": 2, - "compiler": 2, - "reactis": 2, - "reconciler": 2, - "scheduler": 2, - "server": 2, - "rendering": 2, - "shallow": 2, - "renderer": 2, - "suspense": 2, - "test": 2, - "utils": 2, - "configuration": 0.5, - "confirmed": 0.5, - "conflicts": 0.5, - "contribution": 0.6666666666666667, - "welcome": 0.6666666666666667, - "critical": 0.5, - "csharp": 0.5, - "css": 0.5, - "css-select": 2, - "currency": 0.6666666666666667, - "(category)": 0.6666666666666667, - "defect": 2, - "dependencies": 2, - "dependency": 2, - "related": 2, - "design": 2, - "difficulty": 0.8333333333333333, - "challenging": 2, - "easy": 2, - "hard": 2, - "medium": 2, - "starter": 2, - "unknown": 0.8333333333333333, - "or": 0.8333333333333333, - "n": 0.8333333333333333, - "a": 0.8333333333333333, - "very": 2, - "discussion": 2, - "do": 0.75, - "not": 0.75, - "merge": 0.75, - "doc": 2, - "docs": 2, - "documentation": 2, - "book": 2, - "duplicate": 2, - "electron": 2, - "enhancement": 2, - "enterprise": 2, - "enterprise-": 2, - "-backport": 2, - "es": 2, - "external": 2, - "externs": 2, - "feat": 0.75, - "cli": 2, - "babel": 2, - "cli-service": 0.75, - "build": 2.63671875, - "serve": 2, - "e": 2, - "e-cypress": 2, - "e-nightwatch": 2, - "plugin": 2, - "api": 2, - "pwa": 2, - "typescript": 2, - "ui": 2, - "unit-jest": 2, - "unit-mocha": 2, - "feature": 0.75, - "request": 0.75, - "feedback": 2, - "requested": 2, - "files": 2, - "first-timers-only": 2, - "flags": 2, - "flashsocket": 2, - "fontawesome": 2, - "com": 2, - "food": 2, - "freemasonry": 2, - "icons": 2, - "frontend": 2, - "future": 2, - "architecture": 2, - "enhancements": 2, - "crypto": 2, - "genders": 2, - "general": 2, - "js": 2, - "gh": 2, - "review": 2, - "accepted": 2, - "go": 0.8, - "client": 0.8, - "internal": 0.8, - "release": 0.8, - "good": 0.8, - "first": 0.8, - "issue": 0.8, - "+": 0.8, - "great": 2, - "insight": 2, - "hack": 2, - "hacked": 2, - "hacktoberfest": 2, - "handshakes": 2, - "has": 2, - "bounty": 2, - "pr": 2, - "help": 2, - "wanted": 2, - "sos": 2, - "hi-pri": 2, - "high-priority": 2, - "hodor": 2, - "hot": 2, - "html": 2, - "htmlfile": 2, - "https": 2, - "icebox": 2, - "ie": 2, - "import": 2, - "in": 0.8, - "progress": 2, - "started": 2, - "installer": 2, - "cleanup": 2, - "internal-issue-created": 2, - "invalid": 2, - "ios": 2, - "jquery": 2, - "differences": 2, - "jsonp-polling": 2, - "kbfs": 2, - "lang-crystal": 2, - "lang-dart": 2, - "lang-elixir": 2, - "lang-go": 2, - "lang-julia": 2, - "lang-objc": 2, - "lang-r": 2, - "lang-scala": 2, - "legal": 2, - "library": 2, - "lint": 2, - "linux": 2, - "lks": 2, - "m": 2, - "s": 2, - "macos": 2, - "maintenance": 2, - "major": 2, - "mass": 2, - "purge": 2, - "minor": 2, - "mobile": 2, - "device": 2, - "support": 2, - "proxy": 2, - "modules": 2, - "must-triage": 2, - "namespaces": 2, - "need-info": 2, - "needs": 0.8333333333333333, - "example": 2, - "app": 2, - "failing": 2, - "browser": 2, - "testing": 2, - "changelog": 2, - "info": 0.8333333333333333, - "more": 0.8333333333333333, - "man": 0.8333333333333333, - "shrugging": 0.8333333333333333, - "repro": 2, - "triage": 2, - "needs-more-info": 2, - "needs-research": 2, - "new": 2, - "proposal": 2, - "best": 2, - "practice": 2, - "node": 2, - "next": 2, - "bug": 2, - "on": 0.8333333333333333, - "hold": 0.8333333333333333, - "open": 2, - "operations": 2, - "opinions": 2, - "needed": 2, - "optimisation": 2, - "other": 2, - "language": 2, - "integration": 2, - "p": 2, - "packaging": 2, - "parser": 2, - "parser-specific": 2, - "pending": 2, - "performance": 2, - "planned": 2, - "for": 2, - "pr-existing": 2, - "breaking": 2, - "change": 2, - "boom": 2, - "fix": 2, - "⬆️": 2, - "deprecation": 2, - "memo": 2, - "house": 2, - "merged": 2, - "rocket": 0.75, - "polish": 2, - "nail": 2, - "care": 2, - "ready": 2, - "to": 0.8, - "be": 2, - "reviewed-approved": 2, - "reviewed-changes-requested": 2, - "spec": 2, - "compliance": 2, - "eyeglasses": 2, - "underlying": 2, - "unreviewed": 2, - "wip": 2, - "priority": 2, - "high": 2, - "low": 2, - "production": 2, - "project": 2, - "management": 2, - "question": 0.75, - "react": 2, - "flare": 2, - "native": 2, - "refactor": 2, - "regression": 2, - "alpha": 2, - "released": 2, - "reminder": 2, - "resolution": 2, - "information": 2, - "redirect": 2, - "revisitinfuture": 2, - "rfc": 2, - "ruby": 2, - "security": 2, - "shell": 2, - "socket": 2, - "io": 2, - "spam": 2, - "spammy": 2, - "async": 2, - "functions": 2, - "generators": 2, - "bigint": 2, - "class": 2, - "fields": 2, - "classes": 2, - "decorators": 2, - "(legacy)": 2, - "expressions": 2, - "stale": 2, - "status": 0.8333333333333333, - "heavy": 0.8333333333333333, - "check": 0.8333333333333333, - "mark": 0.8333333333333333, - "available": 0.8, - "free": 2, - "cla": 0.8333333333333333, - "signed": 0.8333333333333333, - "code": 2, - "approved": 2, - "construction": 2, - "worker": 2, - "detective": 2, - "left": 2, - "out": 2, - "luggage": 2, - "stop": 0.8333333333333333, - "sign": 0.8333333333333333, - "deploy": 2, - "passport": 2, - "control": 2, - "waiting": 2, - "wontfix": 2, - "work": 2, - "suggestion": 2, - "syntax": 2, - "technical": 2, - "debt": 2, - "technical-debt": 2, - "tests": 2, - "tips": 2, - "todo": 2, - "spiral": 2, - "notepad": 2, - "translation": 2, - "triage-done": 2, - "trivial": 2, - "type": 2, - "archive": 2, - "community": 2, - "discuss": 2, - "speech": 0.75, - "balloon": 0.75, - "update": 2, - "repeat": 2, - "bulb": 2, - "getting": 2, - "x": 0.6666666666666667, - "non-library": 2, - "grey": 2, - "sendgrid": 2, - "vulnerability": 2, - "warning": 2, - "types": 2, - "unable": 2, - "reproduce": 2, - "unconfirmed": 2, - "upstream": 2, - "ux": 2, - "v": 2, - "website": 2, - "websocket": 2, - "weekly-digest": 2, - "windows": 2, - "writer-needed": 2, - "wrong": 2, - "repo": 2, - "xhr-polling": 2, - "advance": 13.18359375, - "workflow": 13.18359375, - "-": 0.6666666666666667, - "backlog": 0.6666666666666667, - "working": 2, - "done": 2, - "backport": 0.6666666666666667, - "arrow": 0.8, - "heading": 0.8, - "down": 0.8, - "pull": 0.8, - "font-face": 2, - "abandoned": 2, - "accessibility": 2, - "adapter": 2, - "android": 2, - "angular": 2, - "animals": 2, - "answered": 2, - "area": 2, - "crash": 2, - "arrows": 2, - "automotive": 2, - "fa": 0.8, - "pro": 0.8, - "awaiting-review": 2, - "beginner-friendly": 2, - "beverage": 2, - "blocked": 2, - "blocker": 2, - "bootstrap": 2, - "brand": 2, - "icon": 2, - "safari": 2, - "report": 2, - "business": 2, - "c": 2, - "c++": 2, - "cannot": 2, - "cantfix": 2, - "cdn": 2, - "chat": 2, - "chore": 2, - "no": 2, - "yes": 2, - "closed": 0.8, - "due": 0.8, - "inactivity": 0.8, - "cmty": 2, - "bug-report": 2, - "feature-request": 2, - "cancelled": 2, - "fixed": 2, - "implemented": 2, - "resolved": 2 - }, - "negative_weights": { - "greenkeeper": 0.015625, - "bias": 8.682705869588654, - "infrastructure": 0.022500000000000006, - "hammer": 0.16000000000000003, - "and": 0.16000000000000003, - "wrench": 0.16000000000000003, - "travis-yml": 0.015625, - "component": 0.926971435546875, - "concurrent": 1.875, - "mode": 1.875, - "core": 1.875, - "utilities": 1.875, - "developer": 0.098876953125, - "tools": 1.875, - "dom": 1, - "eslint": 1, - "rules": 1, - "hooks": 1, - "optimizing": 1, - "compiler": 1, - "reactis": 1, - "reconciler": 1, - "scheduler": 1, - "server": 1, - "rendering": 1, - "shallow": 1, - "renderer": 1, - "suspense": 1, - "test": 1, - "utils": 1, - "configuration": 2.25, - "confirmed": 2.25, - "conflicts": 2.25, - "contribution": 2, - "welcome": 2, - "critical": 2.25, - "csharp": 2.25, - "css": 2.25, - "css-select": 1, - "currency": 2, - "(category)": 2, - "defect": 1, - "dependencies": 1, - "dependency": 1, - "related": 1, - "design": 1, - "difficulty": 1.75, - "challenging": 1, - "easy": 1, - "hard": 1, - "medium": 1, - "starter": 1, - "unknown": 1.75, - "or": 1.75, - "n": 1.75, - "a": 1.75, - "very": 1, - "discussion": 1, - "do": 1.875, - "not": 1.875, - "merge": 1.875, - "doc": 1, - "docs": 1, - "documentation": 1, - "book": 1, - "duplicate": 1, - "electron": 1, - "enhancement": 1, - "enterprise": 1, - "enterprise-": 1, - "-backport": 1, - "es": 1, - "external": 1, - "externs": 1, - "feat": 1.875, - "cli": 1, - "babel": 1, - "cli-service": 1.875, - "build": 0.263671875, - "serve": 1, - "e": 1, - "e-cypress": 1, - "e-nightwatch": 1, - "plugin": 1, - "api": 1, - "pwa": 1, - "typescript": 1, - "ui": 1, - "unit-jest": 1, - "unit-mocha": 1, - "feature": 1.875, - "request": 1.875, - "feedback": 1, - "requested": 1, - "files": 1, - "first-timers-only": 1, - "flags": 1, - "flashsocket": 1, - "fontawesome": 1, - "com": 1, - "food": 1, - "freemasonry": 1, - "icons": 1, - "frontend": 1, - "future": 1, - "architecture": 1, - "enhancements": 1, - "crypto": 1, - "genders": 1, - "general": 1, - "js": 1, - "gh": 1, - "review": 1, - "accepted": 1, - "go": 1.7999999999999998, - "client": 1.7999999999999998, - "internal": 1.7999999999999998, - "release": 1.7999999999999998, - "good": 1.7999999999999998, - "first": 1.7999999999999998, - "issue": 1.7999999999999998, - "+": 1.7999999999999998, - "great": 1, - "insight": 1, - "hack": 1, - "hacked": 1, - "hacktoberfest": 1, - "handshakes": 1, - "has": 1, - "bounty": 1, - "pr": 1, - "help": 1, - "wanted": 1, - "sos": 1, - "hi-pri": 1, - "high-priority": 1, - "hodor": 1, - "hot": 1, - "html": 1, - "htmlfile": 1, - "https": 1, - "icebox": 1, - "ie": 1, - "import": 1, - "in": 1.7999999999999998, - "progress": 1, - "started": 1, - "installer": 1, - "cleanup": 1, - "internal-issue-created": 1, - "invalid": 1, - "ios": 1, - "jquery": 1, - "differences": 1, - "jsonp-polling": 1, - "kbfs": 1, - "lang-crystal": 1, - "lang-dart": 1, - "lang-elixir": 1, - "lang-go": 1, - "lang-julia": 1, - "lang-objc": 1, - "lang-r": 1, - "lang-scala": 1, - "legal": 1, - "library": 1, - "lint": 1, - "linux": 1, - "lks": 1, - "m": 1, - "s": 1, - "macos": 1, - "maintenance": 1, - "major": 1, - "mass": 1, - "purge": 1, - "minor": 1, - "mobile": 1, - "device": 1, - "support": 1, - "proxy": 1, - "modules": 1, - "must-triage": 1, - "namespaces": 1, - "need-info": 1, - "needs": 1.75, - "example": 1, - "app": 1, - "failing": 1, - "browser": 1, - "testing": 1, - "changelog": 1, - "info": 1.75, - "more": 1.75, - "man": 1.75, - "shrugging": 1.75, - "repro": 1, - "triage": 1, - "needs-more-info": 1, - "needs-research": 1, - "new": 1, - "proposal": 1, - "best": 1, - "practice": 1, - "node": 1, - "next": 1, - "bug": 1, - "on": 1.75, - "hold": 1.75, - "open": 1, - "operations": 1, - "opinions": 1, - "needed": 1, - "optimisation": 1, - "other": 1, - "language": 1, - "integration": 1, - "p": 1, - "packaging": 1, - "parser": 1, - "parser-specific": 1, - "pending": 1, - "performance": 1, - "planned": 1, - "for": 1, - "pr-existing": 1, - "breaking": 1, - "change": 1, - "boom": 1, - "fix": 1, - "⬆️": 1, - "deprecation": 1, - "memo": 1, - "house": 1, - "merged": 1, - "rocket": 1.875, - "polish": 1, - "nail": 1, - "care": 1, - "ready": 1, - "to": 1.7999999999999998, - "be": 1, - "reviewed-approved": 1, - "reviewed-changes-requested": 1, - "spec": 1, - "compliance": 1, - "eyeglasses": 1, - "underlying": 1, - "unreviewed": 1, - "wip": 1, - "priority": 1, - "high": 1, - "low": 1, - "production": 1, - "project": 1, - "management": 1, - "question": 1.875, - "react": 1, - "flare": 1, - "native": 1, - "refactor": 1, - "regression": 1, - "alpha": 1, - "released": 1, - "reminder": 1, - "resolution": 1, - "information": 1, - "redirect": 1, - "revisitinfuture": 1, - "rfc": 1, - "ruby": 1, - "security": 1, - "shell": 1, - "socket": 1, - "io": 1, - "spam": 1, - "spammy": 1, - "async": 1, - "functions": 1, - "generators": 1, - "bigint": 1, - "class": 1, - "fields": 1, - "classes": 1, - "decorators": 1, - "(legacy)": 1, - "expressions": 1, - "stale": 1, - "status": 1.75, - "heavy": 1.75, - "check": 1.75, - "mark": 1.75, - "available": 1.7999999999999998, - "free": 1, - "cla": 1.75, - "signed": 1.75, - "code": 1, - "approved": 1, - "construction": 1, - "worker": 1, - "detective": 1, - "left": 1, - "out": 1, - "luggage": 1, - "stop": 1.75, - "sign": 1.75, - "deploy": 1, - "passport": 1, - "control": 1, - "waiting": 1, - "wontfix": 1, - "work": 1, - "suggestion": 1, - "syntax": 1, - "technical": 1, - "debt": 1, - "technical-debt": 1, - "tests": 1, - "tips": 1, - "todo": 1, - "spiral": 1, - "notepad": 1, - "translation": 1, - "triage-done": 1, - "trivial": 1, - "type": 1, - "archive": 1, - "community": 1, - "discuss": 1, - "speech": 1.875, - "balloon": 1.875, - "update": 1, - "repeat": 1, - "bulb": 1, - "getting": 1, - "x": 2, - "non-library": 1, - "grey": 1, - "sendgrid": 1, - "vulnerability": 1, - "warning": 1, - "types": 1, - "unable": 1, - "reproduce": 1, - "unconfirmed": 1, - "upstream": 1, - "ux": 1, - "v": 1, - "website": 1, - "websocket": 1, - "weekly-digest": 1, - "windows": 1, - "writer-needed": 1, - "wrong": 1, - "repo": 1, - "xhr-polling": 1, - "advance": 0.052734375, - "workflow": 0.052734375, - "-": 2, - "backlog": 2, - "working": 1, - "done": 1, - "backport": 2, - "arrow": 1.7999999999999998, - "heading": 1.7999999999999998, - "down": 1.7999999999999998, - "pull": 1.7999999999999998, - "font-face": 1, - "abandoned": 1, - "accessibility": 1, - "adapter": 1, - "android": 1, - "angular": 1, - "animals": 1, - "answered": 1, - "area": 1, - "crash": 1, - "arrows": 1, - "automotive": 1, - "fa": 1.7999999999999998, - "pro": 1.7999999999999998, - "awaiting-review": 1, - "beginner-friendly": 1, - "beverage": 1, - "blocked": 1, - "blocker": 1, - "bootstrap": 1, - "brand": 1, - "icon": 1, - "safari": 1, - "report": 1, - "business": 1, - "c": 1, - "c++": 1, - "cannot": 1, - "cantfix": 1, - "cdn": 1, - "chat": 1, - "chore": 1, - "no": 1, - "yes": 1, - "closed": 1.7999999999999998, - "due": 1.7999999999999998, - "inactivity": 1.7999999999999998, - "cmty": 1, - "bug-report": 1, - "feature-request": 1, - "cancelled": 1, - "fixed": 1, - "implemented": 1, - "resolved": 1 - }, - "positive_weights_sum": {}, - "negative_weights_sum": {} - }, - "security": { - "positive_weights": { - "hacked": 22.78125, - "bias": 1.0753078677483436e-8, - "legal": 22.78125, - "security": 20.25, - "type": 3, - "vulnerability": 18.984375, - "warning": 3.75, - "component": 0.28125, - "concurrent": 0.75, - "mode": 0.75, - "core": 0.75, - "utilities": 0.75, - "developer": 2, - "tools": 2, - "dom": 2, - "eslint": 2, - "rules": 2, - "hooks": 2, - "optimizing": 2, - "compiler": 2, - "reactis": 2, - "reconciler": 2, - "scheduler": 2, - "server": 2, - "rendering": 2, - "shallow": 2, - "renderer": 2, - "suspense": 2, - "test": 2, - "utils": 2, - "configuration": 0.5, - "confirmed": 0.5, - "conflicts": 0.5, - "contribution": 0.6666666666666667, - "welcome": 0.6666666666666667, - "critical": 0.5, - "csharp": 0.5, - "css": 0.5, - "css-select": 0.5, - "currency": 0.6666666666666667, - "(category)": 0.6666666666666667, - "defect": 2, - "dependencies": 2, - "dependency": 0.6666666666666667, - "related": 0.6666666666666667, - "design": 2, - "difficulty": 0.8333333333333334, - "challenging": 2, - "easy": 2, - "hard": 2, - "medium": 2, - "starter": 2, - "unknown": 0.8333333333333334, - "or": 0.8333333333333334, - "n": 0.8333333333333334, - "a": 0.8333333333333334, - "very": 2, - "discussion": 2, - "do": 0.75, - "not": 0.75, - "merge": 0.75, - "doc": 2, - "docs": 2, - "documentation": 0.6666666666666667, - "book": 0.6666666666666667, - "duplicate": 2, - "electron": 2, - "enhancement": 2, - "enterprise": 2, - "enterprise-": 0.6666666666666667, - "-backport": 0.6666666666666667, - "es": 2, - "external": 2, - "externs": 2, - "feat": 0.75, - "cli": 2, - "babel": 2, - "cli-service": 0.75, - "build": 0.75, - "serve": 2, - "e": 2, - "e-cypress": 2, - "e-nightwatch": 2, - "plugin": 2, - "api": 2, - "pwa": 2, - "typescript": 2, - "ui": 2, - "unit-jest": 2, - "unit-mocha": 2, - "feature": 0.6666666666666667, - "request": 0.6666666666666667, - "feedback": 2, - "requested": 2, - "files": 2, - "first-timers-only": 2, - "flags": 2, - "flashsocket": 2, - "fontawesome": 2, - "com": 2, - "food": 2, - "freemasonry": 2, - "icons": 2, - "frontend": 2, - "future": 0.75, - "architecture": 0.75, - "enhancements": 0.75, - "crypto": 2, - "genders": 2, - "general": 2, - "js": 2, - "gh": 0.75, - "review": 0.75, - "accepted": 0.75, - "go": 0.8, - "client": 0.8, - "internal": 0.8, - "release": 0.8, - "good": 0.8, - "first": 0.8, - "issue": 0.8, - "+": 0.8, - "great": 2, - "insight": 2, - "greenkeeper": 2, - "hack": 2, - "hacktoberfest": 2, - "handshakes": 2, - "has": 2, - "bounty": 2, - "pr": 0.8333333333333334, - "help": 2, - "wanted": 2, - "sos": 2, - "hi-pri": 2, - "high-priority": 2, - "hodor": 2, - "hot": 2, - "html": 2, - "htmlfile": 2, - "https": 2, - "icebox": 2, - "ie": 2, - "import": 2, - "in": 2, - "progress": 2, - "started": 2, - "infrastructure": 0.8, - "hammer": 0.8, - "and": 0.8, - "wrench": 0.8, - "installer": 2, - "cleanup": 2, - "internal-issue-created": 2, - "invalid": 2, - "ios": 2, - "jquery": 2, - "differences": 2, - "jsonp-polling": 2, - "kbfs": 2, - "lang-crystal": 2, - "lang-dart": 2, - "lang-elixir": 2, - "lang-go": 2, - "lang-julia": 2, - "lang-objc": 2, - "lang-r": 2, - "lang-scala": 2, - "library": 2, - "lint": 2, - "linux": 2, - "lks": 2, - "m": 2, - "s": 2, - "macos": 2, - "maintenance": 2, - "major": 2, - "mass": 2, - "purge": 2, - "minor": 2, - "mobile": 2, - "device": 2, - "support": 2, - "proxy": 2, - "modules": 2, - "must-triage": 2, - "namespaces": 2, - "need-info": 2, - "needs": 0.8333333333333334, - "example": 2, - "app": 2, - "failing": 2, - "browser": 2, - "testing": 2, - "changelog": 2, - "info": 0.8333333333333334, - "more": 0.8333333333333334, - "man": 0.8333333333333334, - "shrugging": 0.8333333333333334, - "repro": 2, - "triage": 2, - "needs-more-info": 2, - "needs-research": 2, - "new": 2, - "proposal": 2, - "best": 2, - "practice": 2, - "node": 2, - "next": 2, - "bug": 2, - "on": 2, - "hold": 2, - "open": 2, - "operations": 2, - "opinions": 2, - "needed": 2, - "optimisation": 2, - "other": 2, - "language": 2, - "integration": 2, - "p": 2, - "packaging": 2, - "parser": 2, - "parser-specific": 2, - "pending": 2, - "performance": 2, - "planned": 2, - "for": 2, - "pr-existing": 2, - "breaking": 2, - "change": 2, - "boom": 2, - "fix": 2, - "⬆️": 2, - "deprecation": 2, - "memo": 2, - "house": 2, - "merged": 0.8333333333333334, - "rocket": 2, - "polish": 2, - "nail": 2, - "care": 2, - "ready": 0.8333333333333334, - "to": 0.8333333333333334, - "be": 0.8333333333333334, - "reviewed-approved": 2, - "reviewed-changes-requested": 2, - "spec": 2, - "compliance": 2, - "eyeglasses": 2, - "underlying": 2, - "unreviewed": 2, - "wip": 2, - "priority": 2, - "high": 2, - "low": 2, - "production": 2, - "project": 2, - "management": 2, - "question": 2, - "react": 2, - "flare": 2, - "native": 2, - "refactor": 2, - "regression": 2, - "alpha": 2, - "released": 2, - "reminder": 2, - "resolution": 2, - "information": 2, - "redirect": 2, - "revisitinfuture": 2, - "rfc": 2, - "ruby": 2, - "shell": 2, - "socket": 2, - "io": 2, - "spam": 2, - "spammy": 2, - "async": 2, - "functions": 2, - "generators": 2, - "bigint": 2, - "class": 2, - "fields": 2, - "classes": 2, - "decorators": 2, - "(legacy)": 2, - "expressions": 2, - "stale": 2, - "status": 2, - "heavy": 2, - "check": 2, - "mark": 2, - "available": 2, - "free": 2, - "cla": 2, - "signed": 2, - "code": 2, - "approved": 2, - "construction": 2, - "worker": 2, - "detective": 2, - "left": 2, - "out": 2, - "luggage": 2, - "stop": 2, - "sign": 2, - "deploy": 2, - "passport": 2, - "control": 2, - "waiting": 2, - "wontfix": 2, - "work": 2, - "suggestion": 2, - "syntax": 2, - "technical": 2, - "debt": 2, - "technical-debt": 2, - "tests": 2, - "tips": 2, - "todo": 2, - "spiral": 2, - "notepad": 2, - "translation": 2, - "travis-yml": 2, - "triage-done": 2, - "trivial": 2, - "archive": 2, - "community": 2, - "discuss": 0.8, - "speech": 0.8, - "balloon": 0.8, - "update": 2, - "repeat": 2, - "bulb": 2, - "getting": 2, - "x": 2, - "non-library": 2, - "grey": 2, - "sendgrid": 2, - "types": 2, - "unable": 2, - "reproduce": 2, - "unconfirmed": 2, - "upstream": 2, - "ux": 2, - "v": 2, - "website": 2, - "websocket": 2, - "weekly-digest": 2, - "windows": 2, - "writer-needed": 2, - "wrong": 2, - "repo": 2, - "xhr-polling": 2, - "-": 2, - "backlog": 2, - "working": 2, - "done": 2, - "backport": 2, - "arrow": 2, - "heading": 2, - "down": 2, - "pull": 2, - "font-face": 2, - "abandoned": 2, - "accessibility": 2, - "adapter": 2, - "advance": 2, - "workflow": 2, - "android": 2, - "angular": 2, - "animals": 2, - "answered": 2, - "area": 2, - "crash": 2, - "arrows": 2, - "automotive": 2, - "fa": 2, - "pro": 2, - "awaiting-review": 2, - "beginner-friendly": 2, - "beverage": 2, - "blocked": 2, - "blocker": 2, - "bootstrap": 2, - "brand": 2, - "icon": 2, - "safari": 2, - "report": 2, - "business": 2, - "c": 2, - "c++": 2, - "cannot": 2, - "cantfix": 2, - "cdn": 2, - "chat": 2, - "chore": 2, - "no": 2, - "yes": 2, - "closed": 2, - "due": 2, - "inactivity": 2, - "cmty": 2, - "bug-report": 2, - "feature-request": 2, - "cancelled": 2, - "fixed": 2, - "implemented": 2, - "resolved": 2 - }, - "negative_weights": { - "hacked": 0.015625, - "bias": 5.444769504739113, - "legal": 0.015625, - "security": 0.020833333333333336, - "type": 0.225, - "vulnerability": 0.0234375, - "warning": 0.375, - "component": 3.515625, - "concurrent": 1.875, - "mode": 1.875, - "core": 1.875, - "utilities": 1.875, - "developer": 1, - "tools": 1, - "dom": 1, - "eslint": 1, - "rules": 1, - "hooks": 1, - "optimizing": 1, - "compiler": 1, - "reactis": 1, - "reconciler": 1, - "scheduler": 1, - "server": 1, - "rendering": 1, - "shallow": 1, - "renderer": 1, - "suspense": 1, - "test": 1, - "utils": 1, - "configuration": 2.25, - "confirmed": 2.25, - "conflicts": 2.25, - "contribution": 2, - "welcome": 2, - "critical": 2.25, - "csharp": 2.25, - "css": 2.25, - "css-select": 2.25, - "currency": 2, - "(category)": 2, - "defect": 1, - "dependencies": 1, - "dependency": 2, - "related": 2, - "design": 1, - "difficulty": 1.75, - "challenging": 1, - "easy": 1, - "hard": 1, - "medium": 1, - "starter": 1, - "unknown": 1.75, - "or": 1.75, - "n": 1.75, - "a": 1.75, - "very": 1, - "discussion": 1, - "do": 1.875, - "not": 1.875, - "merge": 1.875, - "doc": 1, - "docs": 1, - "documentation": 2, - "book": 2, - "duplicate": 1, - "electron": 1, - "enhancement": 1, - "enterprise": 1, - "enterprise-": 2, - "-backport": 2, - "es": 1, - "external": 1, - "externs": 1, - "feat": 1.875, - "cli": 1, - "babel": 1, - "cli-service": 1.875, - "build": 1.875, - "serve": 1, - "e": 1, - "e-cypress": 1, - "e-nightwatch": 1, - "plugin": 1, - "api": 1, - "pwa": 1, - "typescript": 1, - "ui": 1, - "unit-jest": 1, - "unit-mocha": 1, - "feature": 2, - "request": 2, - "feedback": 1, - "requested": 1, - "files": 1, - "first-timers-only": 1, - "flags": 1, - "flashsocket": 1, - "fontawesome": 1, - "com": 1, - "food": 1, - "freemasonry": 1, - "icons": 1, - "frontend": 1, - "future": 1.875, - "architecture": 1.875, - "enhancements": 1.875, - "crypto": 1, - "genders": 1, - "general": 1, - "js": 1, - "gh": 1.875, - "review": 1.875, - "accepted": 1.875, - "go": 1.7999999999999998, - "client": 1.7999999999999998, - "internal": 1.7999999999999998, - "release": 1.7999999999999998, - "good": 1.7999999999999998, - "first": 1.7999999999999998, - "issue": 1.7999999999999998, - "+": 1.7999999999999998, - "great": 1, - "insight": 1, - "greenkeeper": 1, - "hack": 1, - "hacktoberfest": 1, - "handshakes": 1, - "has": 1, - "bounty": 1, - "pr": 1.75, - "help": 1, - "wanted": 1, - "sos": 1, - "hi-pri": 1, - "high-priority": 1, - "hodor": 1, - "hot": 1, - "html": 1, - "htmlfile": 1, - "https": 1, - "icebox": 1, - "ie": 1, - "import": 1, - "in": 1, - "progress": 1, - "started": 1, - "infrastructure": 1.7999999999999998, - "hammer": 1.7999999999999998, - "and": 1.7999999999999998, - "wrench": 1.7999999999999998, - "installer": 1, - "cleanup": 1, - "internal-issue-created": 1, - "invalid": 1, - "ios": 1, - "jquery": 1, - "differences": 1, - "jsonp-polling": 1, - "kbfs": 1, - "lang-crystal": 1, - "lang-dart": 1, - "lang-elixir": 1, - "lang-go": 1, - "lang-julia": 1, - "lang-objc": 1, - "lang-r": 1, - "lang-scala": 1, - "library": 1, - "lint": 1, - "linux": 1, - "lks": 1, - "m": 1, - "s": 1, - "macos": 1, - "maintenance": 1, - "major": 1, - "mass": 1, - "purge": 1, - "minor": 1, - "mobile": 1, - "device": 1, - "support": 1, - "proxy": 1, - "modules": 1, - "must-triage": 1, - "namespaces": 1, - "need-info": 1, - "needs": 1.75, - "example": 1, - "app": 1, - "failing": 1, - "browser": 1, - "testing": 1, - "changelog": 1, - "info": 1.75, - "more": 1.75, - "man": 1.75, - "shrugging": 1.75, - "repro": 1, - "triage": 1, - "needs-more-info": 1, - "needs-research": 1, - "new": 1, - "proposal": 1, - "best": 1, - "practice": 1, - "node": 1, - "next": 1, - "bug": 1, - "on": 1, - "hold": 1, - "open": 1, - "operations": 1, - "opinions": 1, - "needed": 1, - "optimisation": 1, - "other": 1, - "language": 1, - "integration": 1, - "p": 1, - "packaging": 1, - "parser": 1, - "parser-specific": 1, - "pending": 1, - "performance": 1, - "planned": 1, - "for": 1, - "pr-existing": 1, - "breaking": 1, - "change": 1, - "boom": 1, - "fix": 1, - "⬆️": 1, - "deprecation": 1, - "memo": 1, - "house": 1, - "merged": 1.75, - "rocket": 1, - "polish": 1, - "nail": 1, - "care": 1, - "ready": 1.75, - "to": 1.75, - "be": 1.75, - "reviewed-approved": 1, - "reviewed-changes-requested": 1, - "spec": 1, - "compliance": 1, - "eyeglasses": 1, - "underlying": 1, - "unreviewed": 1, - "wip": 1, - "priority": 1, - "high": 1, - "low": 1, - "production": 1, - "project": 1, - "management": 1, - "question": 1, - "react": 1, - "flare": 1, - "native": 1, - "refactor": 1, - "regression": 1, - "alpha": 1, - "released": 1, - "reminder": 1, - "resolution": 1, - "information": 1, - "redirect": 1, - "revisitinfuture": 1, - "rfc": 1, - "ruby": 1, - "shell": 1, - "socket": 1, - "io": 1, - "spam": 1, - "spammy": 1, - "async": 1, - "functions": 1, - "generators": 1, - "bigint": 1, - "class": 1, - "fields": 1, - "classes": 1, - "decorators": 1, - "(legacy)": 1, - "expressions": 1, - "stale": 1, - "status": 1, - "heavy": 1, - "check": 1, - "mark": 1, - "available": 1, - "free": 1, - "cla": 1, - "signed": 1, - "code": 1, - "approved": 1, - "construction": 1, - "worker": 1, - "detective": 1, - "left": 1, - "out": 1, - "luggage": 1, - "stop": 1, - "sign": 1, - "deploy": 1, - "passport": 1, - "control": 1, - "waiting": 1, - "wontfix": 1, - "work": 1, - "suggestion": 1, - "syntax": 1, - "technical": 1, - "debt": 1, - "technical-debt": 1, - "tests": 1, - "tips": 1, - "todo": 1, - "spiral": 1, - "notepad": 1, - "translation": 1, - "travis-yml": 1, - "triage-done": 1, - "trivial": 1, - "archive": 1, - "community": 1, - "discuss": 1.7999999999999998, - "speech": 1.7999999999999998, - "balloon": 1.7999999999999998, - "update": 1, - "repeat": 1, - "bulb": 1, - "getting": 1, - "x": 1, - "non-library": 1, - "grey": 1, - "sendgrid": 1, - "types": 1, - "unable": 1, - "reproduce": 1, - "unconfirmed": 1, - "upstream": 1, - "ux": 1, - "v": 1, - "website": 1, - "websocket": 1, - "weekly-digest": 1, - "windows": 1, - "writer-needed": 1, - "wrong": 1, - "repo": 1, - "xhr-polling": 1, - "-": 1, - "backlog": 1, - "working": 1, - "done": 1, - "backport": 1, - "arrow": 1, - "heading": 1, - "down": 1, - "pull": 1, - "font-face": 1, - "abandoned": 1, - "accessibility": 1, - "adapter": 1, - "advance": 1, - "workflow": 1, - "android": 1, - "angular": 1, - "animals": 1, - "answered": 1, - "area": 1, - "crash": 1, - "arrows": 1, - "automotive": 1, - "fa": 1, - "pro": 1, - "awaiting-review": 1, - "beginner-friendly": 1, - "beverage": 1, - "blocked": 1, - "blocker": 1, - "bootstrap": 1, - "brand": 1, - "icon": 1, - "safari": 1, - "report": 1, - "business": 1, - "c": 1, - "c++": 1, - "cannot": 1, - "cantfix": 1, - "cdn": 1, - "chat": 1, - "chore": 1, - "no": 1, - "yes": 1, - "closed": 1, - "due": 1, - "inactivity": 1, - "cmty": 1, - "bug-report": 1, - "feature-request": 1, - "cancelled": 1, - "fixed": 1, - "implemented": 1, - "resolved": 1 - }, - "positive_weights_sum": {}, - "negative_weights_sum": {} - }, - "business": { - "positive_weights": { - "handshakes": 22.78125, - "bias": 0.00004119873046875003, - "component": 0.28125, - "concurrent": 0.75, - "mode": 0.75, - "core": 0.75, - "utilities": 0.75, - "developer": 2, - "tools": 2, - "dom": 2, - "eslint": 2, - "rules": 2, - "hooks": 2, - "optimizing": 2, - "compiler": 2, - "reactis": 2, - "reconciler": 2, - "scheduler": 2, - "server": 2, - "rendering": 2, - "shallow": 2, - "renderer": 2, - "suspense": 2, - "test": 2, - "utils": 2, - "configuration": 0.5, - "confirmed": 2, - "conflicts": 2, - "contribution": 0.6666666666666667, - "welcome": 0.6666666666666667, - "critical": 2, - "csharp": 2, - "css": 2, - "css-select": 2, - "currency": 0.6666666666666667, - "(category)": 1.7777777777777781, - "defect": 2, - "dependencies": 2, - "dependency": 0.6666666666666667, - "related": 0.6666666666666667, - "design": 2, - "difficulty": 0.8333333333333333, - "challenging": 2, - "easy": 2, - "hard": 2, - "medium": 2, - "starter": 2, - "unknown": 0.8333333333333333, - "or": 0.8333333333333333, - "n": 0.8333333333333333, - "a": 0.8333333333333333, - "very": 2, - "discussion": 2, - "do": 2, - "not": 2, - "merge": 2, - "doc": 2, - "docs": 2, - "documentation": 2, - "book": 2, - "duplicate": 2, - "electron": 2, - "enhancement": 2, - "enterprise": 2, - "enterprise-": 2, - "-backport": 2, - "es": 2, - "external": 2, - "externs": 2, - "feat": 2, - "cli": 2, - "babel": 2, - "cli-service": 2, - "build": 2, - "serve": 2, - "e": 2, - "e-cypress": 2, - "e-nightwatch": 2, - "plugin": 2, - "api": 2, - "pwa": 2, - "typescript": 2, - "ui": 2, - "unit-jest": 2, - "unit-mocha": 2, - "feature": 0.75, - "request": 0.75, - "feedback": 2, - "requested": 2, - "files": 2, - "first-timers-only": 2, - "flags": 2, - "flashsocket": 2, - "fontawesome": 2, - "com": 2, - "food": 2, - "freemasonry": 2, - "icons": 2, - "frontend": 2, - "future": 2, - "architecture": 2, - "enhancements": 2, - "crypto": 2, - "genders": 2, - "general": 2, - "js": 2, - "gh": 2, - "review": 2, - "accepted": 2, - "go": 0.8, - "client": 0.8, - "internal": 0.8, - "release": 0.8, - "good": 0.8, - "first": 0.8, - "issue": 0.8, - "+": 0.8, - "great": 2, - "insight": 2, - "greenkeeper": 2, - "hack": 2, - "hacked": 2, - "hacktoberfest": 2, - "has": 2, - "bounty": 2, - "pr": 2, - "help": 2, - "wanted": 2, - "sos": 2, - "hi-pri": 2, - "high-priority": 2, - "hodor": 2, - "hot": 2, - "html": 2, - "htmlfile": 2, - "https": 2, - "icebox": 2, - "ie": 2, - "import": 2, - "in": 2, - "progress": 2, - "started": 2, - "infrastructure": 2, - "hammer": 2, - "and": 2, - "wrench": 2, - "installer": 2, - "cleanup": 2, - "internal-issue-created": 2, - "invalid": 2, - "ios": 2, - "jquery": 2, - "differences": 2, - "jsonp-polling": 2, - "kbfs": 2, - "lang-crystal": 2, - "lang-dart": 2, - "lang-elixir": 2, - "lang-go": 2, - "lang-julia": 2, - "lang-objc": 2, - "lang-r": 2, - "lang-scala": 2, - "legal": 2, - "library": 2, - "lint": 2, - "linux": 2, - "lks": 2, - "m": 2, - "s": 2, - "macos": 2, - "maintenance": 2, - "major": 2, - "mass": 2, - "purge": 2, - "minor": 2, - "mobile": 2, - "device": 2, - "support": 2, - "proxy": 2, - "modules": 2, - "must-triage": 2, - "namespaces": 2, - "need-info": 2, - "needs": 2, - "example": 2, - "app": 2, - "failing": 2, - "browser": 2, - "testing": 2, - "changelog": 2, - "info": 2, - "more": 2, - "man": 2, - "shrugging": 2, - "repro": 2, - "triage": 2, - "needs-more-info": 2, - "needs-research": 2, - "new": 2, - "proposal": 2, - "best": 2, - "practice": 2, - "node": 2, - "next": 2, - "bug": 2, - "on": 2, - "hold": 2, - "open": 2, - "operations": 2, - "opinions": 2, - "needed": 2, - "optimisation": 2, - "other": 2, - "language": 2, - "integration": 2, - "p": 2, - "packaging": 2, - "parser": 2, - "parser-specific": 2, - "pending": 2, - "performance": 2, - "planned": 2, - "for": 2, - "pr-existing": 2, - "breaking": 2, - "change": 2, - "boom": 2, - "fix": 2, - "⬆️": 2, - "deprecation": 2, - "memo": 2, - "house": 2, - "merged": 2, - "rocket": 0.75, - "polish": 2, - "nail": 2, - "care": 2, - "ready": 2, - "to": 2, - "be": 2, - "reviewed-approved": 2, - "reviewed-changes-requested": 2, - "spec": 2, - "compliance": 2, - "eyeglasses": 2, - "underlying": 2, - "unreviewed": 2, - "wip": 2, - "priority": 2, - "high": 2, - "low": 2, - "production": 2, - "project": 2, - "management": 2, - "question": 0.75, - "react": 2, - "flare": 2, - "native": 2, - "refactor": 2, - "regression": 2, - "alpha": 2, - "released": 2, - "reminder": 2, - "resolution": 2, - "information": 2, - "redirect": 2, - "revisitinfuture": 2, - "rfc": 2, - "ruby": 2, - "security": 2, - "shell": 2, - "socket": 2, - "io": 2, - "spam": 2, - "spammy": 2, - "async": 2, - "functions": 2, - "generators": 2, - "bigint": 2, - "class": 2, - "fields": 2, - "classes": 2, - "decorators": 2, - "(legacy)": 2, - "expressions": 2, - "stale": 2, - "status": 2, - "heavy": 0.8333333333333333, - "check": 0.8333333333333333, - "mark": 0.8333333333333333, - "available": 2, - "free": 2, - "cla": 0.8333333333333333, - "signed": 0.8333333333333333, - "code": 2, - "approved": 2, - "construction": 2, - "worker": 2, - "detective": 2, - "left": 2, - "out": 2, - "luggage": 2, - "stop": 2, - "sign": 2, - "deploy": 2, - "passport": 2, - "control": 2, - "waiting": 2, - "wontfix": 2, - "work": 2, - "suggestion": 2, - "syntax": 2, - "technical": 2, - "debt": 2, - "technical-debt": 2, - "tests": 2, - "tips": 2, - "todo": 2, - "spiral": 2, - "notepad": 2, - "translation": 2, - "travis-yml": 2, - "triage-done": 2, - "trivial": 2, - "type": 2, - "archive": 2, - "community": 2, - "discuss": 2, - "speech": 0.75, - "balloon": 0.75, - "update": 2, - "repeat": 2, - "bulb": 2, - "getting": 2, - "x": 2, - "non-library": 2, - "grey": 2, - "sendgrid": 2, - "vulnerability": 2, - "warning": 2, - "types": 2, - "unable": 2, - "reproduce": 2, - "unconfirmed": 2, - "upstream": 2, - "ux": 2, - "v": 2, - "website": 2, - "websocket": 2, - "weekly-digest": 2, - "windows": 2, - "writer-needed": 2, - "wrong": 2, - "repo": 2, - "xhr-polling": 2, - "business": 16, - "-": 0.6666666666666667, - "backlog": 0.6666666666666667, - "working": 2, - "done": 2, - "backport": 2, - "arrow": 0.8, - "heading": 0.8, - "down": 0.8, - "pull": 0.8, - "font-face": 2, - "abandoned": 2, - "accessibility": 2, - "adapter": 2, - "advance": 2, - "workflow": 2, - "android": 2, - "angular": 2, - "animals": 0.6666666666666667, - "answered": 2, - "area": 2, - "crash": 2, - "arrows": 2, - "automotive": 2, - "fa": 2, - "pro": 2, - "awaiting-review": 2, - "beginner-friendly": 2, - "beverage": 2, - "blocked": 2, - "blocker": 2, - "bootstrap": 2, - "brand": 2, - "icon": 2, - "safari": 2, - "report": 2, - "c": 2, - "c++": 2, - "cannot": 2, - "cantfix": 2, - "cdn": 2, - "chat": 2, - "chore": 2, - "no": 2, - "yes": 2, - "closed": 2, - "due": 2, - "inactivity": 2, - "cmty": 2, - "bug-report": 2, - "feature-request": 2, - "cancelled": 2, - "fixed": 2, - "implemented": 2, - "resolved": 2 - }, - "negative_weights": { - "handshakes": 0.015625, - "bias": 9.197874069213865, - "component": 3.515625, - "concurrent": 1.875, - "mode": 1.875, - "core": 1.875, - "utilities": 1.875, - "developer": 1, - "tools": 1, - "dom": 1, - "eslint": 1, - "rules": 1, - "hooks": 1, - "optimizing": 1, - "compiler": 1, - "reactis": 1, - "reconciler": 1, - "scheduler": 1, - "server": 1, - "rendering": 1, - "shallow": 1, - "renderer": 1, - "suspense": 1, - "test": 1, - "utils": 1, - "configuration": 2.25, - "confirmed": 1, - "conflicts": 1, - "contribution": 2, - "welcome": 2, - "critical": 1, - "csharp": 1, - "css": 1, - "css-select": 1, - "currency": 2, - "(category)": 0.1481481481481482, - "defect": 1, - "dependencies": 1, - "dependency": 2, - "related": 2, - "design": 1, - "difficulty": 1.75, - "challenging": 1, - "easy": 1, - "hard": 1, - "medium": 1, - "starter": 1, - "unknown": 1.75, - "or": 1.75, - "n": 1.75, - "a": 1.75, - "very": 1, - "discussion": 1, - "do": 1, - "not": 1, - "merge": 1, - "doc": 1, - "docs": 1, - "documentation": 1, - "book": 1, - "duplicate": 1, - "electron": 1, - "enhancement": 1, - "enterprise": 1, - "enterprise-": 1, - "-backport": 1, - "es": 1, - "external": 1, - "externs": 1, - "feat": 1, - "cli": 1, - "babel": 1, - "cli-service": 1, - "build": 1, - "serve": 1, - "e": 1, - "e-cypress": 1, - "e-nightwatch": 1, - "plugin": 1, - "api": 1, - "pwa": 1, - "typescript": 1, - "ui": 1, - "unit-jest": 1, - "unit-mocha": 1, - "feature": 1.875, - "request": 1.875, - "feedback": 1, - "requested": 1, - "files": 1, - "first-timers-only": 1, - "flags": 1, - "flashsocket": 1, - "fontawesome": 1, - "com": 1, - "food": 1, - "freemasonry": 1, - "icons": 1, - "frontend": 1, - "future": 1, - "architecture": 1, - "enhancements": 1, - "crypto": 1, - "genders": 1, - "general": 1, - "js": 1, - "gh": 1, - "review": 1, - "accepted": 1, - "go": 1.7999999999999998, - "client": 1.7999999999999998, - "internal": 1.7999999999999998, - "release": 1.7999999999999998, - "good": 1.7999999999999998, - "first": 1.7999999999999998, - "issue": 1.7999999999999998, - "+": 1.7999999999999998, - "great": 1, - "insight": 1, - "greenkeeper": 1, - "hack": 1, - "hacked": 1, - "hacktoberfest": 1, - "has": 1, - "bounty": 1, - "pr": 1, - "help": 1, - "wanted": 1, - "sos": 1, - "hi-pri": 1, - "high-priority": 1, - "hodor": 1, - "hot": 1, - "html": 1, - "htmlfile": 1, - "https": 1, - "icebox": 1, - "ie": 1, - "import": 1, - "in": 1, - "progress": 1, - "started": 1, - "infrastructure": 1, - "hammer": 1, - "and": 1, - "wrench": 1, - "installer": 1, - "cleanup": 1, - "internal-issue-created": 1, - "invalid": 1, - "ios": 1, - "jquery": 1, - "differences": 1, - "jsonp-polling": 1, - "kbfs": 1, - "lang-crystal": 1, - "lang-dart": 1, - "lang-elixir": 1, - "lang-go": 1, - "lang-julia": 1, - "lang-objc": 1, - "lang-r": 1, - "lang-scala": 1, - "legal": 1, - "library": 1, - "lint": 1, - "linux": 1, - "lks": 1, - "m": 1, - "s": 1, - "macos": 1, - "maintenance": 1, - "major": 1, - "mass": 1, - "purge": 1, - "minor": 1, - "mobile": 1, - "device": 1, - "support": 1, - "proxy": 1, - "modules": 1, - "must-triage": 1, - "namespaces": 1, - "need-info": 1, - "needs": 1, - "example": 1, - "app": 1, - "failing": 1, - "browser": 1, - "testing": 1, - "changelog": 1, - "info": 1, - "more": 1, - "man": 1, - "shrugging": 1, - "repro": 1, - "triage": 1, - "needs-more-info": 1, - "needs-research": 1, - "new": 1, - "proposal": 1, - "best": 1, - "practice": 1, - "node": 1, - "next": 1, - "bug": 1, - "on": 1, - "hold": 1, - "open": 1, - "operations": 1, - "opinions": 1, - "needed": 1, - "optimisation": 1, - "other": 1, - "language": 1, - "integration": 1, - "p": 1, - "packaging": 1, - "parser": 1, - "parser-specific": 1, - "pending": 1, - "performance": 1, - "planned": 1, - "for": 1, - "pr-existing": 1, - "breaking": 1, - "change": 1, - "boom": 1, - "fix": 1, - "⬆️": 1, - "deprecation": 1, - "memo": 1, - "house": 1, - "merged": 1, - "rocket": 1.875, - "polish": 1, - "nail": 1, - "care": 1, - "ready": 1, - "to": 1, - "be": 1, - "reviewed-approved": 1, - "reviewed-changes-requested": 1, - "spec": 1, - "compliance": 1, - "eyeglasses": 1, - "underlying": 1, - "unreviewed": 1, - "wip": 1, - "priority": 1, - "high": 1, - "low": 1, - "production": 1, - "project": 1, - "management": 1, - "question": 1.875, - "react": 1, - "flare": 1, - "native": 1, - "refactor": 1, - "regression": 1, - "alpha": 1, - "released": 1, - "reminder": 1, - "resolution": 1, - "information": 1, - "redirect": 1, - "revisitinfuture": 1, - "rfc": 1, - "ruby": 1, - "security": 1, - "shell": 1, - "socket": 1, - "io": 1, - "spam": 1, - "spammy": 1, - "async": 1, - "functions": 1, - "generators": 1, - "bigint": 1, - "class": 1, - "fields": 1, - "classes": 1, - "decorators": 1, - "(legacy)": 1, - "expressions": 1, - "stale": 1, - "status": 1, - "heavy": 1.75, - "check": 1.75, - "mark": 1.75, - "available": 1, - "free": 1, - "cla": 1.75, - "signed": 1.75, - "code": 1, - "approved": 1, - "construction": 1, - "worker": 1, - "detective": 1, - "left": 1, - "out": 1, - "luggage": 1, - "stop": 1, - "sign": 1, - "deploy": 1, - "passport": 1, - "control": 1, - "waiting": 1, - "wontfix": 1, - "work": 1, - "suggestion": 1, - "syntax": 1, - "technical": 1, - "debt": 1, - "technical-debt": 1, - "tests": 1, - "tips": 1, - "todo": 1, - "spiral": 1, - "notepad": 1, - "translation": 1, - "travis-yml": 1, - "triage-done": 1, - "trivial": 1, - "type": 1, - "archive": 1, - "community": 1, - "discuss": 1, - "speech": 1.875, - "balloon": 1.875, - "update": 1, - "repeat": 1, - "bulb": 1, - "getting": 1, - "x": 1, - "non-library": 1, - "grey": 1, - "sendgrid": 1, - "vulnerability": 1, - "warning": 1, - "types": 1, - "unable": 1, - "reproduce": 1, - "unconfirmed": 1, - "upstream": 1, - "ux": 1, - "v": 1, - "website": 1, - "websocket": 1, - "weekly-digest": 1, - "windows": 1, - "writer-needed": 1, - "wrong": 1, - "repo": 1, - "xhr-polling": 1, - "business": 0.03703703703703705, - "-": 2, - "backlog": 2, - "working": 1, - "done": 1, - "backport": 1, - "arrow": 1.7999999999999998, - "heading": 1.7999999999999998, - "down": 1.7999999999999998, - "pull": 1.7999999999999998, - "font-face": 1, - "abandoned": 1, - "accessibility": 1, - "adapter": 1, - "advance": 1, - "workflow": 1, - "android": 1, - "angular": 1, - "animals": 2, - "answered": 1, - "area": 1, - "crash": 1, - "arrows": 1, - "automotive": 1, - "fa": 1, - "pro": 1, - "awaiting-review": 1, - "beginner-friendly": 1, - "beverage": 1, - "blocked": 1, - "blocker": 1, - "bootstrap": 1, - "brand": 1, - "icon": 1, - "safari": 1, - "report": 1, - "c": 1, - "c++": 1, - "cannot": 1, - "cantfix": 1, - "cdn": 1, - "chat": 1, - "chore": 1, - "no": 1, - "yes": 1, - "closed": 1, - "due": 1, - "inactivity": 1, - "cmty": 1, - "bug-report": 1, - "feature-request": 1, - "cancelled": 1, - "fixed": 1, - "implemented": 1, - "resolved": 1 - }, - "positive_weights_sum": {}, - "negative_weights_sum": {} - }, - "platform": { - "positive_weights": { - "icebox": 22.78125, - "bias": 1.8087384880796939e-16, - "ios": 22.78125, - "linux": 22.78125, - "macos": 22.78125, - "mobile": 7.03125, - "device": 7.03125, - "support": 2.63671875, - "node": 20.25, - "next": 1.6, - "packaging": 10.125, - "windows": 10.125, - "component": 0.10546875, - "concurrent": 0.28125, - "mode": 0.28125, - "core": 0.75, - "utilities": 0.75, - "developer": 0.75, - "tools": 2, - "dom": 2, - "eslint": 2, - "rules": 2, - "hooks": 2, - "optimizing": 2, - "compiler": 2, - "reactis": 2, - "reconciler": 2, - "scheduler": 2, - "server": 2, - "rendering": 2, - "shallow": 2, - "renderer": 2, - "suspense": 2, - "test": 2, - "utils": 2, - "configuration": 0.125, - "confirmed": 0.5, - "conflicts": 0.5, - "contribution": 0.6666666666666667, - "welcome": 0.6666666666666667, - "critical": 0.5, - "csharp": 0.5, - "css": 0.5, - "css-select": 0.5, - "currency": 0.6666666666666667, - "(category)": 0.6666666666666667, - "defect": 0.5, - "dependencies": 0.5, - "dependency": 0.6666666666666667, - "related": 0.6666666666666667, - "design": 0.5, - "difficulty": 0.3125, - "challenging": 2, - "easy": 2, - "hard": 0.75, - "medium": 2, - "starter": 2, - "unknown": 0.8333333333333334, - "or": 0.8333333333333334, - "n": 0.8333333333333334, - "a": 0.8333333333333334, - "very": 0.75, - "discussion": 0.5, - "do": 0.75, - "not": 0.75, - "merge": 0.75, - "doc": 0.5, - "docs": 0.5, - "documentation": 0.6666666666666667, - "book": 0.6666666666666667, - "duplicate": 0.5, - "electron": 0.5, - "enhancement": 0.5, - "enterprise": 2, - "enterprise-": 0.6666666666666667, - "-backport": 0.6666666666666667, - "es": 2, - "external": 2, - "externs": 2, - "feat": 0.75, - "cli": 2, - "babel": 2, - "cli-service": 0.75, - "build": 0.75, - "serve": 2, - "e": 2, - "e-cypress": 2, - "e-nightwatch": 2, - "plugin": 2, - "api": 2, - "pwa": 2, - "typescript": 2, - "ui": 2, - "unit-jest": 2, - "unit-mocha": 2, - "feature": 0.6666666666666667, - "request": 0.6666666666666667, - "feedback": 0.6666666666666667, - "requested": 0.6666666666666667, - "files": 2, - "first-timers-only": 2, - "flags": 2, - "flashsocket": 2, - "fontawesome": 0.6666666666666667, - "com": 0.6666666666666667, - "food": 2, - "freemasonry": 2, - "icons": 2, - "frontend": 2, - "future": 0.75, - "architecture": 0.75, - "enhancements": 0.75, - "crypto": 2, - "genders": 2, - "general": 2, - "js": 2, - "gh": 0.75, - "review": 0.75, - "accepted": 0.75, - "go": 2, - "client": 2, - "internal": 2, - "release": 0.8, - "good": 0.75, - "first": 0.75, - "issue": 0.75, - "+": 2, - "great": 2, - "insight": 2, - "greenkeeper": 2, - "hack": 2, - "hacked": 2, - "hacktoberfest": 2, - "handshakes": 2, - "has": 2, - "bounty": 2, - "pr": 0.8333333333333334, - "help": 0.75, - "wanted": 0.75, - "sos": 0.75, - "hi-pri": 2, - "high-priority": 2, - "hodor": 2, - "hot": 2, - "html": 2, - "htmlfile": 2, - "https": 2, - "ie": 2, - "import": 2, - "in": 0.33333333333333337, - "progress": 0.8333333333333334, - "started": 2, - "infrastructure": 0.8, - "hammer": 0.8, - "and": 0.8, - "wrench": 0.8, - "installer": 2, - "cleanup": 2, - "internal-issue-created": 2, - "invalid": 2, - "jquery": 2, - "differences": 2, - "jsonp-polling": 2, - "kbfs": 2, - "lang-crystal": 2, - "lang-dart": 2, - "lang-elixir": 2, - "lang-go": 2, - "lang-julia": 2, - "lang-objc": 2, - "lang-r": 2, - "lang-scala": 2, - "legal": 2, - "library": 2, - "lint": 2, - "lks": 2, - "m": 2, - "s": 2, - "maintenance": 2, - "major": 2, - "mass": 2, - "purge": 2, - "minor": 2, - "proxy": 2, - "modules": 2, - "must-triage": 2, - "namespaces": 2, - "need-info": 2, - "needs": 0.8333333333333334, - "example": 2, - "app": 2, - "failing": 2, - "browser": 2, - "testing": 2, - "changelog": 2, - "info": 0.8333333333333334, - "more": 0.8333333333333334, - "man": 0.8333333333333334, - "shrugging": 0.8333333333333334, - "repro": 2, - "triage": 2, - "needs-more-info": 2, - "needs-research": 2, - "new": 2, - "proposal": 2, - "best": 2, - "practice": 2, - "bug": 2, - "on": 2, - "hold": 2, - "open": 2, - "operations": 2, - "opinions": 2, - "needed": 2, - "optimisation": 2, - "other": 2, - "language": 2, - "integration": 2, - "p": 2, - "parser": 2, - "parser-specific": 2, - "pending": 2, - "performance": 2, - "planned": 0.8, - "for": 0.8, - "pr-existing": 2, - "breaking": 2, - "change": 2, - "boom": 0.6666666666666667, - "fix": 2, - "⬆️": 2, - "deprecation": 2, - "memo": 2, - "house": 2, - "merged": 0.8333333333333334, - "rocket": 2, - "polish": 2, - "nail": 2, - "care": 2, - "ready": 0.8333333333333334, - "to": 0.8333333333333334, - "be": 0.8333333333333334, - "reviewed-approved": 2, - "reviewed-changes-requested": 2, - "spec": 2, - "compliance": 2, - "eyeglasses": 2, - "underlying": 2, - "unreviewed": 2, - "wip": 2, - "priority": 2, - "high": 2, - "low": 2, - "production": 2, - "project": 2, - "management": 2, - "question": 0.75, - "react": 2, - "flare": 2, - "native": 2, - "refactor": 2, - "regression": 0.6666666666666667, - "alpha": 2, - "released": 2, - "reminder": 2, - "resolution": 0.75, - "information": 2, - "redirect": 0.75, - "revisitinfuture": 2, - "rfc": 2, - "ruby": 2, - "security": 2, - "shell": 2, - "socket": 2, - "io": 2, - "spam": 2, - "spammy": 2, - "async": 2, - "functions": 2, - "generators": 2, - "bigint": 2, - "class": 2, - "fields": 2, - "classes": 2, - "decorators": 2, - "(legacy)": 2, - "expressions": 2, - "stale": 2, - "status": 0.8333333333333334, - "heavy": 0.8333333333333334, - "check": 0.8333333333333334, - "mark": 0.8333333333333334, - "available": 0.8, - "free": 2, - "cla": 0.8333333333333334, - "signed": 0.8333333333333334, - "code": 2, - "approved": 2, - "construction": 0.8333333333333334, - "worker": 0.8333333333333334, - "detective": 2, - "left": 2, - "out": 2, - "luggage": 2, - "stop": 2, - "sign": 2, - "deploy": 2, - "passport": 2, - "control": 2, - "waiting": 2, - "wontfix": 2, - "work": 2, - "suggestion": 2, - "syntax": 2, - "technical": 2, - "debt": 2, - "technical-debt": 2, - "tests": 2, - "tips": 2, - "todo": 2, - "spiral": 2, - "notepad": 2, - "translation": 2, - "travis-yml": 2, - "triage-done": 2, - "trivial": 2, - "type": 2, - "archive": 2, - "community": 2, - "discuss": 2, - "speech": 0.75, - "balloon": 0.75, - "update": 2, - "repeat": 2, - "bulb": 2, - "getting": 2, - "x": 0.5, - "non-library": 2, - "grey": 2, - "sendgrid": 2, - "vulnerability": 2, - "warning": 2, - "types": 2, - "unable": 2, - "reproduce": 2, - "unconfirmed": 2, - "upstream": 2, - "ux": 2, - "v": 2, - "website": 2, - "websocket": 2, - "weekly-digest": 2, - "writer-needed": 2, - "wrong": 2, - "repo": 2, - "xhr-polling": 2, - "android": 10.125, - "cdn": 10.125, - "-": 0.6666666666666667, - "backlog": 0.6666666666666667, - "working": 2, - "done": 2, - "backport": 2, - "arrow": 0.8, - "heading": 0.8, - "down": 0.8, - "pull": 0.8, - "font-face": 2, - "abandoned": 2, - "accessibility": 2, - "adapter": 2, - "advance": 0.75, - "workflow": 0.75, - "angular": 2, - "animals": 2, - "answered": 2, - "area": 2, - "crash": 2, - "arrows": 2, - "automotive": 2, - "fa": 0.8, - "pro": 0.8, - "awaiting-review": 2, - "beginner-friendly": 2, - "beverage": 2, - "blocked": 2, - "blocker": 2, - "bootstrap": 2, - "brand": 2, - "icon": 2, - "safari": 2, - "report": 2, - "business": 2, - "c": 2, - "c++": 2, - "cannot": 2, - "cantfix": 2, - "chat": 2, - "chore": 2, - "no": 2, - "yes": 2, - "closed": 2, - "due": 2, - "inactivity": 2, - "cmty": 2, - "bug-report": 2, - "feature-request": 2, - "cancelled": 2, - "fixed": 2, - "implemented": 2, - "resolved": 2 - }, - "negative_weights": { - "icebox": 0.015625, - "bias": 3.6349927989092317, - "ios": 0.015625, - "linux": 0.015625, - "macos": 0.015625, - "mobile": 0.140625, - "device": 0.140625, - "support": 0.263671875, - "node": 0.020833333333333336, - "next": 0.6, - "packaging": 0.0625, - "windows": 0.0625, - "component": 6.591796875, - "concurrent": 3.515625, - "mode": 3.515625, - "core": 1.875, - "utilities": 1.875, - "developer": 1.875, - "tools": 1, - "dom": 1, - "eslint": 1, - "rules": 1, - "hooks": 1, - "optimizing": 1, - "compiler": 1, - "reactis": 1, - "reconciler": 1, - "scheduler": 1, - "server": 1, - "rendering": 1, - "shallow": 1, - "renderer": 1, - "suspense": 1, - "test": 1, - "utils": 1, - "configuration": 5.0625, - "confirmed": 2.25, - "conflicts": 2.25, - "contribution": 2, - "welcome": 2, - "critical": 2.25, - "csharp": 2.25, - "css": 2.25, - "css-select": 2.25, - "currency": 2, - "(category)": 2, - "defect": 2.25, - "dependencies": 2.25, - "dependency": 2, - "related": 2, - "design": 2.25, - "difficulty": 3.28125, - "challenging": 1, - "easy": 1, - "hard": 1.875, - "medium": 1, - "starter": 1, - "unknown": 1.75, - "or": 1.75, - "n": 1.75, - "a": 1.75, - "very": 1.875, - "discussion": 2.25, - "do": 1.875, - "not": 1.875, - "merge": 1.875, - "doc": 2.25, - "docs": 2.25, - "documentation": 2, - "book": 2, - "duplicate": 2.25, - "electron": 2.25, - "enhancement": 2.25, - "enterprise": 1, - "enterprise-": 2, - "-backport": 2, - "es": 1, - "external": 1, - "externs": 1, - "feat": 1.875, - "cli": 1, - "babel": 1, - "cli-service": 1.875, - "build": 1.875, - "serve": 1, - "e": 1, - "e-cypress": 1, - "e-nightwatch": 1, - "plugin": 1, - "api": 1, - "pwa": 1, - "typescript": 1, - "ui": 1, - "unit-jest": 1, - "unit-mocha": 1, - "feature": 2, - "request": 2, - "feedback": 2, - "requested": 2, - "files": 1, - "first-timers-only": 1, - "flags": 1, - "flashsocket": 1, - "fontawesome": 2, - "com": 2, - "food": 1, - "freemasonry": 1, - "icons": 1, - "frontend": 1, - "future": 1.875, - "architecture": 1.875, - "enhancements": 1.875, - "crypto": 1, - "genders": 1, - "general": 1, - "js": 1, - "gh": 1.875, - "review": 1.875, - "accepted": 1.875, - "go": 1, - "client": 1, - "internal": 1, - "release": 1.7999999999999998, - "good": 1.875, - "first": 1.875, - "issue": 1.875, - "+": 1, - "great": 1, - "insight": 1, - "greenkeeper": 1, - "hack": 1, - "hacked": 1, - "hacktoberfest": 1, - "handshakes": 1, - "has": 1, - "bounty": 1, - "pr": 1.75, - "help": 1.875, - "wanted": 1.875, - "sos": 1.875, - "hi-pri": 1, - "high-priority": 1, - "hodor": 1, - "hot": 1, - "html": 1, - "htmlfile": 1, - "https": 1, - "ie": 1, - "import": 1, - "in": 3.1499999999999995, - "progress": 1.75, - "started": 1, - "infrastructure": 1.7999999999999998, - "hammer": 1.7999999999999998, - "and": 1.7999999999999998, - "wrench": 1.7999999999999998, - "installer": 1, - "cleanup": 1, - "internal-issue-created": 1, - "invalid": 1, - "jquery": 1, - "differences": 1, - "jsonp-polling": 1, - "kbfs": 1, - "lang-crystal": 1, - "lang-dart": 1, - "lang-elixir": 1, - "lang-go": 1, - "lang-julia": 1, - "lang-objc": 1, - "lang-r": 1, - "lang-scala": 1, - "legal": 1, - "library": 1, - "lint": 1, - "lks": 1, - "m": 1, - "s": 1, - "maintenance": 1, - "major": 1, - "mass": 1, - "purge": 1, - "minor": 1, - "proxy": 1, - "modules": 1, - "must-triage": 1, - "namespaces": 1, - "need-info": 1, - "needs": 1.75, - "example": 1, - "app": 1, - "failing": 1, - "browser": 1, - "testing": 1, - "changelog": 1, - "info": 1.75, - "more": 1.75, - "man": 1.75, - "shrugging": 1.75, - "repro": 1, - "triage": 1, - "needs-more-info": 1, - "needs-research": 1, - "new": 1, - "proposal": 1, - "best": 1, - "practice": 1, - "bug": 1, - "on": 1, - "hold": 1, - "open": 1, - "operations": 1, - "opinions": 1, - "needed": 1, - "optimisation": 1, - "other": 1, - "language": 1, - "integration": 1, - "p": 1, - "parser": 1, - "parser-specific": 1, - "pending": 1, - "performance": 1, - "planned": 1.7999999999999998, - "for": 1.7999999999999998, - "pr-existing": 1, - "breaking": 1, - "change": 1, - "boom": 2, - "fix": 1, - "⬆️": 1, - "deprecation": 1, - "memo": 1, - "house": 1, - "merged": 1.75, - "rocket": 1, - "polish": 1, - "nail": 1, - "care": 1, - "ready": 1.75, - "to": 1.75, - "be": 1.75, - "reviewed-approved": 1, - "reviewed-changes-requested": 1, - "spec": 1, - "compliance": 1, - "eyeglasses": 1, - "underlying": 1, - "unreviewed": 1, - "wip": 1, - "priority": 1, - "high": 1, - "low": 1, - "production": 1, - "project": 1, - "management": 1, - "question": 1.875, - "react": 1, - "flare": 1, - "native": 1, - "refactor": 1, - "regression": 2, - "alpha": 1, - "released": 1, - "reminder": 1, - "resolution": 1.875, - "information": 1, - "redirect": 1.875, - "revisitinfuture": 1, - "rfc": 1, - "ruby": 1, - "security": 1, - "shell": 1, - "socket": 1, - "io": 1, - "spam": 1, - "spammy": 1, - "async": 1, - "functions": 1, - "generators": 1, - "bigint": 1, - "class": 1, - "fields": 1, - "classes": 1, - "decorators": 1, - "(legacy)": 1, - "expressions": 1, - "stale": 1, - "status": 1.75, - "heavy": 1.75, - "check": 1.75, - "mark": 1.75, - "available": 1.7999999999999998, - "free": 1, - "cla": 1.75, - "signed": 1.75, - "code": 1, - "approved": 1, - "construction": 1.75, - "worker": 1.75, - "detective": 1, - "left": 1, - "out": 1, - "luggage": 1, - "stop": 1, - "sign": 1, - "deploy": 1, - "passport": 1, - "control": 1, - "waiting": 1, - "wontfix": 1, - "work": 1, - "suggestion": 1, - "syntax": 1, - "technical": 1, - "debt": 1, - "technical-debt": 1, - "tests": 1, - "tips": 1, - "todo": 1, - "spiral": 1, - "notepad": 1, - "translation": 1, - "travis-yml": 1, - "triage-done": 1, - "trivial": 1, - "type": 1, - "archive": 1, - "community": 1, - "discuss": 1, - "speech": 1.875, - "balloon": 1.875, - "update": 1, - "repeat": 1, - "bulb": 1, - "getting": 1, - "x": 2.25, - "non-library": 1, - "grey": 1, - "sendgrid": 1, - "vulnerability": 1, - "warning": 1, - "types": 1, - "unable": 1, - "reproduce": 1, - "unconfirmed": 1, - "upstream": 1, - "ux": 1, - "v": 1, - "website": 1, - "websocket": 1, - "weekly-digest": 1, - "writer-needed": 1, - "wrong": 1, - "repo": 1, - "xhr-polling": 1, - "android": 0.0625, - "cdn": 0.0625, - "-": 2, - "backlog": 2, - "working": 1, - "done": 1, - "backport": 1, - "arrow": 1.7999999999999998, - "heading": 1.7999999999999998, - "down": 1.7999999999999998, - "pull": 1.7999999999999998, - "font-face": 1, - "abandoned": 1, - "accessibility": 1, - "adapter": 1, - "advance": 1.875, - "workflow": 1.875, - "angular": 1, - "animals": 1, - "answered": 1, - "area": 1, - "crash": 1, - "arrows": 1, - "automotive": 1, - "fa": 1.7999999999999998, - "pro": 1.7999999999999998, - "awaiting-review": 1, - "beginner-friendly": 1, - "beverage": 1, - "blocked": 1, - "blocker": 1, - "bootstrap": 1, - "brand": 1, - "icon": 1, - "safari": 1, - "report": 1, - "business": 1, - "c": 1, - "c++": 1, - "cannot": 1, - "cantfix": 1, - "chat": 1, - "chore": 1, - "no": 1, - "yes": 1, - "closed": 1, - "due": 1, - "inactivity": 1, - "cmty": 1, - "bug-report": 1, - "feature-request": 1, - "cancelled": 1, - "fixed": 1, - "implemented": 1, - "resolved": 1 - }, - "positive_weights_sum": {}, - "negative_weights_sum": {} - }, - "example": { - "positive_weights": { - "pr": 3.6209821701049822, - "good": 4.888325929641724, - "example": 13.904571533203125, - "bias": 0.00019095023162662988, - "component": 0.28125, - "concurrent": 0.75, - "mode": 0.75, - "core": 0.75, - "utilities": 0.75, - "developer": 2, - "tools": 2, - "dom": 2, - "eslint": 2, - "rules": 2, - "hooks": 2, - "optimizing": 2, - "compiler": 2, - "reactis": 2, - "reconciler": 2, - "scheduler": 2, - "server": 2, - "rendering": 2, - "shallow": 2, - "renderer": 2, - "suspense": 2, - "test": 2, - "utils": 2, - "configuration": 0.5, - "confirmed": 2, - "conflicts": 2, - "contribution": 2, - "welcome": 2, - "critical": 2, - "csharp": 2, - "css": 2, - "css-select": 2, - "currency": 2, - "(category)": 2, - "defect": 2, - "dependencies": 2, - "dependency": 2, - "related": 2, - "design": 2, - "difficulty": 0.8333333333333333, - "challenging": 2, - "easy": 2, - "hard": 2, - "medium": 2, - "starter": 2, - "unknown": 0.8333333333333333, - "or": 0.8333333333333333, - "n": 0.8333333333333333, - "a": 0.13333333333333333, - "very": 2, - "discussion": 2, - "do": 2, - "not": 2, - "merge": 2, - "doc": 2, - "docs": 2, - "documentation": 2, - "book": 2, - "duplicate": 2, - "electron": 2, - "enhancement": 2, - "enterprise": 2, - "enterprise-": 2, - "-backport": 2, - "es": 2, - "external": 2, - "externs": 2, - "feat": 2, - "cli": 2, - "babel": 2, - "cli-service": 2, - "build": 2, - "serve": 2, - "e": 2, - "e-cypress": 2, - "e-nightwatch": 2, - "plugin": 2, - "api": 2, - "pwa": 2, - "typescript": 2, - "ui": 2, - "unit-jest": 2, - "unit-mocha": 2, - "feature": 2, - "request": 2, - "feedback": 2, - "requested": 2, - "files": 2, - "first-timers-only": 2, - "flags": 2, - "flashsocket": 2, - "fontawesome": 2, - "com": 2, - "food": 2, - "freemasonry": 2, - "icons": 2, - "frontend": 2, - "future": 2, - "architecture": 2, - "enhancements": 2, - "crypto": 2, - "genders": 2, - "general": 2, - "js": 2, - "gh": 2, - "review": 2, - "accepted": 2, - "go": 0.8, - "client": 0.8, - "internal": 0.8, - "release": 0.8, - "first": 0.1125, - "issue": 0.1125, - "+": 0.8, - "great": 2, - "insight": 2, - "greenkeeper": 2, - "hack": 2, - "hacked": 2, - "hacktoberfest": 2, - "handshakes": 2, - "has": 0.22222222222222227, - "bounty": 2, - "help": 0.75, - "wanted": 0.75, - "sos": 2, - "hi-pri": 2, - "high-priority": 2, - "hodor": 2, - "hot": 2, - "html": 2, - "htmlfile": 2, - "https": 2, - "icebox": 2, - "ie": 2, - "import": 2, - "in": 2, - "progress": 2, - "started": 2, - "infrastructure": 2, - "hammer": 2, - "and": 2, - "wrench": 2, - "installer": 2, - "cleanup": 2, - "internal-issue-created": 2, - "invalid": 2, - "ios": 2, - "jquery": 2, - "differences": 2, - "jsonp-polling": 2, - "kbfs": 2, - "lang-crystal": 2, - "lang-dart": 2, - "lang-elixir": 2, - "lang-go": 2, - "lang-julia": 2, - "lang-objc": 2, - "lang-r": 2, - "lang-scala": 2, - "legal": 2, - "library": 2, - "lint": 2, - "linux": 2, - "lks": 2, - "m": 2, - "s": 2, - "macos": 2, - "maintenance": 2, - "major": 2, - "mass": 2, - "purge": 2, - "minor": 2, - "mobile": 2, - "device": 2, - "support": 2, - "proxy": 2, - "modules": 2, - "must-triage": 2, - "namespaces": 2, - "need-info": 2, - "needs": 0.32000000000000006, - "app": 0.32000000000000006, - "failing": 2, - "browser": 2, - "testing": 2, - "changelog": 2, - "info": 2, - "more": 2, - "man": 2, - "shrugging": 2, - "repro": 2, - "triage": 2, - "needs-more-info": 2, - "needs-research": 2, - "new": 2, - "proposal": 2, - "best": 2, - "practice": 2, - "node": 2, - "next": 2, - "bug": 2, - "on": 2, - "hold": 2, - "open": 2, - "operations": 2, - "opinions": 2, - "needed": 2, - "optimisation": 2, - "other": 2, - "language": 2, - "integration": 2, - "p": 2, - "packaging": 2, - "parser": 2, - "parser-specific": 2, - "pending": 2, - "performance": 2, - "planned": 2, - "for": 2, - "pr-existing": 2, - "breaking": 2, - "change": 2, - "boom": 2, - "fix": 2, - "⬆️": 2, - "deprecation": 2, - "memo": 2, - "house": 2, - "merged": 2, - "rocket": 2, - "polish": 2, - "nail": 2, - "care": 2, - "ready": 2, - "to": 2, - "be": 2, - "reviewed-approved": 2, - "reviewed-changes-requested": 2, - "spec": 2, - "compliance": 2, - "eyeglasses": 2, - "underlying": 2, - "unreviewed": 2, - "wip": 2, - "priority": 2, - "high": 2, - "low": 2, - "production": 2, - "project": 2, - "management": 2, - "question": 2, - "react": 2, - "flare": 2, - "native": 2, - "refactor": 2, - "regression": 2, - "alpha": 2, - "released": 2, - "reminder": 2, - "resolution": 2, - "information": 2, - "redirect": 2, - "revisitinfuture": 2, - "rfc": 2, - "ruby": 2, - "security": 2, - "shell": 2, - "socket": 2, - "io": 2, - "spam": 2, - "spammy": 2, - "async": 2, - "functions": 2, - "generators": 2, - "bigint": 2, - "class": 2, - "fields": 2, - "classes": 2, - "decorators": 2, - "(legacy)": 2, - "expressions": 2, - "stale": 2, - "status": 2, - "heavy": 2, - "check": 2, - "mark": 2, - "available": 2, - "free": 2, - "cla": 2, - "signed": 2, - "code": 2, - "approved": 2, - "construction": 2, - "worker": 2, - "detective": 2, - "left": 2, - "out": 2, - "luggage": 2, - "stop": 2, - "sign": 2, - "deploy": 2, - "passport": 2, - "control": 2, - "waiting": 2, - "wontfix": 2, - "work": 2, - "suggestion": 2, - "syntax": 2, - "technical": 2, - "debt": 2, - "technical-debt": 2, - "tests": 2, - "tips": 2, - "todo": 2, - "spiral": 2, - "notepad": 2, - "translation": 2, - "travis-yml": 2, - "triage-done": 2, - "trivial": 2, - "type": 2, - "archive": 2, - "community": 2, - "discuss": 2, - "speech": 2, - "balloon": 2, - "update": 2, - "repeat": 2, - "bulb": 2, - "getting": 2, - "x": 2, - "non-library": 2, - "grey": 2, - "sendgrid": 2, - "vulnerability": 2, - "warning": 2, - "types": 2, - "unable": 2, - "reproduce": 2, - "unconfirmed": 2, - "upstream": 2, - "ux": 2, - "v": 2, - "website": 2, - "websocket": 2, - "weekly-digest": 2, - "windows": 2, - "writer-needed": 2, - "wrong": 2, - "repo": 2, - "xhr-polling": 2, - "-": 2, - "backlog": 2, - "working": 2, - "done": 2, - "backport": 2, - "arrow": 2, - "heading": 2, - "down": 2, - "pull": 2, - "font-face": 2, - "abandoned": 2, - "accessibility": 2, - "adapter": 2, - "advance": 2, - "workflow": 2, - "android": 2, - "angular": 2, - "animals": 2, - "answered": 2, - "area": 2, - "crash": 2, - "arrows": 2, - "automotive": 2, - "fa": 2, - "pro": 2, - "awaiting-review": 2, - "beginner-friendly": 2, - "beverage": 2, - "blocked": 2, - "blocker": 2, - "bootstrap": 2, - "brand": 2, - "icon": 2, - "safari": 2, - "report": 2, - "business": 2, - "c": 2, - "c++": 2, - "cannot": 2, - "cantfix": 2, - "cdn": 2, - "chat": 2, - "chore": 2, - "no": 2, - "yes": 2, - "closed": 2, - "due": 2, - "inactivity": 2, - "cmty": 2, - "bug-report": 2, - "feature-request": 2, - "cancelled": 2, - "fixed": 2, - "implemented": 2, - "resolved": 2 - }, - "negative_weights": { - "pr": 0.020856857299804688, - "good": 0.0175979733467102, - "example": 0.009010162353515625, - "bias": 10.655272114818212, - "component": 3.515625, - "concurrent": 1.875, - "mode": 1.875, - "core": 1.875, - "utilities": 1.875, - "developer": 1, - "tools": 1, - "dom": 1, - "eslint": 1, - "rules": 1, - "hooks": 1, - "optimizing": 1, - "compiler": 1, - "reactis": 1, - "reconciler": 1, - "scheduler": 1, - "server": 1, - "rendering": 1, - "shallow": 1, - "renderer": 1, - "suspense": 1, - "test": 1, - "utils": 1, - "configuration": 2.25, - "confirmed": 1, - "conflicts": 1, - "contribution": 1, - "welcome": 1, - "critical": 1, - "csharp": 1, - "css": 1, - "css-select": 1, - "currency": 1, - "(category)": 1, - "defect": 1, - "dependencies": 1, - "dependency": 1, - "related": 1, - "design": 1, - "difficulty": 1.75, - "challenging": 1, - "easy": 1, - "hard": 1, - "medium": 1, - "starter": 1, - "unknown": 1.75, - "or": 1.75, - "n": 1.75, - "a": 5.669999999999998, - "very": 1, - "discussion": 1, - "do": 1, - "not": 1, - "merge": 1, - "doc": 1, - "docs": 1, - "documentation": 1, - "book": 1, - "duplicate": 1, - "electron": 1, - "enhancement": 1, - "enterprise": 1, - "enterprise-": 1, - "-backport": 1, - "es": 1, - "external": 1, - "externs": 1, - "feat": 1, - "cli": 1, - "babel": 1, - "cli-service": 1, - "build": 1, - "serve": 1, - "e": 1, - "e-cypress": 1, - "e-nightwatch": 1, - "plugin": 1, - "api": 1, - "pwa": 1, - "typescript": 1, - "ui": 1, - "unit-jest": 1, - "unit-mocha": 1, - "feature": 1, - "request": 1, - "feedback": 1, - "requested": 1, - "files": 1, - "first-timers-only": 1, - "flags": 1, - "flashsocket": 1, - "fontawesome": 1, - "com": 1, - "food": 1, - "freemasonry": 1, - "icons": 1, - "frontend": 1, - "future": 1, - "architecture": 1, - "enhancements": 1, - "crypto": 1, - "genders": 1, - "general": 1, - "js": 1, - "gh": 1, - "review": 1, - "accepted": 1, - "go": 1.7999999999999998, - "client": 1.7999999999999998, - "internal": 1.7999999999999998, - "release": 1.7999999999999998, - "first": 6.328124999999999, - "issue": 6.328124999999999, - "+": 1.7999999999999998, - "great": 1, - "insight": 1, - "greenkeeper": 1, - "hack": 1, - "hacked": 1, - "hacktoberfest": 1, - "handshakes": 1, - "has": 4, - "bounty": 1, - "help": 1.875, - "wanted": 1.875, - "sos": 1, - "hi-pri": 1, - "high-priority": 1, - "hodor": 1, - "hot": 1, - "html": 1, - "htmlfile": 1, - "https": 1, - "icebox": 1, - "ie": 1, - "import": 1, - "in": 1, - "progress": 1, - "started": 1, - "infrastructure": 1, - "hammer": 1, - "and": 1, - "wrench": 1, - "installer": 1, - "cleanup": 1, - "internal-issue-created": 1, - "invalid": 1, - "ios": 1, - "jquery": 1, - "differences": 1, - "jsonp-polling": 1, - "kbfs": 1, - "lang-crystal": 1, - "lang-dart": 1, - "lang-elixir": 1, - "lang-go": 1, - "lang-julia": 1, - "lang-objc": 1, - "lang-r": 1, - "lang-scala": 1, - "legal": 1, - "library": 1, - "lint": 1, - "linux": 1, - "lks": 1, - "m": 1, - "s": 1, - "macos": 1, - "maintenance": 1, - "major": 1, - "mass": 1, - "purge": 1, - "minor": 1, - "mobile": 1, - "device": 1, - "support": 1, - "proxy": 1, - "modules": 1, - "must-triage": 1, - "namespaces": 1, - "need-info": 1, - "needs": 3.2399999999999993, - "app": 3.2399999999999993, - "failing": 1, - "browser": 1, - "testing": 1, - "changelog": 1, - "info": 1, - "more": 1, - "man": 1, - "shrugging": 1, - "repro": 1, - "triage": 1, - "needs-more-info": 1, - "needs-research": 1, - "new": 1, - "proposal": 1, - "best": 1, - "practice": 1, - "node": 1, - "next": 1, - "bug": 1, - "on": 1, - "hold": 1, - "open": 1, - "operations": 1, - "opinions": 1, - "needed": 1, - "optimisation": 1, - "other": 1, - "language": 1, - "integration": 1, - "p": 1, - "packaging": 1, - "parser": 1, - "parser-specific": 1, - "pending": 1, - "performance": 1, - "planned": 1, - "for": 1, - "pr-existing": 1, - "breaking": 1, - "change": 1, - "boom": 1, - "fix": 1, - "⬆️": 1, - "deprecation": 1, - "memo": 1, - "house": 1, - "merged": 1, - "rocket": 1, - "polish": 1, - "nail": 1, - "care": 1, - "ready": 1, - "to": 1, - "be": 1, - "reviewed-approved": 1, - "reviewed-changes-requested": 1, - "spec": 1, - "compliance": 1, - "eyeglasses": 1, - "underlying": 1, - "unreviewed": 1, - "wip": 1, - "priority": 1, - "high": 1, - "low": 1, - "production": 1, - "project": 1, - "management": 1, - "question": 1, - "react": 1, - "flare": 1, - "native": 1, - "refactor": 1, - "regression": 1, - "alpha": 1, - "released": 1, - "reminder": 1, - "resolution": 1, - "information": 1, - "redirect": 1, - "revisitinfuture": 1, - "rfc": 1, - "ruby": 1, - "security": 1, - "shell": 1, - "socket": 1, - "io": 1, - "spam": 1, - "spammy": 1, - "async": 1, - "functions": 1, - "generators": 1, - "bigint": 1, - "class": 1, - "fields": 1, - "classes": 1, - "decorators": 1, - "(legacy)": 1, - "expressions": 1, - "stale": 1, - "status": 1, - "heavy": 1, - "check": 1, - "mark": 1, - "available": 1, - "free": 1, - "cla": 1, - "signed": 1, - "code": 1, - "approved": 1, - "construction": 1, - "worker": 1, - "detective": 1, - "left": 1, - "out": 1, - "luggage": 1, - "stop": 1, - "sign": 1, - "deploy": 1, - "passport": 1, - "control": 1, - "waiting": 1, - "wontfix": 1, - "work": 1, - "suggestion": 1, - "syntax": 1, - "technical": 1, - "debt": 1, - "technical-debt": 1, - "tests": 1, - "tips": 1, - "todo": 1, - "spiral": 1, - "notepad": 1, - "translation": 1, - "travis-yml": 1, - "triage-done": 1, - "trivial": 1, - "type": 1, - "archive": 1, - "community": 1, - "discuss": 1, - "speech": 1, - "balloon": 1, - "update": 1, - "repeat": 1, - "bulb": 1, - "getting": 1, - "x": 1, - "non-library": 1, - "grey": 1, - "sendgrid": 1, - "vulnerability": 1, - "warning": 1, - "types": 1, - "unable": 1, - "reproduce": 1, - "unconfirmed": 1, - "upstream": 1, - "ux": 1, - "v": 1, - "website": 1, - "websocket": 1, - "weekly-digest": 1, - "windows": 1, - "writer-needed": 1, - "wrong": 1, - "repo": 1, - "xhr-polling": 1, - "-": 1, - "backlog": 1, - "working": 1, - "done": 1, - "backport": 1, - "arrow": 1, - "heading": 1, - "down": 1, - "pull": 1, - "font-face": 1, - "abandoned": 1, - "accessibility": 1, - "adapter": 1, - "advance": 1, - "workflow": 1, - "android": 1, - "angular": 1, - "animals": 1, - "answered": 1, - "area": 1, - "crash": 1, - "arrows": 1, - "automotive": 1, - "fa": 1, - "pro": 1, - "awaiting-review": 1, - "beginner-friendly": 1, - "beverage": 1, - "blocked": 1, - "blocker": 1, - "bootstrap": 1, - "brand": 1, - "icon": 1, - "safari": 1, - "report": 1, - "business": 1, - "c": 1, - "c++": 1, - "cannot": 1, - "cantfix": 1, - "cdn": 1, - "chat": 1, - "chore": 1, - "no": 1, - "yes": 1, - "closed": 1, - "due": 1, - "inactivity": 1, - "cmty": 1, - "bug-report": 1, - "feature-request": 1, - "cancelled": 1, - "fixed": 1, - "implemented": 1, - "resolved": 1 - }, - "positive_weights_sum": {}, - "negative_weights_sum": {} - }, - "projectManagement": { - "positive_weights": { - "project": 8, - "management": 8, - "bias": 0.018310546875, - "component": 0.28125, - "concurrent": 0.75, - "mode": 0.75, - "core": 0.75, - "utilities": 0.75, - "developer": 2, - "tools": 2, - "dom": 2, - "eslint": 2, - "rules": 2, - "hooks": 2, - "optimizing": 2, - "compiler": 2, - "reactis": 2, - "reconciler": 2, - "scheduler": 2, - "server": 2, - "rendering": 2, - "shallow": 2, - "renderer": 2, - "suspense": 2, - "test": 2, - "utils": 2, - "configuration": 0.5, - "confirmed": 2, - "conflicts": 2, - "contribution": 2, - "welcome": 2, - "critical": 2, - "csharp": 2, - "css": 2, - "css-select": 2, - "currency": 2, - "(category)": 2, - "defect": 2, - "dependencies": 2, - "dependency": 2, - "related": 2, - "design": 2, - "difficulty": 0.8333333333333334, - "challenging": 2, - "easy": 2, - "hard": 2, - "medium": 2, - "starter": 2, - "unknown": 0.8333333333333334, - "or": 0.8333333333333334, - "n": 0.8333333333333334, - "a": 0.8333333333333334, - "very": 2, - "discussion": 2, - "do": 0.75, - "not": 0.75, - "merge": 0.75, - "doc": 2, - "docs": 2, - "documentation": 2, - "book": 2, - "duplicate": 2, - "electron": 2, - "enhancement": 2, - "enterprise": 2, - "enterprise-": 2, - "-backport": 2, - "es": 2, - "external": 2, - "externs": 2, - "feat": 2, - "cli": 2, - "babel": 2, - "cli-service": 2, - "build": 2, - "serve": 2, - "e": 2, - "e-cypress": 2, - "e-nightwatch": 2, - "plugin": 2, - "api": 2, - "pwa": 2, - "typescript": 2, - "ui": 2, - "unit-jest": 2, - "unit-mocha": 2, - "feature": 2, - "request": 2, - "feedback": 2, - "requested": 2, - "files": 2, - "first-timers-only": 2, - "flags": 2, - "flashsocket": 2, - "fontawesome": 2, - "com": 2, - "food": 2, - "freemasonry": 2, - "icons": 2, - "frontend": 2, - "future": 2, - "architecture": 2, - "enhancements": 2, - "crypto": 2, - "genders": 2, - "general": 2, - "js": 2, - "gh": 2, - "review": 2, - "accepted": 2, - "go": 2, - "client": 2, - "internal": 2, - "release": 2, - "good": 2, - "first": 2, - "issue": 2, - "+": 2, - "great": 2, - "insight": 2, - "greenkeeper": 2, - "hack": 2, - "hacked": 2, - "hacktoberfest": 2, - "handshakes": 2, - "has": 2, - "bounty": 2, - "pr": 2, - "help": 2, - "wanted": 2, - "sos": 2, - "hi-pri": 2, - "high-priority": 2, - "hodor": 2, - "hot": 2, - "html": 2, - "htmlfile": 2, - "https": 2, - "icebox": 2, - "ie": 2, - "import": 2, - "in": 2, - "progress": 2, - "started": 2, - "infrastructure": 2, - "hammer": 2, - "and": 2, - "wrench": 2, - "installer": 2, - "cleanup": 2, - "internal-issue-created": 2, - "invalid": 2, - "ios": 2, - "jquery": 2, - "differences": 2, - "jsonp-polling": 2, - "kbfs": 2, - "lang-crystal": 2, - "lang-dart": 2, - "lang-elixir": 2, - "lang-go": 2, - "lang-julia": 2, - "lang-objc": 2, - "lang-r": 2, - "lang-scala": 2, - "legal": 2, - "library": 2, - "lint": 2, - "linux": 2, - "lks": 2, - "m": 2, - "s": 2, - "macos": 2, - "maintenance": 2, - "major": 2, - "mass": 2, - "purge": 2, - "minor": 2, - "mobile": 2, - "device": 2, - "support": 2, - "proxy": 2, - "modules": 2, - "must-triage": 2, - "namespaces": 2, - "need-info": 2, - "needs": 0.8333333333333334, - "example": 2, - "app": 2, - "failing": 2, - "browser": 2, - "testing": 2, - "changelog": 2, - "info": 0.8333333333333334, - "more": 0.8333333333333334, - "man": 0.8333333333333334, - "shrugging": 0.8333333333333334, - "repro": 2, - "triage": 2, - "needs-more-info": 2, - "needs-research": 2, - "new": 2, - "proposal": 2, - "best": 2, - "practice": 2, - "node": 2, - "next": 2, - "bug": 2, - "on": 2, - "hold": 2, - "open": 2, - "operations": 2, - "opinions": 2, - "needed": 2, - "optimisation": 2, - "other": 2, - "language": 2, - "integration": 2, - "p": 2, - "packaging": 2, - "parser": 2, - "parser-specific": 2, - "pending": 2, - "performance": 2, - "planned": 2, - "for": 2, - "pr-existing": 2, - "breaking": 2, - "change": 2, - "boom": 2, - "fix": 2, - "⬆️": 2, - "deprecation": 2, - "memo": 2, - "house": 2, - "merged": 2, - "rocket": 2, - "polish": 2, - "nail": 2, - "care": 2, - "ready": 2, - "to": 2, - "be": 2, - "reviewed-approved": 2, - "reviewed-changes-requested": 2, - "spec": 2, - "compliance": 2, - "eyeglasses": 2, - "underlying": 2, - "unreviewed": 2, - "wip": 2, - "priority": 2, - "high": 2, - "low": 2, - "production": 2, - "question": 2, - "react": 2, - "flare": 2, - "native": 2, - "refactor": 2, - "regression": 2, - "alpha": 2, - "released": 2, - "reminder": 2, - "resolution": 2, - "information": 2, - "redirect": 2, - "revisitinfuture": 2, - "rfc": 2, - "ruby": 2, - "security": 2, - "shell": 2, - "socket": 2, - "io": 2, - "spam": 2, - "spammy": 2, - "async": 2, - "functions": 2, - "generators": 2, - "bigint": 2, - "class": 2, - "fields": 2, - "classes": 2, - "decorators": 2, - "(legacy)": 2, - "expressions": 2, - "stale": 2, - "status": 2, - "heavy": 2, - "check": 2, - "mark": 2, - "available": 2, - "free": 2, - "cla": 2, - "signed": 2, - "code": 2, - "approved": 2, - "construction": 2, - "worker": 2, - "detective": 2, - "left": 2, - "out": 2, - "luggage": 2, - "stop": 2, - "sign": 2, - "deploy": 2, - "passport": 2, - "control": 2, - "waiting": 2, - "wontfix": 2, - "work": 2, - "suggestion": 2, - "syntax": 2, - "technical": 2, - "debt": 2, - "technical-debt": 2, - "tests": 2, - "tips": 2, - "todo": 2, - "spiral": 2, - "notepad": 2, - "translation": 2, - "travis-yml": 2, - "triage-done": 2, - "trivial": 2, - "type": 2, - "archive": 2, - "community": 2, - "discuss": 2, - "speech": 2, - "balloon": 2, - "update": 2, - "repeat": 2, - "bulb": 2, - "getting": 2, - "x": 2, - "non-library": 2, - "grey": 2, - "sendgrid": 2, - "vulnerability": 2, - "warning": 2, - "types": 2, - "unable": 2, - "reproduce": 2, - "unconfirmed": 2, - "upstream": 2, - "ux": 2, - "v": 2, - "website": 2, - "websocket": 2, - "weekly-digest": 2, - "windows": 2, - "writer-needed": 2, - "wrong": 2, - "repo": 2, - "xhr-polling": 2, - "-": 2, - "backlog": 2, - "working": 2, - "done": 2, - "backport": 2, - "arrow": 2, - "heading": 2, - "down": 2, - "pull": 2, - "font-face": 2, - "abandoned": 2, - "accessibility": 2, - "adapter": 2, - "advance": 2, - "workflow": 2, - "android": 2, - "angular": 2, - "animals": 2, - "answered": 2, - "area": 2, - "crash": 2, - "arrows": 2, - "automotive": 2, - "fa": 2, - "pro": 2, - "awaiting-review": 2, - "beginner-friendly": 2, - "beverage": 2, - "blocked": 2, - "blocker": 2, - "bootstrap": 2, - "brand": 2, - "icon": 2, - "safari": 2, - "report": 2, - "business": 2, - "c": 2, - "c++": 2, - "cannot": 2, - "cantfix": 2, - "cdn": 2, - "chat": 2, - "chore": 2, - "no": 2, - "yes": 2, - "closed": 2, - "due": 2, - "inactivity": 2, - "cmty": 2, - "bug-report": 2, - "feature-request": 2, - "cancelled": 2, - "fixed": 2, - "implemented": 2, - "resolved": 2 - }, - "negative_weights": { - "project": 0.11111111111111113, - "management": 0.11111111111111113, - "bias": 5.046844482421877, - "component": 3.515625, - "concurrent": 1.875, - "mode": 1.875, - "core": 1.875, - "utilities": 1.875, - "developer": 1, - "tools": 1, - "dom": 1, - "eslint": 1, - "rules": 1, - "hooks": 1, - "optimizing": 1, - "compiler": 1, - "reactis": 1, - "reconciler": 1, - "scheduler": 1, - "server": 1, - "rendering": 1, - "shallow": 1, - "renderer": 1, - "suspense": 1, - "test": 1, - "utils": 1, - "configuration": 2.25, - "confirmed": 1, - "conflicts": 1, - "contribution": 1, - "welcome": 1, - "critical": 1, - "csharp": 1, - "css": 1, - "css-select": 1, - "currency": 1, - "(category)": 1, - "defect": 1, - "dependencies": 1, - "dependency": 1, - "related": 1, - "design": 1, - "difficulty": 1.75, - "challenging": 1, - "easy": 1, - "hard": 1, - "medium": 1, - "starter": 1, - "unknown": 1.75, - "or": 1.75, - "n": 1.75, - "a": 1.75, - "very": 1, - "discussion": 1, - "do": 1.875, - "not": 1.875, - "merge": 1.875, - "doc": 1, - "docs": 1, - "documentation": 1, - "book": 1, - "duplicate": 1, - "electron": 1, - "enhancement": 1, - "enterprise": 1, - "enterprise-": 1, - "-backport": 1, - "es": 1, - "external": 1, - "externs": 1, - "feat": 1, - "cli": 1, - "babel": 1, - "cli-service": 1, - "build": 1, - "serve": 1, - "e": 1, - "e-cypress": 1, - "e-nightwatch": 1, - "plugin": 1, - "api": 1, - "pwa": 1, - "typescript": 1, - "ui": 1, - "unit-jest": 1, - "unit-mocha": 1, - "feature": 1, - "request": 1, - "feedback": 1, - "requested": 1, - "files": 1, - "first-timers-only": 1, - "flags": 1, - "flashsocket": 1, - "fontawesome": 1, - "com": 1, - "food": 1, - "freemasonry": 1, - "icons": 1, - "frontend": 1, - "future": 1, - "architecture": 1, - "enhancements": 1, - "crypto": 1, - "genders": 1, - "general": 1, - "js": 1, - "gh": 1, - "review": 1, - "accepted": 1, - "go": 1, - "client": 1, - "internal": 1, - "release": 1, - "good": 1, - "first": 1, - "issue": 1, - "+": 1, - "great": 1, - "insight": 1, - "greenkeeper": 1, - "hack": 1, - "hacked": 1, - "hacktoberfest": 1, - "handshakes": 1, - "has": 1, - "bounty": 1, - "pr": 1, - "help": 1, - "wanted": 1, - "sos": 1, - "hi-pri": 1, - "high-priority": 1, - "hodor": 1, - "hot": 1, - "html": 1, - "htmlfile": 1, - "https": 1, - "icebox": 1, - "ie": 1, - "import": 1, - "in": 1, - "progress": 1, - "started": 1, - "infrastructure": 1, - "hammer": 1, - "and": 1, - "wrench": 1, - "installer": 1, - "cleanup": 1, - "internal-issue-created": 1, - "invalid": 1, - "ios": 1, - "jquery": 1, - "differences": 1, - "jsonp-polling": 1, - "kbfs": 1, - "lang-crystal": 1, - "lang-dart": 1, - "lang-elixir": 1, - "lang-go": 1, - "lang-julia": 1, - "lang-objc": 1, - "lang-r": 1, - "lang-scala": 1, - "legal": 1, - "library": 1, - "lint": 1, - "linux": 1, - "lks": 1, - "m": 1, - "s": 1, - "macos": 1, - "maintenance": 1, - "major": 1, - "mass": 1, - "purge": 1, - "minor": 1, - "mobile": 1, - "device": 1, - "support": 1, - "proxy": 1, - "modules": 1, - "must-triage": 1, - "namespaces": 1, - "need-info": 1, - "needs": 1.75, - "example": 1, - "app": 1, - "failing": 1, - "browser": 1, - "testing": 1, - "changelog": 1, - "info": 1.75, - "more": 1.75, - "man": 1.75, - "shrugging": 1.75, - "repro": 1, - "triage": 1, - "needs-more-info": 1, - "needs-research": 1, - "new": 1, - "proposal": 1, - "best": 1, - "practice": 1, - "node": 1, - "next": 1, - "bug": 1, - "on": 1, - "hold": 1, - "open": 1, - "operations": 1, - "opinions": 1, - "needed": 1, - "optimisation": 1, - "other": 1, - "language": 1, - "integration": 1, - "p": 1, - "packaging": 1, - "parser": 1, - "parser-specific": 1, - "pending": 1, - "performance": 1, - "planned": 1, - "for": 1, - "pr-existing": 1, - "breaking": 1, - "change": 1, - "boom": 1, - "fix": 1, - "⬆️": 1, - "deprecation": 1, - "memo": 1, - "house": 1, - "merged": 1, - "rocket": 1, - "polish": 1, - "nail": 1, - "care": 1, - "ready": 1, - "to": 1, - "be": 1, - "reviewed-approved": 1, - "reviewed-changes-requested": 1, - "spec": 1, - "compliance": 1, - "eyeglasses": 1, - "underlying": 1, - "unreviewed": 1, - "wip": 1, - "priority": 1, - "high": 1, - "low": 1, - "production": 1, - "question": 1, - "react": 1, - "flare": 1, - "native": 1, - "refactor": 1, - "regression": 1, - "alpha": 1, - "released": 1, - "reminder": 1, - "resolution": 1, - "information": 1, - "redirect": 1, - "revisitinfuture": 1, - "rfc": 1, - "ruby": 1, - "security": 1, - "shell": 1, - "socket": 1, - "io": 1, - "spam": 1, - "spammy": 1, - "async": 1, - "functions": 1, - "generators": 1, - "bigint": 1, - "class": 1, - "fields": 1, - "classes": 1, - "decorators": 1, - "(legacy)": 1, - "expressions": 1, - "stale": 1, - "status": 1, - "heavy": 1, - "check": 1, - "mark": 1, - "available": 1, - "free": 1, - "cla": 1, - "signed": 1, - "code": 1, - "approved": 1, - "construction": 1, - "worker": 1, - "detective": 1, - "left": 1, - "out": 1, - "luggage": 1, - "stop": 1, - "sign": 1, - "deploy": 1, - "passport": 1, - "control": 1, - "waiting": 1, - "wontfix": 1, - "work": 1, - "suggestion": 1, - "syntax": 1, - "technical": 1, - "debt": 1, - "technical-debt": 1, - "tests": 1, - "tips": 1, - "todo": 1, - "spiral": 1, - "notepad": 1, - "translation": 1, - "travis-yml": 1, - "triage-done": 1, - "trivial": 1, - "type": 1, - "archive": 1, - "community": 1, - "discuss": 1, - "speech": 1, - "balloon": 1, - "update": 1, - "repeat": 1, - "bulb": 1, - "getting": 1, - "x": 1, - "non-library": 1, - "grey": 1, - "sendgrid": 1, - "vulnerability": 1, - "warning": 1, - "types": 1, - "unable": 1, - "reproduce": 1, - "unconfirmed": 1, - "upstream": 1, - "ux": 1, - "v": 1, - "website": 1, - "websocket": 1, - "weekly-digest": 1, - "windows": 1, - "writer-needed": 1, - "wrong": 1, - "repo": 1, - "xhr-polling": 1, - "-": 1, - "backlog": 1, - "working": 1, - "done": 1, - "backport": 1, - "arrow": 1, - "heading": 1, - "down": 1, - "pull": 1, - "font-face": 1, - "abandoned": 1, - "accessibility": 1, - "adapter": 1, - "advance": 1, - "workflow": 1, - "android": 1, - "angular": 1, - "animals": 1, - "answered": 1, - "area": 1, - "crash": 1, - "arrows": 1, - "automotive": 1, - "fa": 1, - "pro": 1, - "awaiting-review": 1, - "beginner-friendly": 1, - "beverage": 1, - "blocked": 1, - "blocker": 1, - "bootstrap": 1, - "brand": 1, - "icon": 1, - "safari": 1, - "report": 1, - "business": 1, - "c": 1, - "c++": 1, - "cannot": 1, - "cantfix": 1, - "cdn": 1, - "chat": 1, - "chore": 1, - "no": 1, - "yes": 1, - "closed": 1, - "due": 1, - "inactivity": 1, - "cmty": 1, - "bug-report": 1, - "feature-request": 1, - "cancelled": 1, - "fixed": 1, - "implemented": 1, - "resolved": 1 - }, - "positive_weights_sum": {}, - "negative_weights_sum": {} - }, - "question": { - "positive_weights": { - "question": 22.78125, - "bias": 0.0019775390625000008, - "type": 2, - "grey": 2, - "component": 0.28125, - "concurrent": 0.75, - "mode": 0.75, - "core": 0.75, - "utilities": 0.75, - "developer": 2, - "tools": 2, - "dom": 2, - "eslint": 2, - "rules": 2, - "hooks": 2, - "optimizing": 2, - "compiler": 2, - "reactis": 2, - "reconciler": 2, - "scheduler": 2, - "server": 2, - "rendering": 2, - "shallow": 2, - "renderer": 2, - "suspense": 2, - "test": 2, - "utils": 2, - "configuration": 0.5, - "confirmed": 2, - "conflicts": 2, - "contribution": 0.6666666666666667, - "welcome": 0.6666666666666667, - "critical": 2, - "csharp": 2, - "css": 2, - "css-select": 2, - "currency": 0.6666666666666667, - "(category)": 0.6666666666666667, - "defect": 2, - "dependencies": 2, - "dependency": 0.6666666666666667, - "related": 0.6666666666666667, - "design": 2, - "difficulty": 0.8333333333333333, - "challenging": 2, - "easy": 2, - "hard": 2, - "medium": 2, - "starter": 2, - "unknown": 0.8333333333333333, - "or": 0.8333333333333333, - "n": 0.8333333333333333, - "a": 0.8333333333333333, - "very": 2, - "discussion": 2, - "do": 2, - "not": 2, - "merge": 2, - "doc": 2, - "docs": 2, - "documentation": 2, - "book": 2, - "duplicate": 2, - "electron": 2, - "enhancement": 2, - "enterprise": 2, - "enterprise-": 2, - "-backport": 2, - "es": 2, - "external": 2, - "externs": 2, - "feat": 2, - "cli": 2, - "babel": 2, - "cli-service": 2, - "build": 2, - "serve": 2, - "e": 2, - "e-cypress": 2, - "e-nightwatch": 2, - "plugin": 2, - "api": 2, - "pwa": 2, - "typescript": 2, - "ui": 2, - "unit-jest": 2, - "unit-mocha": 2, - "feature": 2, - "request": 2, - "feedback": 2, - "requested": 2, - "files": 2, - "first-timers-only": 2, - "flags": 2, - "flashsocket": 2, - "fontawesome": 2, - "com": 2, - "food": 2, - "freemasonry": 2, - "icons": 2, - "frontend": 2, - "future": 2, - "architecture": 2, - "enhancements": 2, - "crypto": 2, - "genders": 2, - "general": 2, - "js": 2, - "gh": 2, - "review": 2, - "accepted": 2, - "go": 0.8, - "client": 0.8, - "internal": 0.8, - "release": 0.8, - "good": 0.8, - "first": 0.8, - "issue": 0.8, - "+": 0.8, - "great": 2, - "insight": 2, - "greenkeeper": 2, - "hack": 2, - "hacked": 2, - "hacktoberfest": 2, - "handshakes": 2, - "has": 2, - "bounty": 2, - "pr": 2, - "help": 2, - "wanted": 2, - "sos": 2, - "hi-pri": 2, - "high-priority": 2, - "hodor": 2, - "hot": 2, - "html": 2, - "htmlfile": 2, - "https": 2, - "icebox": 2, - "ie": 2, - "import": 2, - "in": 2, - "progress": 2, - "started": 2, - "infrastructure": 2, - "hammer": 2, - "and": 2, - "wrench": 2, - "installer": 2, - "cleanup": 2, - "internal-issue-created": 2, - "invalid": 2, - "ios": 2, - "jquery": 2, - "differences": 2, - "jsonp-polling": 2, - "kbfs": 2, - "lang-crystal": 2, - "lang-dart": 2, - "lang-elixir": 2, - "lang-go": 2, - "lang-julia": 2, - "lang-objc": 2, - "lang-r": 2, - "lang-scala": 2, - "legal": 2, - "library": 2, - "lint": 2, - "linux": 2, - "lks": 2, - "m": 2, - "s": 2, - "macos": 2, - "maintenance": 2, - "major": 2, - "mass": 2, - "purge": 2, - "minor": 2, - "mobile": 2, - "device": 2, - "support": 2, - "proxy": 2, - "modules": 2, - "must-triage": 2, - "namespaces": 2, - "need-info": 2, - "needs": 2, - "example": 2, - "app": 2, - "failing": 2, - "browser": 2, - "testing": 2, - "changelog": 2, - "info": 2, - "more": 2, - "man": 2, - "shrugging": 2, - "repro": 2, - "triage": 2, - "needs-more-info": 2, - "needs-research": 2, - "new": 2, - "proposal": 2, - "best": 2, - "practice": 2, - "node": 2, - "next": 2, - "bug": 2, - "on": 2, - "hold": 2, - "open": 2, - "operations": 2, - "opinions": 2, - "needed": 2, - "optimisation": 2, - "other": 2, - "language": 2, - "integration": 2, - "p": 2, - "packaging": 2, - "parser": 2, - "parser-specific": 2, - "pending": 2, - "performance": 2, - "planned": 2, - "for": 2, - "pr-existing": 2, - "breaking": 2, - "change": 2, - "boom": 2, - "fix": 2, - "⬆️": 2, - "deprecation": 2, - "memo": 2, - "house": 2, - "merged": 2, - "rocket": 2, - "polish": 2, - "nail": 2, - "care": 2, - "ready": 2, - "to": 2, - "be": 2, - "reviewed-approved": 2, - "reviewed-changes-requested": 2, - "spec": 2, - "compliance": 2, - "eyeglasses": 2, - "underlying": 2, - "unreviewed": 2, - "wip": 2, - "priority": 2, - "high": 2, - "low": 2, - "production": 2, - "project": 2, - "management": 2, - "react": 2, - "flare": 2, - "native": 2, - "refactor": 2, - "regression": 2, - "alpha": 2, - "released": 2, - "reminder": 2, - "resolution": 2, - "information": 2, - "redirect": 2, - "revisitinfuture": 2, - "rfc": 2, - "ruby": 2, - "security": 2, - "shell": 2, - "socket": 2, - "io": 2, - "spam": 2, - "spammy": 2, - "async": 2, - "functions": 2, - "generators": 2, - "bigint": 2, - "class": 2, - "fields": 2, - "classes": 2, - "decorators": 2, - "(legacy)": 2, - "expressions": 2, - "stale": 2, - "status": 2, - "heavy": 2, - "check": 2, - "mark": 2, - "available": 2, - "free": 2, - "cla": 2, - "signed": 2, - "code": 2, - "approved": 2, - "construction": 2, - "worker": 2, - "detective": 2, - "left": 2, - "out": 2, - "luggage": 2, - "stop": 2, - "sign": 2, - "deploy": 2, - "passport": 2, - "control": 2, - "waiting": 2, - "wontfix": 2, - "work": 2, - "suggestion": 2, - "syntax": 2, - "technical": 2, - "debt": 2, - "technical-debt": 2, - "tests": 2, - "tips": 2, - "todo": 2, - "spiral": 2, - "notepad": 2, - "translation": 2, - "travis-yml": 2, - "triage-done": 2, - "trivial": 2, - "archive": 2, - "community": 2, - "discuss": 2, - "speech": 2, - "balloon": 2, - "update": 2, - "repeat": 2, - "bulb": 2, - "getting": 2, - "x": 2, - "non-library": 2, - "sendgrid": 2, - "vulnerability": 2, - "warning": 2, - "types": 2, - "unable": 2, - "reproduce": 2, - "unconfirmed": 2, - "upstream": 2, - "ux": 2, - "v": 2, - "website": 2, - "websocket": 2, - "weekly-digest": 2, - "windows": 2, - "writer-needed": 2, - "wrong": 2, - "repo": 2, - "xhr-polling": 2, - "cmty": 2, - "-": 2, - "backlog": 2, - "working": 2, - "done": 2, - "backport": 2, - "arrow": 2, - "heading": 2, - "down": 2, - "pull": 2, - "font-face": 2, - "abandoned": 2, - "accessibility": 2, - "adapter": 2, - "advance": 2, - "workflow": 2, - "android": 2, - "angular": 2, - "animals": 2, - "answered": 2, - "area": 2, - "crash": 2, - "arrows": 2, - "automotive": 2, - "fa": 2, - "pro": 2, - "awaiting-review": 2, - "beginner-friendly": 2, - "beverage": 2, - "blocked": 2, - "blocker": 2, - "bootstrap": 2, - "brand": 2, - "icon": 2, - "safari": 2, - "report": 2, - "business": 2, - "c": 2, - "c++": 2, - "cannot": 2, - "cantfix": 2, - "cdn": 2, - "chat": 2, - "chore": 2, - "no": 2, - "yes": 2, - "closed": 2, - "due": 2, - "inactivity": 2, - "bug-report": 2, - "feature-request": 2, - "cancelled": 2, - "fixed": 2, - "implemented": 2, - "resolved": 2 - }, - "negative_weights": { - "question": 0.015625, - "bias": 5.606323242187498, - "type": 1, - "grey": 1, - "component": 3.515625, - "concurrent": 1.875, - "mode": 1.875, - "core": 1.875, - "utilities": 1.875, - "developer": 1, - "tools": 1, - "dom": 1, - "eslint": 1, - "rules": 1, - "hooks": 1, - "optimizing": 1, - "compiler": 1, - "reactis": 1, - "reconciler": 1, - "scheduler": 1, - "server": 1, - "rendering": 1, - "shallow": 1, - "renderer": 1, - "suspense": 1, - "test": 1, - "utils": 1, - "configuration": 2.25, - "confirmed": 1, - "conflicts": 1, - "contribution": 2, - "welcome": 2, - "critical": 1, - "csharp": 1, - "css": 1, - "css-select": 1, - "currency": 2, - "(category)": 2, - "defect": 1, - "dependencies": 1, - "dependency": 2, - "related": 2, - "design": 1, - "difficulty": 1.75, - "challenging": 1, - "easy": 1, - "hard": 1, - "medium": 1, - "starter": 1, - "unknown": 1.75, - "or": 1.75, - "n": 1.75, - "a": 1.75, - "very": 1, - "discussion": 1, - "do": 1, - "not": 1, - "merge": 1, - "doc": 1, - "docs": 1, - "documentation": 1, - "book": 1, - "duplicate": 1, - "electron": 1, - "enhancement": 1, - "enterprise": 1, - "enterprise-": 1, - "-backport": 1, - "es": 1, - "external": 1, - "externs": 1, - "feat": 1, - "cli": 1, - "babel": 1, - "cli-service": 1, - "build": 1, - "serve": 1, - "e": 1, - "e-cypress": 1, - "e-nightwatch": 1, - "plugin": 1, - "api": 1, - "pwa": 1, - "typescript": 1, - "ui": 1, - "unit-jest": 1, - "unit-mocha": 1, - "feature": 1, - "request": 1, - "feedback": 1, - "requested": 1, - "files": 1, - "first-timers-only": 1, - "flags": 1, - "flashsocket": 1, - "fontawesome": 1, - "com": 1, - "food": 1, - "freemasonry": 1, - "icons": 1, - "frontend": 1, - "future": 1, - "architecture": 1, - "enhancements": 1, - "crypto": 1, - "genders": 1, - "general": 1, - "js": 1, - "gh": 1, - "review": 1, - "accepted": 1, - "go": 1.7999999999999998, - "client": 1.7999999999999998, - "internal": 1.7999999999999998, - "release": 1.7999999999999998, - "good": 1.7999999999999998, - "first": 1.7999999999999998, - "issue": 1.7999999999999998, - "+": 1.7999999999999998, - "great": 1, - "insight": 1, - "greenkeeper": 1, - "hack": 1, - "hacked": 1, - "hacktoberfest": 1, - "handshakes": 1, - "has": 1, - "bounty": 1, - "pr": 1, - "help": 1, - "wanted": 1, - "sos": 1, - "hi-pri": 1, - "high-priority": 1, - "hodor": 1, - "hot": 1, - "html": 1, - "htmlfile": 1, - "https": 1, - "icebox": 1, - "ie": 1, - "import": 1, - "in": 1, - "progress": 1, - "started": 1, - "infrastructure": 1, - "hammer": 1, - "and": 1, - "wrench": 1, - "installer": 1, - "cleanup": 1, - "internal-issue-created": 1, - "invalid": 1, - "ios": 1, - "jquery": 1, - "differences": 1, - "jsonp-polling": 1, - "kbfs": 1, - "lang-crystal": 1, - "lang-dart": 1, - "lang-elixir": 1, - "lang-go": 1, - "lang-julia": 1, - "lang-objc": 1, - "lang-r": 1, - "lang-scala": 1, - "legal": 1, - "library": 1, - "lint": 1, - "linux": 1, - "lks": 1, - "m": 1, - "s": 1, - "macos": 1, - "maintenance": 1, - "major": 1, - "mass": 1, - "purge": 1, - "minor": 1, - "mobile": 1, - "device": 1, - "support": 1, - "proxy": 1, - "modules": 1, - "must-triage": 1, - "namespaces": 1, - "need-info": 1, - "needs": 1, - "example": 1, - "app": 1, - "failing": 1, - "browser": 1, - "testing": 1, - "changelog": 1, - "info": 1, - "more": 1, - "man": 1, - "shrugging": 1, - "repro": 1, - "triage": 1, - "needs-more-info": 1, - "needs-research": 1, - "new": 1, - "proposal": 1, - "best": 1, - "practice": 1, - "node": 1, - "next": 1, - "bug": 1, - "on": 1, - "hold": 1, - "open": 1, - "operations": 1, - "opinions": 1, - "needed": 1, - "optimisation": 1, - "other": 1, - "language": 1, - "integration": 1, - "p": 1, - "packaging": 1, - "parser": 1, - "parser-specific": 1, - "pending": 1, - "performance": 1, - "planned": 1, - "for": 1, - "pr-existing": 1, - "breaking": 1, - "change": 1, - "boom": 1, - "fix": 1, - "⬆️": 1, - "deprecation": 1, - "memo": 1, - "house": 1, - "merged": 1, - "rocket": 1, - "polish": 1, - "nail": 1, - "care": 1, - "ready": 1, - "to": 1, - "be": 1, - "reviewed-approved": 1, - "reviewed-changes-requested": 1, - "spec": 1, - "compliance": 1, - "eyeglasses": 1, - "underlying": 1, - "unreviewed": 1, - "wip": 1, - "priority": 1, - "high": 1, - "low": 1, - "production": 1, - "project": 1, - "management": 1, - "react": 1, - "flare": 1, - "native": 1, - "refactor": 1, - "regression": 1, - "alpha": 1, - "released": 1, - "reminder": 1, - "resolution": 1, - "information": 1, - "redirect": 1, - "revisitinfuture": 1, - "rfc": 1, - "ruby": 1, - "security": 1, - "shell": 1, - "socket": 1, - "io": 1, - "spam": 1, - "spammy": 1, - "async": 1, - "functions": 1, - "generators": 1, - "bigint": 1, - "class": 1, - "fields": 1, - "classes": 1, - "decorators": 1, - "(legacy)": 1, - "expressions": 1, - "stale": 1, - "status": 1, - "heavy": 1, - "check": 1, - "mark": 1, - "available": 1, - "free": 1, - "cla": 1, - "signed": 1, - "code": 1, - "approved": 1, - "construction": 1, - "worker": 1, - "detective": 1, - "left": 1, - "out": 1, - "luggage": 1, - "stop": 1, - "sign": 1, - "deploy": 1, - "passport": 1, - "control": 1, - "waiting": 1, - "wontfix": 1, - "work": 1, - "suggestion": 1, - "syntax": 1, - "technical": 1, - "debt": 1, - "technical-debt": 1, - "tests": 1, - "tips": 1, - "todo": 1, - "spiral": 1, - "notepad": 1, - "translation": 1, - "travis-yml": 1, - "triage-done": 1, - "trivial": 1, - "archive": 1, - "community": 1, - "discuss": 1, - "speech": 1, - "balloon": 1, - "update": 1, - "repeat": 1, - "bulb": 1, - "getting": 1, - "x": 1, - "non-library": 1, - "sendgrid": 1, - "vulnerability": 1, - "warning": 1, - "types": 1, - "unable": 1, - "reproduce": 1, - "unconfirmed": 1, - "upstream": 1, - "ux": 1, - "v": 1, - "website": 1, - "websocket": 1, - "weekly-digest": 1, - "windows": 1, - "writer-needed": 1, - "wrong": 1, - "repo": 1, - "xhr-polling": 1, - "cmty": 1, - "-": 1, - "backlog": 1, - "working": 1, - "done": 1, - "backport": 1, - "arrow": 1, - "heading": 1, - "down": 1, - "pull": 1, - "font-face": 1, - "abandoned": 1, - "accessibility": 1, - "adapter": 1, - "advance": 1, - "workflow": 1, - "android": 1, - "angular": 1, - "animals": 1, - "answered": 1, - "area": 1, - "crash": 1, - "arrows": 1, - "automotive": 1, - "fa": 1, - "pro": 1, - "awaiting-review": 1, - "beginner-friendly": 1, - "beverage": 1, - "blocked": 1, - "blocker": 1, - "bootstrap": 1, - "brand": 1, - "icon": 1, - "safari": 1, - "report": 1, - "business": 1, - "c": 1, - "c++": 1, - "cannot": 1, - "cantfix": 1, - "cdn": 1, - "chat": 1, - "chore": 1, - "no": 1, - "yes": 1, - "closed": 1, - "due": 1, - "inactivity": 1, - "bug-report": 1, - "feature-request": 1, - "cancelled": 1, - "fixed": 1, - "implemented": 1, - "resolved": 1 - }, - "positive_weights_sum": {}, - "negative_weights_sum": {} - }, - "review": { - "positive_weights": { - "review": 10.798176094667998, - "bias": 1.0346281030491287e-14, - "component": 0.28125, - "concurrent": 0.75, - "mode": 0.75, - "core": 0.75, - "utilities": 0.75, - "developer": 0.75, - "tools": 2, - "dom": 2, - "eslint": 2, - "rules": 2, - "hooks": 2, - "optimizing": 2, - "compiler": 2, - "reactis": 2, - "reconciler": 2, - "scheduler": 2, - "server": 2, - "rendering": 2, - "shallow": 2, - "renderer": 2, - "suspense": 2, - "test": 2, - "utils": 2, - "configuration": 0.5, - "confirmed": 2, - "conflicts": 2, - "contribution": 0.6666666666666667, - "welcome": 0.6666666666666667, - "critical": 2, - "csharp": 2, - "css": 2, - "css-select": 2, - "currency": 0.6666666666666667, - "(category)": 0.6666666666666667, - "defect": 2, - "dependencies": 2, - "dependency": 0.6666666666666667, - "related": 0.6666666666666667, - "design": 2, - "difficulty": 0.8333333333333334, - "challenging": 2, - "easy": 2, - "hard": 2, - "medium": 2, - "starter": 2, - "unknown": 0.8333333333333334, - "or": 0.8333333333333334, - "n": 0.8333333333333334, - "a": 0.8333333333333334, - "very": 2, - "discussion": 2, - "do": 0.75, - "not": 0.75, - "merge": 0.75, - "doc": 2, - "docs": 2, - "documentation": 0.6666666666666667, - "book": 0.6666666666666667, - "duplicate": 2, - "electron": 2, - "enhancement": 0.6666666666666667, - "enterprise": 2, - "enterprise-": 0.6666666666666667, - "-backport": 0.6666666666666667, - "es": 2, - "external": 2, - "externs": 2, - "feat": 0.75, - "cli": 2, - "babel": 2, - "cli-service": 0.75, - "build": 0.75, - "serve": 2, - "e": 2, - "e-cypress": 2, - "e-nightwatch": 2, - "plugin": 2, - "api": 0.75, - "pwa": 2, - "typescript": 2, - "ui": 2, - "unit-jest": 2, - "unit-mocha": 2, - "feature": 0.8, - "request": 0.32000000000000006, - "feedback": 0.6666666666666667, - "requested": 0.6666666666666667, - "files": 2, - "first-timers-only": 2, - "flags": 2, - "flashsocket": 2, - "fontawesome": 2, - "com": 2, - "food": 2, - "freemasonry": 2, - "icons": 2, - "frontend": 2, - "future": 0.75, - "architecture": 0.75, - "enhancements": 0.75, - "crypto": 2, - "genders": 2, - "general": 2, - "js": 2, - "gh": 0.03955078125, - "accepted": 0.03955078125, - "go": 0.8, - "client": 0.8, - "internal": 0.8, - "release": 0.8, - "good": 0.8, - "first": 0.8, - "issue": 0.8, - "+": 0.8, - "great": 2, - "insight": 2, - "greenkeeper": 2, - "hack": 2, - "hacked": 2, - "hacktoberfest": 2, - "handshakes": 2, - "has": 2, - "bounty": 2, - "pr": 0.32000000000000006, - "help": 0.75, - "wanted": 0.75, - "sos": 0.75, - "hi-pri": 2, - "high-priority": 2, - "hodor": 2, - "hot": 2, - "html": 2, - "htmlfile": 2, - "https": 2, - "icebox": 2, - "ie": 2, - "import": 2, - "in": 0.024691358024691367, - "progress": 2, - "started": 2, - "infrastructure": 0.8, - "hammer": 0.8, - "and": 0.8, - "wrench": 0.8, - "installer": 2, - "cleanup": 2, - "internal-issue-created": 2, - "invalid": 2, - "ios": 2, - "jquery": 2, - "differences": 2, - "jsonp-polling": 2, - "kbfs": 2, - "lang-crystal": 2, - "lang-dart": 2, - "lang-elixir": 2, - "lang-go": 2, - "lang-julia": 2, - "lang-objc": 2, - "lang-r": 2, - "lang-scala": 2, - "legal": 2, - "library": 2, - "lint": 2, - "linux": 2, - "lks": 2, - "m": 2, - "s": 2, - "macos": 2, - "maintenance": 2, - "major": 2, - "mass": 2, - "purge": 2, - "minor": 2, - "mobile": 0.75, - "device": 0.75, - "support": 0.75, - "proxy": 2, - "modules": 2, - "must-triage": 2, - "namespaces": 2, - "need-info": 2, - "needs": 0.030864197530864213, - "example": 2, - "app": 2, - "failing": 2, - "browser": 2, - "testing": 2, - "changelog": 2, - "info": 0.8333333333333334, - "more": 0.8333333333333334, - "man": 0.8333333333333334, - "shrugging": 0.8333333333333334, - "repro": 2, - "triage": 2, - "needs-more-info": 2, - "needs-research": 2, - "new": 0.75, - "proposal": 0.75, - "best": 2, - "practice": 2, - "node": 2, - "next": 2, - "bug": 2, - "on": 2, - "hold": 2, - "open": 2, - "operations": 2, - "opinions": 2, - "needed": 0.8333333333333334, - "optimisation": 2, - "other": 0.8, - "language": 0.8, - "integration": 0.8, - "p": 2, - "packaging": 2, - "parser": 2, - "parser-specific": 2, - "pending": 2, - "performance": 2, - "planned": 2, - "for": 0.32000000000000006, - "pr-existing": 2, - "breaking": 0.6666666666666667, - "change": 0.6666666666666667, - "boom": 0.6666666666666667, - "fix": 2, - "⬆️": 2, - "deprecation": 2, - "memo": 2, - "house": 2, - "merged": 2, - "rocket": 0.6666666666666667, - "polish": 2, - "nail": 2, - "care": 2, - "ready": 0.32000000000000006, - "to": 0.8, - "be": 2, - "reviewed-approved": 2, - "reviewed-changes-requested": 2, - "spec": 0.75, - "compliance": 2, - "eyeglasses": 2, - "underlying": 2, - "unreviewed": 2, - "wip": 2, - "priority": 2, - "high": 2, - "low": 2, - "production": 2, - "project": 2, - "management": 2, - "question": 0.75, - "react": 2, - "flare": 2, - "native": 2, - "refactor": 2, - "regression": 0.6666666666666667, - "alpha": 2, - "released": 2, - "reminder": 2, - "resolution": 2, - "information": 2, - "redirect": 2, - "revisitinfuture": 2, - "rfc": 2, - "ruby": 2, - "security": 2, - "shell": 2, - "socket": 2, - "io": 2, - "spam": 2, - "spammy": 2, - "async": 0.75, - "functions": 0.75, - "generators": 2, - "bigint": 2, - "class": 2, - "fields": 2, - "classes": 2, - "decorators": 2, - "(legacy)": 2, - "expressions": 2, - "stale": 2, - "status": 0.13333333333333336, - "heavy": 0.8333333333333333, - "check": 0.8333333333333333, - "mark": 0.8333333333333333, - "available": 2, - "free": 2, - "cla": 0.8333333333333333, - "signed": 0.8333333333333333, - "code": 0.32000000000000006, - "approved": 2, - "construction": 2, - "worker": 2, - "detective": 2, - "left": 2, - "out": 2, - "luggage": 2, - "stop": 2, - "sign": 2, - "deploy": 2, - "passport": 0.8333333333333334, - "control": 0.8333333333333334, - "waiting": 2, - "wontfix": 2, - "work": 2, - "suggestion": 2, - "syntax": 2, - "technical": 2, - "debt": 2, - "technical-debt": 2, - "tests": 2, - "tips": 2, - "todo": 2, - "spiral": 2, - "notepad": 2, - "translation": 2, - "travis-yml": 2, - "triage-done": 2, - "trivial": 2, - "type": 2, - "archive": 2, - "community": 2, - "discuss": 2, - "speech": 0.75, - "balloon": 0.75, - "update": 2, - "repeat": 2, - "bulb": 2, - "getting": 2, - "x": 0.6666666666666667, - "non-library": 2, - "grey": 2, - "sendgrid": 2, - "vulnerability": 2, - "warning": 2, - "types": 2, - "unable": 2, - "reproduce": 2, - "unconfirmed": 2, - "upstream": 2, - "ux": 2, - "v": 2, - "website": 2, - "websocket": 2, - "weekly-digest": 2, - "windows": 2, - "writer-needed": 2, - "wrong": 2, - "repo": 2, - "xhr-polling": 2, - "-": 0.6666666666666667, - "backlog": 0.6666666666666667, - "working": 2, - "done": 2, - "backport": 0.6666666666666667, - "arrow": 0.8, - "heading": 0.8, - "down": 0.8, - "pull": 0.8, - "font-face": 2, - "abandoned": 2, - "accessibility": 2, - "adapter": 2, - "advance": 0.75, - "workflow": 0.75, - "android": 2, - "angular": 2, - "animals": 2, - "answered": 2, - "area": 0.6666666666666667, - "crash": 0.6666666666666667, - "arrows": 2, - "automotive": 2, - "fa": 2, - "pro": 2, - "awaiting-review": 2, - "beginner-friendly": 2, - "beverage": 2, - "blocked": 2, - "blocker": 2, - "bootstrap": 2, - "brand": 0.6666666666666667, - "icon": 0.6666666666666667, - "safari": 2, - "report": 2, - "business": 2, - "c": 2, - "c++": 2, - "cannot": 2, - "cantfix": 2, - "cdn": 2, - "chat": 2, - "chore": 2, - "no": 2, - "yes": 2, - "closed": 0.8, - "due": 0.8, - "inactivity": 0.8, - "cmty": 2, - "bug-report": 2, - "feature-request": 2, - "cancelled": 2, - "fixed": 2, - "implemented": 2, - "resolved": 2 - }, - "negative_weights": { - "review": 1.652050496403489e-9, - "bias": 5.58931966969713, - "component": 3.515625, - "concurrent": 1.875, - "mode": 1.875, - "core": 1.875, - "utilities": 1.875, - "developer": 1.875, - "tools": 1, - "dom": 1, - "eslint": 1, - "rules": 1, - "hooks": 1, - "optimizing": 1, - "compiler": 1, - "reactis": 1, - "reconciler": 1, - "scheduler": 1, - "server": 1, - "rendering": 1, - "shallow": 1, - "renderer": 1, - "suspense": 1, - "test": 1, - "utils": 1, - "configuration": 2.25, - "confirmed": 1, - "conflicts": 1, - "contribution": 2, - "welcome": 2, - "critical": 1, - "csharp": 1, - "css": 1, - "css-select": 1, - "currency": 2, - "(category)": 2, - "defect": 1, - "dependencies": 1, - "dependency": 2, - "related": 2, - "design": 1, - "difficulty": 1.75, - "challenging": 1, - "easy": 1, - "hard": 1, - "medium": 1, - "starter": 1, - "unknown": 1.75, - "or": 1.75, - "n": 1.75, - "a": 1.75, - "very": 1, - "discussion": 1, - "do": 1.875, - "not": 1.875, - "merge": 1.875, - "doc": 1, - "docs": 1, - "documentation": 2, - "book": 2, - "duplicate": 1, - "electron": 1, - "enhancement": 2, - "enterprise": 1, - "enterprise-": 2, - "-backport": 2, - "es": 1, - "external": 1, - "externs": 1, - "feat": 1.875, - "cli": 1, - "babel": 1, - "cli-service": 1.875, - "build": 1.875, - "serve": 1, - "e": 1, - "e-cypress": 1, - "e-nightwatch": 1, - "plugin": 1, - "api": 1.875, - "pwa": 1, - "typescript": 1, - "ui": 1, - "unit-jest": 1, - "unit-mocha": 1, - "feature": 1.7999999999999998, - "request": 3.2399999999999993, - "feedback": 2, - "requested": 2, - "files": 1, - "first-timers-only": 1, - "flags": 1, - "flashsocket": 1, - "fontawesome": 1, - "com": 1, - "food": 1, - "freemasonry": 1, - "icons": 1, - "frontend": 1, - "future": 1.875, - "architecture": 1.875, - "enhancements": 1.875, - "crypto": 1, - "genders": 1, - "general": 1, - "js": 1, - "gh": 12.359619140625, - "accepted": 12.359619140625, - "go": 1.7999999999999998, - "client": 1.7999999999999998, - "internal": 1.7999999999999998, - "release": 1.7999999999999998, - "good": 1.7999999999999998, - "first": 1.7999999999999998, - "issue": 1.7999999999999998, - "+": 1.7999999999999998, - "great": 1, - "insight": 1, - "greenkeeper": 1, - "hack": 1, - "hacked": 1, - "hacktoberfest": 1, - "handshakes": 1, - "has": 1, - "bounty": 1, - "pr": 3.2399999999999993, - "help": 1.875, - "wanted": 1.875, - "sos": 1.875, - "hi-pri": 1, - "high-priority": 1, - "hodor": 1, - "hot": 1, - "html": 1, - "htmlfile": 1, - "https": 1, - "icebox": 1, - "ie": 1, - "import": 1, - "in": 16, - "progress": 1, - "started": 1, - "infrastructure": 1.7999999999999998, - "hammer": 1.7999999999999998, - "and": 1.7999999999999998, - "wrench": 1.7999999999999998, - "installer": 1, - "cleanup": 1, - "internal-issue-created": 1, - "invalid": 1, - "ios": 1, - "jquery": 1, - "differences": 1, - "jsonp-polling": 1, - "kbfs": 1, - "lang-crystal": 1, - "lang-dart": 1, - "lang-elixir": 1, - "lang-go": 1, - "lang-julia": 1, - "lang-objc": 1, - "lang-r": 1, - "lang-scala": 1, - "legal": 1, - "library": 1, - "lint": 1, - "linux": 1, - "lks": 1, - "m": 1, - "s": 1, - "macos": 1, - "maintenance": 1, - "major": 1, - "mass": 1, - "purge": 1, - "minor": 1, - "mobile": 1.875, - "device": 1.875, - "support": 1.875, - "proxy": 1, - "modules": 1, - "must-triage": 1, - "namespaces": 1, - "need-info": 1, - "needs": 14, - "example": 1, - "app": 1, - "failing": 1, - "browser": 1, - "testing": 1, - "changelog": 1, - "info": 1.75, - "more": 1.75, - "man": 1.75, - "shrugging": 1.75, - "repro": 1, - "triage": 1, - "needs-more-info": 1, - "needs-research": 1, - "new": 1.875, - "proposal": 1.875, - "best": 1, - "practice": 1, - "node": 1, - "next": 1, - "bug": 1, - "on": 1, - "hold": 1, - "open": 1, - "operations": 1, - "opinions": 1, - "needed": 1.75, - "optimisation": 1, - "other": 1.7999999999999998, - "language": 1.7999999999999998, - "integration": 1.7999999999999998, - "p": 1, - "packaging": 1, - "parser": 1, - "parser-specific": 1, - "pending": 1, - "performance": 1, - "planned": 1, - "for": 3.2399999999999993, - "pr-existing": 1, - "breaking": 2, - "change": 2, - "boom": 2, - "fix": 1, - "⬆️": 1, - "deprecation": 1, - "memo": 1, - "house": 1, - "merged": 1, - "rocket": 2, - "polish": 1, - "nail": 1, - "care": 1, - "ready": 3.2399999999999993, - "to": 1.7999999999999998, - "be": 1, - "reviewed-approved": 1, - "reviewed-changes-requested": 1, - "spec": 1.875, - "compliance": 1, - "eyeglasses": 1, - "underlying": 1, - "unreviewed": 1, - "wip": 1, - "priority": 1, - "high": 1, - "low": 1, - "production": 1, - "project": 1, - "management": 1, - "question": 1.875, - "react": 1, - "flare": 1, - "native": 1, - "refactor": 1, - "regression": 2, - "alpha": 1, - "released": 1, - "reminder": 1, - "resolution": 1, - "information": 1, - "redirect": 1, - "revisitinfuture": 1, - "rfc": 1, - "ruby": 1, - "security": 1, - "shell": 1, - "socket": 1, - "io": 1, - "spam": 1, - "spammy": 1, - "async": 1.875, - "functions": 1.875, - "generators": 1, - "bigint": 1, - "class": 1, - "fields": 1, - "classes": 1, - "decorators": 1, - "(legacy)": 1, - "expressions": 1, - "stale": 1, - "status": 5.669999999999998, - "heavy": 1.75, - "check": 1.75, - "mark": 1.75, - "available": 1, - "free": 1, - "cla": 1.75, - "signed": 1.75, - "code": 3.2399999999999993, - "approved": 1, - "construction": 1, - "worker": 1, - "detective": 1, - "left": 1, - "out": 1, - "luggage": 1, - "stop": 1, - "sign": 1, - "deploy": 1, - "passport": 1.75, - "control": 1.75, - "waiting": 1, - "wontfix": 1, - "work": 1, - "suggestion": 1, - "syntax": 1, - "technical": 1, - "debt": 1, - "technical-debt": 1, - "tests": 1, - "tips": 1, - "todo": 1, - "spiral": 1, - "notepad": 1, - "translation": 1, - "travis-yml": 1, - "triage-done": 1, - "trivial": 1, - "type": 1, - "archive": 1, - "community": 1, - "discuss": 1, - "speech": 1.875, - "balloon": 1.875, - "update": 1, - "repeat": 1, - "bulb": 1, - "getting": 1, - "x": 2, - "non-library": 1, - "grey": 1, - "sendgrid": 1, - "vulnerability": 1, - "warning": 1, - "types": 1, - "unable": 1, - "reproduce": 1, - "unconfirmed": 1, - "upstream": 1, - "ux": 1, - "v": 1, - "website": 1, - "websocket": 1, - "weekly-digest": 1, - "windows": 1, - "writer-needed": 1, - "wrong": 1, - "repo": 1, - "xhr-polling": 1, - "-": 2, - "backlog": 2, - "working": 1, - "done": 1, - "backport": 2, - "arrow": 1.7999999999999998, - "heading": 1.7999999999999998, - "down": 1.7999999999999998, - "pull": 1.7999999999999998, - "font-face": 1, - "abandoned": 1, - "accessibility": 1, - "adapter": 1, - "advance": 1.875, - "workflow": 1.875, - "android": 1, - "angular": 1, - "animals": 1, - "answered": 1, - "area": 2, - "crash": 2, - "arrows": 1, - "automotive": 1, - "fa": 1, - "pro": 1, - "awaiting-review": 1, - "beginner-friendly": 1, - "beverage": 1, - "blocked": 1, - "blocker": 1, - "bootstrap": 1, - "brand": 2, - "icon": 2, - "safari": 1, - "report": 1, - "business": 1, - "c": 1, - "c++": 1, - "cannot": 1, - "cantfix": 1, - "cdn": 1, - "chat": 1, - "chore": 1, - "no": 1, - "yes": 1, - "closed": 1.7999999999999998, - "due": 1.7999999999999998, - "inactivity": 1.7999999999999998, - "cmty": 1, - "bug-report": 1, - "feature-request": 1, - "cancelled": 1, - "fixed": 1, - "implemented": 1, - "resolved": 1 - }, - "positive_weights_sum": {}, - "negative_weights_sum": {} - }, - "translation": { - "positive_weights": { - "translation": 22.78125, - "bias": 0.0019775390625000008, - "component": 0.28125, - "concurrent": 0.75, - "mode": 0.75, - "core": 0.75, - "utilities": 0.75, - "developer": 2, - "tools": 2, - "dom": 2, - "eslint": 2, - "rules": 2, - "hooks": 2, - "optimizing": 2, - "compiler": 2, - "reactis": 2, - "reconciler": 2, - "scheduler": 2, - "server": 2, - "rendering": 2, - "shallow": 2, - "renderer": 2, - "suspense": 2, - "test": 2, - "utils": 2, - "configuration": 0.5, - "confirmed": 2, - "conflicts": 2, - "contribution": 0.6666666666666667, - "welcome": 0.6666666666666667, - "critical": 2, - "csharp": 2, - "css": 2, - "css-select": 2, - "currency": 0.6666666666666667, - "(category)": 0.6666666666666667, - "defect": 2, - "dependencies": 2, - "dependency": 0.6666666666666667, - "related": 0.6666666666666667, - "design": 2, - "difficulty": 0.8333333333333333, - "challenging": 2, - "easy": 2, - "hard": 2, - "medium": 2, - "starter": 2, - "unknown": 0.8333333333333333, - "or": 0.8333333333333333, - "n": 0.8333333333333333, - "a": 0.8333333333333333, - "very": 2, - "discussion": 2, - "do": 2, - "not": 2, - "merge": 2, - "doc": 2, - "docs": 2, - "documentation": 2, - "book": 2, - "duplicate": 2, - "electron": 2, - "enhancement": 2, - "enterprise": 2, - "enterprise-": 2, - "-backport": 2, - "es": 2, - "external": 2, - "externs": 2, - "feat": 2, - "cli": 2, - "babel": 2, - "cli-service": 2, - "build": 2, - "serve": 2, - "e": 2, - "e-cypress": 2, - "e-nightwatch": 2, - "plugin": 2, - "api": 2, - "pwa": 2, - "typescript": 2, - "ui": 2, - "unit-jest": 2, - "unit-mocha": 2, - "feature": 2, - "request": 2, - "feedback": 2, - "requested": 2, - "files": 2, - "first-timers-only": 2, - "flags": 2, - "flashsocket": 2, - "fontawesome": 2, - "com": 2, - "food": 2, - "freemasonry": 2, - "icons": 2, - "frontend": 2, - "future": 2, - "architecture": 2, - "enhancements": 2, - "crypto": 2, - "genders": 2, - "general": 2, - "js": 2, - "gh": 2, - "review": 2, - "accepted": 2, - "go": 0.8, - "client": 0.8, - "internal": 0.8, - "release": 0.8, - "good": 0.8, - "first": 0.8, - "issue": 0.8, - "+": 0.8, - "great": 2, - "insight": 2, - "greenkeeper": 2, - "hack": 2, - "hacked": 2, - "hacktoberfest": 2, - "handshakes": 2, - "has": 2, - "bounty": 2, - "pr": 2, - "help": 2, - "wanted": 2, - "sos": 2, - "hi-pri": 2, - "high-priority": 2, - "hodor": 2, - "hot": 2, - "html": 2, - "htmlfile": 2, - "https": 2, - "icebox": 2, - "ie": 2, - "import": 2, - "in": 2, - "progress": 2, - "started": 2, - "infrastructure": 2, - "hammer": 2, - "and": 2, - "wrench": 2, - "installer": 2, - "cleanup": 2, - "internal-issue-created": 2, - "invalid": 2, - "ios": 2, - "jquery": 2, - "differences": 2, - "jsonp-polling": 2, - "kbfs": 2, - "lang-crystal": 2, - "lang-dart": 2, - "lang-elixir": 2, - "lang-go": 2, - "lang-julia": 2, - "lang-objc": 2, - "lang-r": 2, - "lang-scala": 2, - "legal": 2, - "library": 2, - "lint": 2, - "linux": 2, - "lks": 2, - "m": 2, - "s": 2, - "macos": 2, - "maintenance": 2, - "major": 2, - "mass": 2, - "purge": 2, - "minor": 2, - "mobile": 2, - "device": 2, - "support": 2, - "proxy": 2, - "modules": 2, - "must-triage": 2, - "namespaces": 2, - "need-info": 2, - "needs": 2, - "example": 2, - "app": 2, - "failing": 2, - "browser": 2, - "testing": 2, - "changelog": 2, - "info": 2, - "more": 2, - "man": 2, - "shrugging": 2, - "repro": 2, - "triage": 2, - "needs-more-info": 2, - "needs-research": 2, - "new": 2, - "proposal": 2, - "best": 2, - "practice": 2, - "node": 2, - "next": 2, - "bug": 2, - "on": 2, - "hold": 2, - "open": 2, - "operations": 2, - "opinions": 2, - "needed": 2, - "optimisation": 2, - "other": 2, - "language": 2, - "integration": 2, - "p": 2, - "packaging": 2, - "parser": 2, - "parser-specific": 2, - "pending": 2, - "performance": 2, - "planned": 2, - "for": 2, - "pr-existing": 2, - "breaking": 2, - "change": 2, - "boom": 2, - "fix": 2, - "⬆️": 2, - "deprecation": 2, - "memo": 2, - "house": 2, - "merged": 2, - "rocket": 2, - "polish": 2, - "nail": 2, - "care": 2, - "ready": 2, - "to": 2, - "be": 2, - "reviewed-approved": 2, - "reviewed-changes-requested": 2, - "spec": 2, - "compliance": 2, - "eyeglasses": 2, - "underlying": 2, - "unreviewed": 2, - "wip": 2, - "priority": 2, - "high": 2, - "low": 2, - "production": 2, - "project": 2, - "management": 2, - "question": 2, - "react": 2, - "flare": 2, - "native": 2, - "refactor": 2, - "regression": 2, - "alpha": 2, - "released": 2, - "reminder": 2, - "resolution": 2, - "information": 2, - "redirect": 2, - "revisitinfuture": 2, - "rfc": 2, - "ruby": 2, - "security": 2, - "shell": 2, - "socket": 2, - "io": 2, - "spam": 2, - "spammy": 2, - "async": 2, - "functions": 2, - "generators": 2, - "bigint": 2, - "class": 2, - "fields": 2, - "classes": 2, - "decorators": 2, - "(legacy)": 2, - "expressions": 2, - "stale": 2, - "status": 2, - "heavy": 2, - "check": 2, - "mark": 2, - "available": 2, - "free": 2, - "cla": 2, - "signed": 2, - "code": 2, - "approved": 2, - "construction": 2, - "worker": 2, - "detective": 2, - "left": 2, - "out": 2, - "luggage": 2, - "stop": 2, - "sign": 2, - "deploy": 2, - "passport": 2, - "control": 2, - "waiting": 2, - "wontfix": 2, - "work": 2, - "suggestion": 2, - "syntax": 2, - "technical": 2, - "debt": 2, - "technical-debt": 2, - "tests": 2, - "tips": 2, - "todo": 2, - "spiral": 2, - "notepad": 2, - "travis-yml": 2, - "triage-done": 2, - "trivial": 2, - "type": 2, - "archive": 2, - "community": 2, - "discuss": 2, - "speech": 2, - "balloon": 2, - "update": 2, - "repeat": 2, - "bulb": 2, - "getting": 2, - "x": 2, - "non-library": 2, - "grey": 2, - "sendgrid": 2, - "vulnerability": 2, - "warning": 2, - "types": 2, - "unable": 2, - "reproduce": 2, - "unconfirmed": 2, - "upstream": 2, - "ux": 2, - "v": 2, - "website": 2, - "websocket": 2, - "weekly-digest": 2, - "windows": 2, - "writer-needed": 2, - "wrong": 2, - "repo": 2, - "xhr-polling": 2, - "-": 2, - "backlog": 2, - "working": 2, - "done": 2, - "backport": 2, - "arrow": 2, - "heading": 2, - "down": 2, - "pull": 2, - "font-face": 2, - "abandoned": 2, - "accessibility": 2, - "adapter": 2, - "advance": 2, - "workflow": 2, - "android": 2, - "angular": 2, - "animals": 2, - "answered": 2, - "area": 2, - "crash": 2, - "arrows": 2, - "automotive": 2, - "fa": 2, - "pro": 2, - "awaiting-review": 2, - "beginner-friendly": 2, - "beverage": 2, - "blocked": 2, - "blocker": 2, - "bootstrap": 2, - "brand": 2, - "icon": 2, - "safari": 2, - "report": 2, - "business": 2, - "c": 2, - "c++": 2, - "cannot": 2, - "cantfix": 2, - "cdn": 2, - "chat": 2, - "chore": 2, - "no": 2, - "yes": 2, - "closed": 2, - "due": 2, - "inactivity": 2, - "cmty": 2, - "bug-report": 2, - "feature-request": 2, - "cancelled": 2, - "fixed": 2, - "implemented": 2, - "resolved": 2 - }, - "negative_weights": { - "translation": 0.015625, - "bias": 5.606323242187498, - "component": 3.515625, - "concurrent": 1.875, - "mode": 1.875, - "core": 1.875, - "utilities": 1.875, - "developer": 1, - "tools": 1, - "dom": 1, - "eslint": 1, - "rules": 1, - "hooks": 1, - "optimizing": 1, - "compiler": 1, - "reactis": 1, - "reconciler": 1, - "scheduler": 1, - "server": 1, - "rendering": 1, - "shallow": 1, - "renderer": 1, - "suspense": 1, - "test": 1, - "utils": 1, - "configuration": 2.25, - "confirmed": 1, - "conflicts": 1, - "contribution": 2, - "welcome": 2, - "critical": 1, - "csharp": 1, - "css": 1, - "css-select": 1, - "currency": 2, - "(category)": 2, - "defect": 1, - "dependencies": 1, - "dependency": 2, - "related": 2, - "design": 1, - "difficulty": 1.75, - "challenging": 1, - "easy": 1, - "hard": 1, - "medium": 1, - "starter": 1, - "unknown": 1.75, - "or": 1.75, - "n": 1.75, - "a": 1.75, - "very": 1, - "discussion": 1, - "do": 1, - "not": 1, - "merge": 1, - "doc": 1, - "docs": 1, - "documentation": 1, - "book": 1, - "duplicate": 1, - "electron": 1, - "enhancement": 1, - "enterprise": 1, - "enterprise-": 1, - "-backport": 1, - "es": 1, - "external": 1, - "externs": 1, - "feat": 1, - "cli": 1, - "babel": 1, - "cli-service": 1, - "build": 1, - "serve": 1, - "e": 1, - "e-cypress": 1, - "e-nightwatch": 1, - "plugin": 1, - "api": 1, - "pwa": 1, - "typescript": 1, - "ui": 1, - "unit-jest": 1, - "unit-mocha": 1, - "feature": 1, - "request": 1, - "feedback": 1, - "requested": 1, - "files": 1, - "first-timers-only": 1, - "flags": 1, - "flashsocket": 1, - "fontawesome": 1, - "com": 1, - "food": 1, - "freemasonry": 1, - "icons": 1, - "frontend": 1, - "future": 1, - "architecture": 1, - "enhancements": 1, - "crypto": 1, - "genders": 1, - "general": 1, - "js": 1, - "gh": 1, - "review": 1, - "accepted": 1, - "go": 1.7999999999999998, - "client": 1.7999999999999998, - "internal": 1.7999999999999998, - "release": 1.7999999999999998, - "good": 1.7999999999999998, - "first": 1.7999999999999998, - "issue": 1.7999999999999998, - "+": 1.7999999999999998, - "great": 1, - "insight": 1, - "greenkeeper": 1, - "hack": 1, - "hacked": 1, - "hacktoberfest": 1, - "handshakes": 1, - "has": 1, - "bounty": 1, - "pr": 1, - "help": 1, - "wanted": 1, - "sos": 1, - "hi-pri": 1, - "high-priority": 1, - "hodor": 1, - "hot": 1, - "html": 1, - "htmlfile": 1, - "https": 1, - "icebox": 1, - "ie": 1, - "import": 1, - "in": 1, - "progress": 1, - "started": 1, - "infrastructure": 1, - "hammer": 1, - "and": 1, - "wrench": 1, - "installer": 1, - "cleanup": 1, - "internal-issue-created": 1, - "invalid": 1, - "ios": 1, - "jquery": 1, - "differences": 1, - "jsonp-polling": 1, - "kbfs": 1, - "lang-crystal": 1, - "lang-dart": 1, - "lang-elixir": 1, - "lang-go": 1, - "lang-julia": 1, - "lang-objc": 1, - "lang-r": 1, - "lang-scala": 1, - "legal": 1, - "library": 1, - "lint": 1, - "linux": 1, - "lks": 1, - "m": 1, - "s": 1, - "macos": 1, - "maintenance": 1, - "major": 1, - "mass": 1, - "purge": 1, - "minor": 1, - "mobile": 1, - "device": 1, - "support": 1, - "proxy": 1, - "modules": 1, - "must-triage": 1, - "namespaces": 1, - "need-info": 1, - "needs": 1, - "example": 1, - "app": 1, - "failing": 1, - "browser": 1, - "testing": 1, - "changelog": 1, - "info": 1, - "more": 1, - "man": 1, - "shrugging": 1, - "repro": 1, - "triage": 1, - "needs-more-info": 1, - "needs-research": 1, - "new": 1, - "proposal": 1, - "best": 1, - "practice": 1, - "node": 1, - "next": 1, - "bug": 1, - "on": 1, - "hold": 1, - "open": 1, - "operations": 1, - "opinions": 1, - "needed": 1, - "optimisation": 1, - "other": 1, - "language": 1, - "integration": 1, - "p": 1, - "packaging": 1, - "parser": 1, - "parser-specific": 1, - "pending": 1, - "performance": 1, - "planned": 1, - "for": 1, - "pr-existing": 1, - "breaking": 1, - "change": 1, - "boom": 1, - "fix": 1, - "⬆️": 1, - "deprecation": 1, - "memo": 1, - "house": 1, - "merged": 1, - "rocket": 1, - "polish": 1, - "nail": 1, - "care": 1, - "ready": 1, - "to": 1, - "be": 1, - "reviewed-approved": 1, - "reviewed-changes-requested": 1, - "spec": 1, - "compliance": 1, - "eyeglasses": 1, - "underlying": 1, - "unreviewed": 1, - "wip": 1, - "priority": 1, - "high": 1, - "low": 1, - "production": 1, - "project": 1, - "management": 1, - "question": 1, - "react": 1, - "flare": 1, - "native": 1, - "refactor": 1, - "regression": 1, - "alpha": 1, - "released": 1, - "reminder": 1, - "resolution": 1, - "information": 1, - "redirect": 1, - "revisitinfuture": 1, - "rfc": 1, - "ruby": 1, - "security": 1, - "shell": 1, - "socket": 1, - "io": 1, - "spam": 1, - "spammy": 1, - "async": 1, - "functions": 1, - "generators": 1, - "bigint": 1, - "class": 1, - "fields": 1, - "classes": 1, - "decorators": 1, - "(legacy)": 1, - "expressions": 1, - "stale": 1, - "status": 1, - "heavy": 1, - "check": 1, - "mark": 1, - "available": 1, - "free": 1, - "cla": 1, - "signed": 1, - "code": 1, - "approved": 1, - "construction": 1, - "worker": 1, - "detective": 1, - "left": 1, - "out": 1, - "luggage": 1, - "stop": 1, - "sign": 1, - "deploy": 1, - "passport": 1, - "control": 1, - "waiting": 1, - "wontfix": 1, - "work": 1, - "suggestion": 1, - "syntax": 1, - "technical": 1, - "debt": 1, - "technical-debt": 1, - "tests": 1, - "tips": 1, - "todo": 1, - "spiral": 1, - "notepad": 1, - "travis-yml": 1, - "triage-done": 1, - "trivial": 1, - "type": 1, - "archive": 1, - "community": 1, - "discuss": 1, - "speech": 1, - "balloon": 1, - "update": 1, - "repeat": 1, - "bulb": 1, - "getting": 1, - "x": 1, - "non-library": 1, - "grey": 1, - "sendgrid": 1, - "vulnerability": 1, - "warning": 1, - "types": 1, - "unable": 1, - "reproduce": 1, - "unconfirmed": 1, - "upstream": 1, - "ux": 1, - "v": 1, - "website": 1, - "websocket": 1, - "weekly-digest": 1, - "windows": 1, - "writer-needed": 1, - "wrong": 1, - "repo": 1, - "xhr-polling": 1, - "-": 1, - "backlog": 1, - "working": 1, - "done": 1, - "backport": 1, - "arrow": 1, - "heading": 1, - "down": 1, - "pull": 1, - "font-face": 1, - "abandoned": 1, - "accessibility": 1, - "adapter": 1, - "advance": 1, - "workflow": 1, - "android": 1, - "angular": 1, - "animals": 1, - "answered": 1, - "area": 1, - "crash": 1, - "arrows": 1, - "automotive": 1, - "fa": 1, - "pro": 1, - "awaiting-review": 1, - "beginner-friendly": 1, - "beverage": 1, - "blocked": 1, - "blocker": 1, - "bootstrap": 1, - "brand": 1, - "icon": 1, - "safari": 1, - "report": 1, - "business": 1, - "c": 1, - "c++": 1, - "cannot": 1, - "cantfix": 1, - "cdn": 1, - "chat": 1, - "chore": 1, - "no": 1, - "yes": 1, - "closed": 1, - "due": 1, - "inactivity": 1, - "cmty": 1, - "bug-report": 1, - "feature-request": 1, - "cancelled": 1, - "fixed": 1, - "implemented": 1, - "resolved": 1 - }, - "positive_weights_sum": {}, - "negative_weights_sum": {} - }, - "blog": { - "positive_weights": { - "weekly-digest": 22.78125, - "bias": 0.0019775390625000008, - "component": 0.28125, - "concurrent": 0.75, - "mode": 0.75, - "core": 0.75, - "utilities": 0.75, - "developer": 2, - "tools": 2, - "dom": 2, - "eslint": 2, - "rules": 2, - "hooks": 2, - "optimizing": 2, - "compiler": 2, - "reactis": 2, - "reconciler": 2, - "scheduler": 2, - "server": 2, - "rendering": 2, - "shallow": 2, - "renderer": 2, - "suspense": 2, - "test": 2, - "utils": 2, - "configuration": 0.5, - "confirmed": 2, - "conflicts": 2, - "contribution": 0.6666666666666667, - "welcome": 0.6666666666666667, - "critical": 2, - "csharp": 2, - "css": 2, - "css-select": 2, - "currency": 0.6666666666666667, - "(category)": 0.6666666666666667, - "defect": 2, - "dependencies": 2, - "dependency": 0.6666666666666667, - "related": 0.6666666666666667, - "design": 2, - "difficulty": 0.8333333333333334, - "challenging": 2, - "easy": 2, - "hard": 2, - "medium": 2, - "starter": 2, - "unknown": 0.8333333333333334, - "or": 0.8333333333333334, - "n": 0.8333333333333334, - "a": 0.8333333333333334, - "very": 2, - "discussion": 2, - "do": 2, - "not": 2, - "merge": 2, - "doc": 2, - "docs": 2, - "documentation": 2, - "book": 2, - "duplicate": 2, - "electron": 2, - "enhancement": 2, - "enterprise": 2, - "enterprise-": 2, - "-backport": 2, - "es": 2, - "external": 2, - "externs": 2, - "feat": 2, - "cli": 2, - "babel": 2, - "cli-service": 2, - "build": 2, - "serve": 2, - "e": 2, - "e-cypress": 2, - "e-nightwatch": 2, - "plugin": 2, - "api": 2, - "pwa": 2, - "typescript": 2, - "ui": 2, - "unit-jest": 2, - "unit-mocha": 2, - "feature": 2, - "request": 2, - "feedback": 2, - "requested": 2, - "files": 2, - "first-timers-only": 2, - "flags": 2, - "flashsocket": 2, - "fontawesome": 2, - "com": 2, - "food": 2, - "freemasonry": 2, - "icons": 2, - "frontend": 2, - "future": 2, - "architecture": 2, - "enhancements": 2, - "crypto": 2, - "genders": 2, - "general": 2, - "js": 2, - "gh": 2, - "review": 2, - "accepted": 2, - "go": 0.8, - "client": 0.8, - "internal": 0.8, - "release": 0.8, - "good": 0.8, - "first": 0.8, - "issue": 0.8, - "+": 0.8, - "great": 2, - "insight": 2, - "greenkeeper": 2, - "hack": 2, - "hacked": 2, - "hacktoberfest": 2, - "handshakes": 2, - "has": 2, - "bounty": 2, - "pr": 2, - "help": 2, - "wanted": 2, - "sos": 2, - "hi-pri": 2, - "high-priority": 2, - "hodor": 2, - "hot": 2, - "html": 2, - "htmlfile": 2, - "https": 2, - "icebox": 2, - "ie": 2, - "import": 2, - "in": 2, - "progress": 2, - "started": 2, - "infrastructure": 2, - "hammer": 2, - "and": 2, - "wrench": 2, - "installer": 2, - "cleanup": 2, - "internal-issue-created": 2, - "invalid": 2, - "ios": 2, - "jquery": 2, - "differences": 2, - "jsonp-polling": 2, - "kbfs": 2, - "lang-crystal": 2, - "lang-dart": 2, - "lang-elixir": 2, - "lang-go": 2, - "lang-julia": 2, - "lang-objc": 2, - "lang-r": 2, - "lang-scala": 2, - "legal": 2, - "library": 2, - "lint": 2, - "linux": 2, - "lks": 2, - "m": 2, - "s": 2, - "macos": 2, - "maintenance": 2, - "major": 2, - "mass": 2, - "purge": 2, - "minor": 2, - "mobile": 2, - "device": 2, - "support": 2, - "proxy": 2, - "modules": 2, - "must-triage": 2, - "namespaces": 2, - "need-info": 2, - "needs": 2, - "example": 2, - "app": 2, - "failing": 2, - "browser": 2, - "testing": 2, - "changelog": 2, - "info": 2, - "more": 2, - "man": 2, - "shrugging": 2, - "repro": 2, - "triage": 2, - "needs-more-info": 2, - "needs-research": 2, - "new": 2, - "proposal": 2, - "best": 2, - "practice": 2, - "node": 2, - "next": 2, - "bug": 2, - "on": 2, - "hold": 2, - "open": 2, - "operations": 2, - "opinions": 2, - "needed": 2, - "optimisation": 2, - "other": 2, - "language": 2, - "integration": 2, - "p": 2, - "packaging": 2, - "parser": 2, - "parser-specific": 2, - "pending": 2, - "performance": 2, - "planned": 2, - "for": 2, - "pr-existing": 2, - "breaking": 2, - "change": 2, - "boom": 2, - "fix": 2, - "⬆️": 2, - "deprecation": 2, - "memo": 2, - "house": 2, - "merged": 2, - "rocket": 2, - "polish": 2, - "nail": 2, - "care": 2, - "ready": 2, - "to": 2, - "be": 2, - "reviewed-approved": 2, - "reviewed-changes-requested": 2, - "spec": 2, - "compliance": 2, - "eyeglasses": 2, - "underlying": 2, - "unreviewed": 2, - "wip": 2, - "priority": 2, - "high": 2, - "low": 2, - "production": 2, - "project": 2, - "management": 2, - "question": 2, - "react": 2, - "flare": 2, - "native": 2, - "refactor": 2, - "regression": 2, - "alpha": 2, - "released": 2, - "reminder": 2, - "resolution": 2, - "information": 2, - "redirect": 2, - "revisitinfuture": 2, - "rfc": 2, - "ruby": 2, - "security": 2, - "shell": 2, - "socket": 2, - "io": 2, - "spam": 2, - "spammy": 2, - "async": 2, - "functions": 2, - "generators": 2, - "bigint": 2, - "class": 2, - "fields": 2, - "classes": 2, - "decorators": 2, - "(legacy)": 2, - "expressions": 2, - "stale": 2, - "status": 2, - "heavy": 2, - "check": 2, - "mark": 2, - "available": 2, - "free": 2, - "cla": 2, - "signed": 2, - "code": 2, - "approved": 2, - "construction": 2, - "worker": 2, - "detective": 2, - "left": 2, - "out": 2, - "luggage": 2, - "stop": 2, - "sign": 2, - "deploy": 2, - "passport": 2, - "control": 2, - "waiting": 2, - "wontfix": 2, - "work": 2, - "suggestion": 2, - "syntax": 2, - "technical": 2, - "debt": 2, - "technical-debt": 2, - "tests": 2, - "tips": 2, - "todo": 2, - "spiral": 2, - "notepad": 2, - "translation": 2, - "travis-yml": 2, - "triage-done": 2, - "trivial": 2, - "type": 2, - "archive": 2, - "community": 2, - "discuss": 2, - "speech": 2, - "balloon": 2, - "update": 2, - "repeat": 2, - "bulb": 2, - "getting": 2, - "x": 2, - "non-library": 2, - "grey": 2, - "sendgrid": 2, - "vulnerability": 2, - "warning": 2, - "types": 2, - "unable": 2, - "reproduce": 2, - "unconfirmed": 2, - "upstream": 2, - "ux": 2, - "v": 2, - "website": 2, - "websocket": 2, - "windows": 2, - "writer-needed": 2, - "wrong": 2, - "repo": 2, - "xhr-polling": 2, - "-": 2, - "backlog": 2, - "working": 2, - "done": 2, - "backport": 2, - "arrow": 2, - "heading": 2, - "down": 2, - "pull": 2, - "font-face": 2, - "abandoned": 2, - "accessibility": 2, - "adapter": 2, - "advance": 2, - "workflow": 2, - "android": 2, - "angular": 2, - "animals": 2, - "answered": 2, - "area": 2, - "crash": 2, - "arrows": 2, - "automotive": 2, - "fa": 2, - "pro": 2, - "awaiting-review": 2, - "beginner-friendly": 2, - "beverage": 2, - "blocked": 2, - "blocker": 2, - "bootstrap": 2, - "brand": 2, - "icon": 2, - "safari": 2, - "report": 2, - "business": 2, - "c": 2, - "c++": 2, - "cannot": 2, - "cantfix": 2, - "cdn": 2, - "chat": 2, - "chore": 2, - "no": 2, - "yes": 2, - "closed": 2, - "due": 2, - "inactivity": 2, - "cmty": 2, - "bug-report": 2, - "feature-request": 2, - "cancelled": 2, - "fixed": 2, - "implemented": 2, - "resolved": 2 - }, - "negative_weights": { - "weekly-digest": 0.015625, - "bias": 5.606323242187498, - "component": 3.515625, - "concurrent": 1.875, - "mode": 1.875, - "core": 1.875, - "utilities": 1.875, - "developer": 1, - "tools": 1, - "dom": 1, - "eslint": 1, - "rules": 1, - "hooks": 1, - "optimizing": 1, - "compiler": 1, - "reactis": 1, - "reconciler": 1, - "scheduler": 1, - "server": 1, - "rendering": 1, - "shallow": 1, - "renderer": 1, - "suspense": 1, - "test": 1, - "utils": 1, - "configuration": 2.25, - "confirmed": 1, - "conflicts": 1, - "contribution": 2, - "welcome": 2, - "critical": 1, - "csharp": 1, - "css": 1, - "css-select": 1, - "currency": 2, - "(category)": 2, - "defect": 1, - "dependencies": 1, - "dependency": 2, - "related": 2, - "design": 1, - "difficulty": 1.75, - "challenging": 1, - "easy": 1, - "hard": 1, - "medium": 1, - "starter": 1, - "unknown": 1.75, - "or": 1.75, - "n": 1.75, - "a": 1.75, - "very": 1, - "discussion": 1, - "do": 1, - "not": 1, - "merge": 1, - "doc": 1, - "docs": 1, - "documentation": 1, - "book": 1, - "duplicate": 1, - "electron": 1, - "enhancement": 1, - "enterprise": 1, - "enterprise-": 1, - "-backport": 1, - "es": 1, - "external": 1, - "externs": 1, - "feat": 1, - "cli": 1, - "babel": 1, - "cli-service": 1, - "build": 1, - "serve": 1, - "e": 1, - "e-cypress": 1, - "e-nightwatch": 1, - "plugin": 1, - "api": 1, - "pwa": 1, - "typescript": 1, - "ui": 1, - "unit-jest": 1, - "unit-mocha": 1, - "feature": 1, - "request": 1, - "feedback": 1, - "requested": 1, - "files": 1, - "first-timers-only": 1, - "flags": 1, - "flashsocket": 1, - "fontawesome": 1, - "com": 1, - "food": 1, - "freemasonry": 1, - "icons": 1, - "frontend": 1, - "future": 1, - "architecture": 1, - "enhancements": 1, - "crypto": 1, - "genders": 1, - "general": 1, - "js": 1, - "gh": 1, - "review": 1, - "accepted": 1, - "go": 1.7999999999999998, - "client": 1.7999999999999998, - "internal": 1.7999999999999998, - "release": 1.7999999999999998, - "good": 1.7999999999999998, - "first": 1.7999999999999998, - "issue": 1.7999999999999998, - "+": 1.7999999999999998, - "great": 1, - "insight": 1, - "greenkeeper": 1, - "hack": 1, - "hacked": 1, - "hacktoberfest": 1, - "handshakes": 1, - "has": 1, - "bounty": 1, - "pr": 1, - "help": 1, - "wanted": 1, - "sos": 1, - "hi-pri": 1, - "high-priority": 1, - "hodor": 1, - "hot": 1, - "html": 1, - "htmlfile": 1, - "https": 1, - "icebox": 1, - "ie": 1, - "import": 1, - "in": 1, - "progress": 1, - "started": 1, - "infrastructure": 1, - "hammer": 1, - "and": 1, - "wrench": 1, - "installer": 1, - "cleanup": 1, - "internal-issue-created": 1, - "invalid": 1, - "ios": 1, - "jquery": 1, - "differences": 1, - "jsonp-polling": 1, - "kbfs": 1, - "lang-crystal": 1, - "lang-dart": 1, - "lang-elixir": 1, - "lang-go": 1, - "lang-julia": 1, - "lang-objc": 1, - "lang-r": 1, - "lang-scala": 1, - "legal": 1, - "library": 1, - "lint": 1, - "linux": 1, - "lks": 1, - "m": 1, - "s": 1, - "macos": 1, - "maintenance": 1, - "major": 1, - "mass": 1, - "purge": 1, - "minor": 1, - "mobile": 1, - "device": 1, - "support": 1, - "proxy": 1, - "modules": 1, - "must-triage": 1, - "namespaces": 1, - "need-info": 1, - "needs": 1, - "example": 1, - "app": 1, - "failing": 1, - "browser": 1, - "testing": 1, - "changelog": 1, - "info": 1, - "more": 1, - "man": 1, - "shrugging": 1, - "repro": 1, - "triage": 1, - "needs-more-info": 1, - "needs-research": 1, - "new": 1, - "proposal": 1, - "best": 1, - "practice": 1, - "node": 1, - "next": 1, - "bug": 1, - "on": 1, - "hold": 1, - "open": 1, - "operations": 1, - "opinions": 1, - "needed": 1, - "optimisation": 1, - "other": 1, - "language": 1, - "integration": 1, - "p": 1, - "packaging": 1, - "parser": 1, - "parser-specific": 1, - "pending": 1, - "performance": 1, - "planned": 1, - "for": 1, - "pr-existing": 1, - "breaking": 1, - "change": 1, - "boom": 1, - "fix": 1, - "⬆️": 1, - "deprecation": 1, - "memo": 1, - "house": 1, - "merged": 1, - "rocket": 1, - "polish": 1, - "nail": 1, - "care": 1, - "ready": 1, - "to": 1, - "be": 1, - "reviewed-approved": 1, - "reviewed-changes-requested": 1, - "spec": 1, - "compliance": 1, - "eyeglasses": 1, - "underlying": 1, - "unreviewed": 1, - "wip": 1, - "priority": 1, - "high": 1, - "low": 1, - "production": 1, - "project": 1, - "management": 1, - "question": 1, - "react": 1, - "flare": 1, - "native": 1, - "refactor": 1, - "regression": 1, - "alpha": 1, - "released": 1, - "reminder": 1, - "resolution": 1, - "information": 1, - "redirect": 1, - "revisitinfuture": 1, - "rfc": 1, - "ruby": 1, - "security": 1, - "shell": 1, - "socket": 1, - "io": 1, - "spam": 1, - "spammy": 1, - "async": 1, - "functions": 1, - "generators": 1, - "bigint": 1, - "class": 1, - "fields": 1, - "classes": 1, - "decorators": 1, - "(legacy)": 1, - "expressions": 1, - "stale": 1, - "status": 1, - "heavy": 1, - "check": 1, - "mark": 1, - "available": 1, - "free": 1, - "cla": 1, - "signed": 1, - "code": 1, - "approved": 1, - "construction": 1, - "worker": 1, - "detective": 1, - "left": 1, - "out": 1, - "luggage": 1, - "stop": 1, - "sign": 1, - "deploy": 1, - "passport": 1, - "control": 1, - "waiting": 1, - "wontfix": 1, - "work": 1, - "suggestion": 1, - "syntax": 1, - "technical": 1, - "debt": 1, - "technical-debt": 1, - "tests": 1, - "tips": 1, - "todo": 1, - "spiral": 1, - "notepad": 1, - "translation": 1, - "travis-yml": 1, - "triage-done": 1, - "trivial": 1, - "type": 1, - "archive": 1, - "community": 1, - "discuss": 1, - "speech": 1, - "balloon": 1, - "update": 1, - "repeat": 1, - "bulb": 1, - "getting": 1, - "x": 1, - "non-library": 1, - "grey": 1, - "sendgrid": 1, - "vulnerability": 1, - "warning": 1, - "types": 1, - "unable": 1, - "reproduce": 1, - "unconfirmed": 1, - "upstream": 1, - "ux": 1, - "v": 1, - "website": 1, - "websocket": 1, - "windows": 1, - "writer-needed": 1, - "wrong": 1, - "repo": 1, - "xhr-polling": 1, - "-": 1, - "backlog": 1, - "working": 1, - "done": 1, - "backport": 1, - "arrow": 1, - "heading": 1, - "down": 1, - "pull": 1, - "font-face": 1, - "abandoned": 1, - "accessibility": 1, - "adapter": 1, - "advance": 1, - "workflow": 1, - "android": 1, - "angular": 1, - "animals": 1, - "answered": 1, - "area": 1, - "crash": 1, - "arrows": 1, - "automotive": 1, - "fa": 1, - "pro": 1, - "awaiting-review": 1, - "beginner-friendly": 1, - "beverage": 1, - "blocked": 1, - "blocker": 1, - "bootstrap": 1, - "brand": 1, - "icon": 1, - "safari": 1, - "report": 1, - "business": 1, - "c": 1, - "c++": 1, - "cannot": 1, - "cantfix": 1, - "cdn": 1, - "chat": 1, - "chore": 1, - "no": 1, - "yes": 1, - "closed": 1, - "due": 1, - "inactivity": 1, - "cmty": 1, - "bug-report": 1, - "feature-request": 1, - "cancelled": 1, - "fixed": 1, - "implemented": 1, - "resolved": 1 - }, - "positive_weights_sum": {}, - "negative_weights_sum": {} - } - }, - "pastTrainingSamples": [ - { - "input": "component: concurrent mode", - "output": ["null"] - }, - { - "input": "component: core utilities", - "output": ["maintenance"] - }, - { - "input": "component: developer tools", - "output": ["tool"] - }, - { - "input": "component: dom", - "output": ["code"] - }, - { - "input": "component: eslint rules", - "output": ["maintenance"] - }, - { - "input": "component: hooks", - "output": ["code"] - }, - { - "input": "component: optimizing compiler", - "output": ["code"] - }, - { - "input": "component: reactis", - "output": ["code"] - }, - { - "input": "component: reconciler", - "output": ["null"] - }, - { - "input": "component: scheduler", - "output": ["null"] - }, - { - "input": "component: server rendering", - "output": ["code"] - }, - { - "input": "component: shallow renderer", - "output": ["code"] - }, - { - "input": "component: suspense", - "output": ["null"] - }, - { - "input": "component: test renderer", - "output": ["test"] - }, - { - "input": "component: test utils", - "output": ["test"] - }, - { - "input": "configuration", - "output": ["code"] - }, - { - "input": "confirmed", - "output": ["null"] - }, - { - "input": "conflicts", - "output": ["null"] - }, - { - "input": "contribution welcome", - "output": ["null"] - }, - { - "input": "core", - "output": ["maintenance"] - }, - { - "input": "critical", - "output": ["null"] - }, - { - "input": "csharp", - "output": ["code"] - }, - { - "input": "css", - "output": ["code"] - }, - { - "input": "css-select", - "output": ["code"] - }, - { - "input": "currency (category)", - "output": ["financial"] - }, - { - "input": "defect", - "output": ["bug"] - }, - { - "input": "dependencies", - "output": ["maintenance"] - }, - { - "input": "dependency related", - "output": ["maintenance"] - }, - { - "input": "design", - "output": ["design"] - }, - { - "input": "design (category)", - "output": ["design"] - }, - { - "input": "difficulty: challenging", - "output": ["null"] - }, - { - "input": "difficulty: easy", - "output": ["null"] - }, - { - "input": "difficulty: hard", - "output": ["null"] - }, - { - "input": "difficulty: medium", - "output": ["null"] - }, - { - "input": "difficulty: starter", - "output": ["null"] - }, - { - "input": "difficulty: unknown or n/a", - "output": ["null"] - }, - { - "input": "difficulty: very hard", - "output": ["null"] - }, - { - "input": "discussion", - "output": ["ideas"] - }, - { - "input": "do not merge", - "output": ["null"] - }, - { - "input": "doc", - "output": ["doc"] - }, - { - "input": "docs", - "output": ["doc"] - }, - { - "input": "documentation", - "output": ["doc"] - }, - { - "input": "documentation :book:", - "output": ["doc"] - }, - { - "input": "duplicate", - "output": ["null"] - }, - { - "input": "electron", - "output": ["tool"] - }, - { - "input": "enhancement", - "output": ["maintenance"] - }, - { - "input": "enterprise", - "output": ["null"] - }, - { - "input": "enterprise-2.0-backport", - "output": ["null"] - }, - { - "input": "enterprise-2.1-backport", - "output": ["null"] - }, - { - "input": "enterprise-2.2-backport", - "output": ["null"] - }, - { - "input": "es6", - "output": ["code"] - }, - { - "input": "es7", - "output": ["code"] - }, - { - "input": "external", - "output": ["plugin"] - }, - { - "input": "externs", - "output": ["plugin"] - }, - { - "input": "feat/cli", - "output": ["code"] - }, - { - "input": "feat: babel", - "output": ["tool"] - }, - { - "input": "feat: cli", - "output": ["code"] - }, - { - "input": "feat: cli-service build", - "output": ["code"] - }, - { - "input": "feat: cli-service serve", - "output": ["code"] - }, - { - "input": "feat: e2e-cypress", - "output": ["test"] - }, - { - "input": "feat: e2e-nightwatch", - "output": ["test"] - }, - { - "input": "feat: eslint", - "output": ["maintenance"] - }, - { - "input": "feat: plugin api", - "output": ["plugin"] - }, - { - "input": "feat: pwa", - "output": ["code"] - }, - { - "input": "feat: typescript", - "output": ["code"] - }, - { - "input": "feat: ui", - "output": ["design"] - }, - { - "input": "feat: unit-jest", - "output": ["test"] - }, - { - "input": "feat: unit-mocha", - "output": ["test"] - }, - { - "input": "feature", - "output": ["ideas"] - }, - { - "input": "feature request", - "output": ["ideas"] - }, - { - "input": "feedback requested", - "output": ["null"] - }, - { - "input": "files (category)", - "output": ["null"] - }, - { - "input": "first-timers-only", - "output": ["null"] - }, - { - "input": "flags (category)", - "output": ["null"] - }, - { - "input": "flashsocket", - "output": ["tool"] - }, - { - "input": "fontawesome.com", - "output": ["null"] - }, - { - "input": "food (category)", - "output": ["null"] - }, - { - "input": "freemasonry icons", - "output": ["design"] - }, - { - "input": "frontend", - "output": ["code"] - }, - { - "input": "future architecture enhancements", - "output": ["ideas"] - }, - { - "input": "future crypto enhancements", - "output": ["ideas"] - }, - { - "input": "genders (category)", - "output": ["null"] - }, - { - "input": "general js", - "output": ["code"] - }, - { - "input": "gh review: accepted", - "output": ["null"] - }, - { - "input": "go client internal release", - "output": ["null"] - }, - { - "input": "good first issue", - "output": ["null"] - }, - { - "input": "good first issue :+1:", - "output": ["null"] - }, - { - "input": "great insight", - "output": ["ideas"] - }, - { - "input": "greenkeeper", - "output": ["infra"] - }, - { - "input": "hack", - "output": ["code"] - }, - { - "input": "hacked", - "output": ["security"] - }, - { - "input": "hacktoberfest", - "output": ["code"] - }, - { - "input": "handshakes", - "output": ["business"] - }, - { - "input": "has bounty", - "output": ["null"] - }, - { - "input": "has pr", - "output": ["null"] - }, - { - "input": "help", - "output": ["null"] - }, - { - "input": "help / pr wanted", - "output": ["null"] - }, - { - "input": "help wanted", - "output": ["null"] - }, - { - "input": "help wanted :sos:", - "output": ["null"] - }, - { - "input": "hi-pri", - "output": ["null"] - }, - { - "input": "high-priority", - "output": ["null"] - }, - { - "input": "hodor", - "output": ["null"] - }, - { - "input": "hot discussion", - "output": ["ideas"] - }, - { - "input": "html", - "output": ["code"] - }, - { - "input": "htmlfile", - "output": ["code"] - }, - { - "input": "https", - "output": ["null"] - }, - { - "input": "icebox", - "output": ["platform"] - }, - { - "input": "ie8", - "output": ["null"] - }, - { - "input": "import in progress", - "output": ["null"] - }, - { - "input": "import started", - "output": ["null"] - }, - { - "input": "in progress", - "output": ["null"] - }, - { - "input": "in review", - "output": ["null"] - }, - { - "input": "infrastructure :hammer_and_wrench:", - "output": ["infra"] - }, - { - "input": "installer", - "output": ["tool"] - }, - { - "input": "internal cleanup", - "output": ["maintenance"] - }, - { - "input": "internal-issue-created", - "output": ["bug"] - }, - { - "input": "invalid", - "output": ["null"] - }, - { - "input": "ios", - "output": ["platform"] - }, - { - "input": "jquery differences", - "output": ["null"] - }, - { - "input": "jsonp-polling", - "output": ["null"] - }, - { - "input": "kbfs", - "output": ["null"] - }, - { - "input": "lang-crystal", - "output": ["code"] - }, - { - "input": "lang-dart", - "output": ["code"] - }, - { - "input": "lang-elixir", - "output": ["code"] - }, - { - "input": "lang-go", - "output": ["code"] - }, - { - "input": "lang-julia", - "output": ["code"] - }, - { - "input": "lang-objc", - "output": ["code"] - }, - { - "input": "lang-r", - "output": ["code"] - }, - { - "input": "lang-scala", - "output": ["code"] - }, - { - "input": "legal", - "output": ["security"] - }, - { - "input": "library", - "output": ["tool"] - }, - { - "input": "lint", - "output": ["maintenance"] - }, - { - "input": "linux", - "output": ["platform"] - }, - { - "input": "lks", - "output": ["null"] - }, - { - "input": "m1.s0", - "output": ["null"] - }, - { - "input": "m1.s1", - "output": ["null"] - }, - { - "input": "m1.s2", - "output": ["null"] - }, - { - "input": "macos", - "output": ["platform"] - }, - { - "input": "maintenance", - "output": ["maintenance"] - }, - { - "input": "major", - "output": ["null"] - }, - { - "input": "mass purge 2015.10.26", - "output": ["null"] - }, - { - "input": "minor", - "output": ["null"] - }, - { - "input": "mobile device support", - "output": ["platform"] - }, - { - "input": "mode: proxy", - "output": ["null"] - }, - { - "input": "modules", - "output": ["code"] - }, - { - "input": "must-triage", - "output": ["null"] - }, - { - "input": "namespaces", - "output": ["null"] - }, - { - "input": "need-info", - "output": ["null"] - }, - { - "input": "needs a example app.", - "output": ["null"] - }, - { - "input": "needs a failing test", - "output": ["null"] - }, - { - "input": "needs browser testing", - "output": ["null"] - }, - { - "input": "needs changelog", - "output": ["null"] - }, - { - "input": "needs docs", - "output": ["null"] - }, - { - "input": "needs documentation", - "output": ["null"] - }, - { - "input": "needs info", - "output": ["null"] - }, - { - "input": "needs more info :man_shrugging:", - "output": ["null"] - }, - { - "input": "needs repro", - "output": ["null"] - }, - { - "input": "needs review", - "output": ["null"] - }, - { - "input": "needs triage", - "output": ["null"] - }, - { - "input": "needs-more-info", - "output": ["null"] - }, - { - "input": "needs-research", - "output": ["null"] - }, - { - "input": "new api proposal", - "output": ["ideas"] - }, - { - "input": "new best practice", - "output": ["ideas"] - }, - { - "input": "node", - "output": ["platform"] - }, - { - "input": "node next", - "output": ["platform"] - }, - { - "input": "not a bug", - "output": ["null"] - }, - { - "input": "on hold", - "output": ["null"] - }, - { - "input": "open", - "output": ["null"] - }, - { - "input": "operations", - "output": ["maintenance"] - }, - { - "input": "opinions needed", - "output": ["null"] - }, - { - "input": "optimisation", - "output": ["code"] - }, - { - "input": "other language integration feature", - "output": ["ideas"] - }, - { - "input": "p0", - "output": ["null"] - }, - { - "input": "p1", - "output": ["null"] - }, - { - "input": "p2", - "output": ["null"] - }, - { - "input": "p3", - "output": ["null"] - }, - { - "input": "packaging", - "output": ["platform"] - }, - { - "input": "parser", - "output": ["tool"] - }, - { - "input": "parser-specific", - "output": ["tool"] - }, - { - "input": "pending release", - "output": ["null"] - }, - { - "input": "performance", - "output": ["maintenance"] - }, - { - "input": "planned feature", - "output": ["null"] - }, - { - "input": "planned for next release", - "output": ["null"] - }, - { - "input": "pr welcome", - "output": ["null"] - }, - { - "input": "pr-existing", - "output": ["null"] - }, - { - "input": "pr: breaking change", - "output": ["code"] - }, - { - "input": "pr: breaking change :boom:", - "output": ["code"] - }, - { - "input": "pr: bug fix", - "output": ["bug"] - }, - { - "input": "pr: bug fix :bug:", - "output": ["bug"] - }, - { - "input": "pr: dependency ⬆️", - "output": ["maintenance"] - }, - { - "input": "pr: deprecation", - "output": ["null"] - }, - { - "input": "pr: docs :memo:", - "output": ["doc"] - }, - { - "input": "pr: documentation", - "output": ["doc"] - }, - { - "input": "pr: good example", - "output": ["example"] - }, - { - "input": "pr: internal", - "output": ["code"] - }, - { - "input": "pr: internal :house:", - "output": ["code"] - }, - { - "input": "pr: merged", - "output": ["null"] - }, - { - "input": "pr: needs review", - "output": ["null"] - }, - { - "input": "pr: new dependency", - "output": ["ideas"] - }, - { - "input": "pr: new feature", - "output": ["ideas"] - }, - { - "input": "pr: new feature :rocket:", - "output": ["ideas"] - }, - { - "input": "pr: polish :nail_care:", - "output": ["maintenance"] - }, - { - "input": "pr: ready for review", - "output": ["null"] - }, - { - "input": "pr: ready to be merged", - "output": ["null"] - }, - { - "input": "pr: reviewed-approved", - "output": ["null"] - }, - { - "input": "pr: reviewed-changes-requested", - "output": ["null"] - }, - { - "input": "pr: spec compliance :eyeglasses:", - "output": ["doc"] - }, - { - "input": "pr: underlying tools", - "output": ["tool"] - }, - { - "input": "pr: unreviewed", - "output": ["null"] - }, - { - "input": "pr: wip", - "output": ["null"] - }, - { - "input": "priority: critical", - "output": ["null"] - }, - { - "input": "priority: high", - "output": ["null"] - }, - { - "input": "priority: low", - "output": ["null"] - }, - { - "input": "priority: medium", - "output": ["null"] - }, - { - "input": "production", - "output": ["null"] - }, - { - "input": "project management", - "output": ["projectManagement"] - }, - { - "input": "question", - "output": ["question"] - }, - { - "input": "react flare", - "output": ["code"] - }, - { - "input": "react native", - "output": ["code"] - }, - { - "input": "ready", - "output": ["null"] - }, - { - "input": "refactor", - "output": ["code"] - }, - { - "input": "regression", - "output": ["bug"] - }, - { - "input": "release: alpha", - "output": ["null"] - }, - { - "input": "released", - "output": ["null"] - }, - { - "input": "reminder", - "output": ["null"] - }, - { - "input": "resolution: duplicate", - "output": ["null"] - }, - { - "input": "resolution: invalid", - "output": ["null"] - }, - { - "input": "resolution: needs more information", - "output": ["null"] - }, - { - "input": "resolution: support redirect", - "output": ["null"] - }, - { - "input": "review", - "output": ["review"] - }, - { - "input": "review in progress", - "output": ["null"] - }, - { - "input": "revisitinfuture", - "output": ["ideas"] - }, - { - "input": "rfc", - "output": ["ideas"] - }, - { - "input": "ruby", - "output": ["code"] - }, - { - "input": "security", - "output": ["security"] - }, - { - "input": "shell", - "output": ["tool"] - }, - { - "input": "socket.io client", - "output": ["tool"] - }, - { - "input": "spam", - "output": ["null"] - }, - { - "input": "spammy", - "output": ["null"] - }, - { - "input": "spec: async functions", - "output": ["doc"] - }, - { - "input": "spec: async generators", - "output": ["doc"] - }, - { - "input": "spec: bigint", - "output": ["doc"] - }, - { - "input": "spec: class fields", - "output": ["doc"] - }, - { - "input": "spec: classes", - "output": ["doc"] - }, - { - "input": "spec: decorators", - "output": ["doc"] - }, - { - "input": "spec: decorators (legacy)", - "output": ["doc"] - }, - { - "input": "spec: do expressions", - "output": ["doc"] - }, - { - "input": "stale", - "output": ["null"] - }, - { - "input": "status: accepted", - "output": ["null"] - }, - { - "input": "status: accepted :heavy_check_mark:", - "output": ["null"] - }, - { - "input": "status: available", - "output": ["null"] - }, - { - "input": "status: available :free:", - "output": ["null"] - }, - { - "input": "status: cla not signed", - "output": ["null"] - }, - { - "input": "status: code review request", - "output": ["null"] - }, - { - "input": "status: duplicate", - "output": ["null"] - }, - { - "input": "status: hacktoberfest approved", - "output": ["null"] - }, - { - "input": "status: help wanted", - "output": ["null"] - }, - { - "input": "status: in progress", - "output": ["null"] - }, - { - "input": "status: in progress :construction_worker:", - "output": ["null"] - }, - { - "input": "status: in review", - "output": ["null"] - }, - { - "input": "status: in review :detective:", - "output": ["null"] - }, - { - "input": "status: invalid", - "output": ["null"] - }, - { - "input": "status: left out", - "output": ["null"] - }, - { - "input": "status: left out :left_luggage:", - "output": ["null"] - }, - { - "input": "status: on hold", - "output": ["null"] - }, - { - "input": "status: on hold :stop_sign:", - "output": ["null"] - }, - { - "input": "status: ready for deploy", - "output": ["null"] - }, - { - "input": "status: review needed", - "output": ["null"] - }, - { - "input": "status: review needed :passport_control:", - "output": ["null"] - }, - { - "input": "status: waiting for feedback", - "output": ["null"] - }, - { - "input": "status: wontfix", - "output": ["null"] - }, - { - "input": "status: work in progress", - "output": ["null"] - }, - { - "input": "suggestion", - "output": ["ideas"] - }, - { - "input": "support", - "output": ["null"] - }, - { - "input": "syntax feature request", - "output": ["ideas"] - }, - { - "input": "technical debt", - "output": ["maintenance"] - }, - { - "input": "technical-debt", - "output": ["maintenance"] - }, - { - "input": "test", - "output": ["test"] - }, - { - "input": "test needed", - "output": ["null"] - }, - { - "input": "tests", - "output": ["test"] - }, - { - "input": "tips", - "output": ["ideas"] - }, - { - "input": "to do", - "output": ["maintenance"] - }, - { - "input": "to merge", - "output": ["null"] - }, - { - "input": "todo :spiral_notepad:", - "output": ["maintenance"] - }, - { - "input": "translation", - "output": ["translation"] - }, - { - "input": "travis-yml", - "output": ["infra"] - }, - { - "input": "triage", - "output": ["null"] - }, - { - "input": "triage-done", - "output": ["null"] - }, - { - "input": "trivial", - "output": ["null"] - }, - { - "input": "type: archive", - "output": ["null"] - }, - { - "input": "type: bug", - "output": ["bug"] - }, - { - "input": "type: bug :bug:", - "output": ["bug"] - }, - { - "input": "type: community enhancement", - "output": ["maintenance"] - }, - { - "input": "type: discuss :speech_balloon:", - "output": ["ideas"] - }, - { - "input": "type: doc update", - "output": ["doc"] - }, - { - "input": "type: documentation :book:", - "output": ["doc"] - }, - { - "input": "type: duplicate :repeat:", - "output": ["null"] - }, - { - "input": "type: enhancement", - "output": ["maintenance"] - }, - { - "input": "type: enhancement :bulb:", - "output": ["ideas"] - }, - { - "input": "type: getting started", - "output": ["null"] - }, - { - "input": "type: invalid :x:", - "output": ["null"] - }, - { - "input": "type: maintenance :construction:", - "output": ["maintenance"] - }, - { - "input": "type: non-library issue", - "output": ["null"] - }, - { - "input": "type: question", - "output": ["question"] - }, - { - "input": "type: question :grey_question:", - "output": ["question"] - }, - { - "input": "type: regression :boom:", - "output": ["bug"] - }, - { - "input": "type: security", - "output": ["security"] - }, - { - "input": "type: sendgrid enhancement", - "output": ["maintenance"] - }, - { - "input": "type: support", - "output": ["null"] - }, - { - "input": "type: vulnerability :warning:", - "output": ["security"] - }, - { - "input": "types", - "output": ["null"] - }, - { - "input": "ui", - "output": ["design"] - }, - { - "input": "unable to reproduce", - "output": ["null"] - }, - { - "input": "unconfirmed", - "output": ["null"] - }, - { - "input": "update", - "output": ["maintenance"] - }, - { - "input": "upstream", - "output": ["null"] - }, - { - "input": "upstream bug", - "output": ["bug"] - }, - { - "input": "ux", - "output": ["design"] - }, - { - "input": "v3", - "output": ["null"] - }, - { - "input": "vulnerability", - "output": ["security"] - }, - { - "input": "website", - "output": ["code"] - }, - { - "input": "websocket", - "output": ["tool"] - }, - { - "input": "weekly-digest", - "output": ["blog"] - }, - { - "input": "windows", - "output": ["platform"] - }, - { - "input": "wip", - "output": ["null"] - }, - { - "input": "wontfix", - "output": ["null"] - }, - { - "input": "work in progress", - "output": ["null"] - }, - { - "input": "writer-needed", - "output": ["null"] - }, - { - "input": "wrong repo", - "output": ["null"] - }, - { - "input": "xhr-polling", - "output": ["null"] - }, - { - "input": "0 - backlog", - "output": ["null"] - }, - { - "input": "1 - ready", - "output": ["null"] - }, - { - "input": "2 - working", - "output": ["null"] - }, - { - "input": "2.x", - "output": ["null"] - }, - { - "input": "3 - done", - "output": ["null"] - }, - { - "input": "6.x: backport", - "output": ["null"] - }, - { - "input": "7.x: regression", - "output": ["bug"] - }, - { - "input": ":arrow_heading_down: pull", - "output": ["maintenance"] - }, - { - "input": ":boom: regression", - "output": ["bug"] - }, - { - "input": ":bug: bug", - "output": ["bug"] - }, - { - "input": ":rocket: enhancement", - "output": ["maintenance"] - }, - { - "input": ":rocket: feature request", - "output": ["ideas"] - }, - { - "input": ":speech_balloon: question", - "output": ["question"] - }, - { - "input": "@font-face", - "output": ["design"] - }, - { - "input": "abandoned", - "output": ["null"] - }, - { - "input": "accepted", - "output": ["null"] - }, - { - "input": "accessibility", - "output": ["null"] - }, - { - "input": "adapter", - "output": ["plugin"] - }, - { - "input": "advance developer workflow", - "output": ["infra"] - }, - { - "input": "android", - "output": ["platform"] - }, - { - "input": "angular", - "output": ["code"] - }, - { - "input": "animals (category)", - "output": ["null"] - }, - { - "input": "answered", - "output": ["null"] - }, - { - "input": "approved", - "output": ["null"] - }, - { - "input": "area: concurrent", - "output": ["null"] - }, - { - "input": "area: crash", - "output": ["bug"] - }, - { - "input": "arrows (category)", - "output": ["null"] - }, - { - "input": "automotive (category)", - "output": ["null"] - }, - { - "input": "available in fa pro", - "output": ["null"] - }, - { - "input": "awaiting-review", - "output": ["null"] - }, - { - "input": "beginner-friendly", - "output": ["null"] - }, - { - "input": "beverage (category)", - "output": ["null"] - }, - { - "input": "blocked", - "output": ["null"] - }, - { - "input": "blocker", - "output": ["null"] - }, - { - "input": "bootstrap", - "output": ["tool"] - }, - { - "input": "brand icon", - "output": ["design"] - }, - { - "input": "breaking change", - "output": ["code"] - }, - { - "input": "browser bug", - "output": ["bug"] - }, - { - "input": "browser: ie", - "output": ["null"] - }, - { - "input": "browser: safari", - "output": ["null"] - }, - { - "input": "bug", - "output": ["bug"] - }, - { - "input": "bug report", - "output": ["bug"] - }, - { - "input": "business (category)", - "output": ["business"] - }, - { - "input": "c/c++", - "output": ["null"] - }, - { - "input": "cannot reproduce", - "output": ["null"] - }, - { - "input": "cantfix", - "output": ["null"] - }, - { - "input": "cdn", - "output": ["platform"] - }, - { - "input": "chat (category)", - "output": ["ideas"] - }, - { - "input": "chore", - "output": ["maintenance"] - }, - { - "input": "cla signed", - "output": ["null"] - }, - { - "input": "cla signed :heavy_check_mark:", - "output": ["null"] - }, - { - "input": "cla: no", - "output": ["null"] - }, - { - "input": "cla: yes", - "output": ["null"] - }, - { - "input": "cli", - "output": ["code"] - }, - { - "input": "closed due to inactivity", - "output": ["null"] - }, - { - "input": "cmty:bug-report", - "output": ["bug"] - }, - { - "input": "cmty:feature-request", - "output": ["ideas"] - }, - { - "input": "cmty:question", - "output": ["question"] - }, - { - "input": "cmty:status:cancelled", - "output": ["null"] - }, - { - "input": "cmty:status:fixed", - "output": ["null"] - }, - { - "input": "cmty:status:implemented", - "output": ["null"] - }, - { - "input": "cmty:status:resolved", - "output": ["null"] - }, - { - "input": "community", - "output": ["null"] - }, - { - "input": "component: build infrastructure", - "output": ["infra"] - }, - { - "input": "component: component api", - "output": ["code"] - }, - { - "input": "feat: ui", - "output": ["design"] - }, - { - "input": "feat: unit-jest", - "output": ["test"] - }, - { - "input": "feat: unit-mocha", - "output": ["test"] - }, - { - "input": "feature", - "output": ["ideas"] - }, - { - "input": "feature request", - "output": ["ideas"] - }, - { - "input": "feedback requested", - "output": ["null"] - }, - { - "input": "files (category)", - "output": ["null"] - }, - { - "input": "first-timers-only", - "output": ["null"] - }, - { - "input": "flags (category)", - "output": ["null"] - }, - { - "input": "flashsocket", - "output": ["tool"] - }, - { - "input": "fontawesome.com", - "output": ["null"] - }, - { - "input": "food (category)", - "output": ["null"] - }, - { - "input": "freemasonry icons", - "output": ["design"] - }, - { - "input": "frontend", - "output": ["code"] - }, - { - "input": "future architecture enhancements", - "output": ["ideas"] - }, - { - "input": "future crypto enhancements", - "output": ["ideas"] - }, - { - "input": "genders (category)", - "output": ["null"] - }, - { - "input": "general js", - "output": ["code"] - }, - { - "input": "gh review: accepted", - "output": ["null"] - }, - { - "input": "go client internal release", - "output": ["null"] - }, - { - "input": "good first issue", - "output": ["null"] - }, - { - "input": "good first issue :+1:", - "output": ["null"] - }, - { - "input": "great insight", - "output": ["ideas"] - }, - { - "input": "greenkeeper", - "output": ["infra"] - }, - { - "input": "hack", - "output": ["code"] - }, - { - "input": "hacked", - "output": ["security"] - }, - { - "input": "hacktoberfest", - "output": ["code"] - }, - { - "input": "handshakes", - "output": ["business"] - }, - { - "input": "has bounty", - "output": ["null"] - }, - { - "input": "has pr", - "output": ["null"] - }, - { - "input": "help", - "output": ["null"] - }, - { - "input": "help / pr wanted", - "output": ["null"] - }, - { - "input": "help wanted", - "output": ["null"] - }, - { - "input": "help wanted :sos:", - "output": ["null"] - }, - { - "input": "hi-pri", - "output": ["null"] - }, - { - "input": "high-priority", - "output": ["null"] - }, - { - "input": "hodor", - "output": ["null"] - }, - { - "input": "hot discussion", - "output": ["ideas"] - }, - { - "input": "html", - "output": ["code"] - }, - { - "input": "htmlfile", - "output": ["code"] - }, - { - "input": "https", - "output": ["null"] - }, - { - "input": "icebox", - "output": ["platform"] - }, - { - "input": "ie8", - "output": ["null"] - }, - { - "input": "import in progress", - "output": ["null"] - }, - { - "input": "import started", - "output": ["null"] - }, - { - "input": "in progress", - "output": ["null"] - }, - { - "input": "in review", - "output": ["null"] - }, - { - "input": "infrastructure :hammer_and_wrench:", - "output": ["infra"] - }, - { - "input": "installer", - "output": ["tool"] - }, - { - "input": "internal cleanup", - "output": ["maintenance"] - }, - { - "input": "internal-issue-created", - "output": ["bug"] - }, - { - "input": "invalid", - "output": ["null"] - }, - { - "input": "ios", - "output": ["platform"] - }, - { - "input": "jquery differences", - "output": ["null"] - }, - { - "input": "jsonp-polling", - "output": ["null"] - }, - { - "input": "kbfs", - "output": ["null"] - }, - { - "input": "lang-crystal", - "output": ["code"] - }, - { - "input": "lang-dart", - "output": ["code"] - }, - { - "input": "lang-elixir", - "output": ["code"] - }, - { - "input": "lang-go", - "output": ["code"] - }, - { - "input": "lang-julia", - "output": ["code"] - }, - { - "input": "lang-objc", - "output": ["code"] - }, - { - "input": "lang-r", - "output": ["code"] - }, - { - "input": "lang-scala", - "output": ["code"] - }, - { - "input": "legal", - "output": ["security"] - }, - { - "input": "library", - "output": ["tool"] - }, - { - "input": "lint", - "output": ["maintenance"] - }, - { - "input": "linux", - "output": ["platform"] - }, - { - "input": "lks", - "output": ["null"] - }, - { - "input": "m1.s0", - "output": ["null"] - }, - { - "input": "m1.s1", - "output": ["null"] - }, - { - "input": "m1.s2", - "output": ["null"] - }, - { - "input": "macos", - "output": ["platform"] - }, - { - "input": "maintenance", - "output": ["maintenance"] - }, - { - "input": "major", - "output": ["null"] - }, - { - "input": "mass purge 2015.10.26", - "output": ["null"] - }, - { - "input": "minor", - "output": ["null"] - }, - { - "input": "mobile device support", - "output": ["platform"] - }, - { - "input": "mode: proxy", - "output": ["null"] - }, - { - "input": "modules", - "output": ["code"] - }, - { - "input": "must-triage", - "output": ["null"] - }, - { - "input": "namespaces", - "output": ["null"] - }, - { - "input": "need-info", - "output": ["null"] - }, - { - "input": "needs a example app.", - "output": ["null"] - }, - { - "input": "needs a failing test", - "output": ["null"] - }, - { - "input": "needs browser testing", - "output": ["null"] - }, - { - "input": "needs changelog", - "output": ["null"] - }, - { - "input": "needs docs", - "output": ["null"] - }, - { - "input": "needs documentation", - "output": ["null"] - }, - { - "input": "needs info", - "output": ["null"] - }, - { - "input": "needs more info :man_shrugging:", - "output": ["null"] - }, - { - "input": "needs repro", - "output": ["null"] - }, - { - "input": "needs review", - "output": ["null"] - }, - { - "input": "needs triage", - "output": ["null"] - }, - { - "input": "needs-more-info", - "output": ["null"] - }, - { - "input": "needs-research", - "output": ["null"] - }, - { - "input": "new api proposal", - "output": ["ideas"] - }, - { - "input": "new best practice", - "output": ["ideas"] - }, - { - "input": "node", - "output": ["platform"] - }, - { - "input": "node next", - "output": ["platform"] - }, - { - "input": "not a bug", - "output": ["null"] - }, - { - "input": "on hold", - "output": ["null"] - }, - { - "input": "open", - "output": ["null"] - }, - { - "input": "operations", - "output": ["maintenance"] - }, - { - "input": "opinions needed", - "output": ["null"] - }, - { - "input": "optimisation", - "output": ["code"] - }, - { - "input": "other language integration feature", - "output": ["ideas"] - }, - { - "input": "p0", - "output": ["null"] - }, - { - "input": "p1", - "output": ["null"] - }, - { - "input": "p2", - "output": ["null"] - }, - { - "input": "p3", - "output": ["null"] - }, - { - "input": "packaging", - "output": ["platform"] - }, - { - "input": "parser", - "output": ["tool"] - }, - { - "input": "parser-specific", - "output": ["tool"] - }, - { - "input": "pending release", - "output": ["null"] - }, - { - "input": "performance", - "output": ["maintenance"] - }, - { - "input": "planned feature", - "output": ["null"] - }, - { - "input": "planned for next release", - "output": ["null"] - }, - { - "input": "pr welcome", - "output": ["null"] - }, - { - "input": "pr-existing", - "output": ["null"] - }, - { - "input": "pr: breaking change", - "output": ["code"] - }, - { - "input": "pr: breaking change :boom:", - "output": ["code"] - }, - { - "input": "pr: bug fix", - "output": ["bug"] - }, - { - "input": "pr: bug fix :bug:", - "output": ["bug"] - }, - { - "input": "pr: dependency ⬆️", - "output": ["maintenance"] - }, - { - "input": "pr: deprecation", - "output": ["null"] - }, - { - "input": "pr: docs :memo:", - "output": ["doc"] - }, - { - "input": "pr: documentation", - "output": ["doc"] - }, - { - "input": "pr: good example", - "output": ["example"] - }, - { - "input": "pr: internal", - "output": ["code"] - }, - { - "input": "pr: internal :house:", - "output": ["code"] - }, - { - "input": "pr: merged", - "output": ["null"] - }, - { - "input": "pr: needs review", - "output": ["null"] - }, - { - "input": "pr: new dependency", - "output": ["ideas"] - }, - { - "input": "pr: new feature", - "output": ["ideas"] - }, - { - "input": "pr: new feature :rocket:", - "output": ["ideas"] - }, - { - "input": "pr: polish :nail_care:", - "output": ["maintenance"] - }, - { - "input": "pr: ready for review", - "output": ["null"] - }, - { - "input": "pr: ready to be merged", - "output": ["null"] - }, - { - "input": "pr: reviewed-approved", - "output": ["null"] - }, - { - "input": "pr: reviewed-changes-requested", - "output": ["null"] - }, - { - "input": "pr: spec compliance :eyeglasses:", - "output": ["doc"] - }, - { - "input": "pr: underlying tools", - "output": ["tool"] - }, - { - "input": "pr: unreviewed", - "output": ["null"] - }, - { - "input": "pr: wip", - "output": ["null"] - }, - { - "input": "priority: critical", - "output": ["null"] - }, - { - "input": "priority: high", - "output": ["null"] - }, - { - "input": "priority: low", - "output": ["null"] - }, - { - "input": "priority: medium", - "output": ["null"] - }, - { - "input": "production", - "output": ["null"] - }, - { - "input": "project management", - "output": ["projectManagement"] - }, - { - "input": "question", - "output": ["question"] - }, - { - "input": "react flare", - "output": ["code"] - }, - { - "input": "react native", - "output": ["code"] - }, - { - "input": "ready", - "output": ["null"] - }, - { - "input": "refactor", - "output": ["code"] - }, - { - "input": "regression", - "output": ["bug"] - }, - { - "input": "release: alpha", - "output": ["null"] - }, - { - "input": "released", - "output": ["null"] - }, - { - "input": "reminder", - "output": ["null"] - }, - { - "input": "resolution: duplicate", - "output": ["null"] - }, - { - "input": "resolution: invalid", - "output": ["null"] - }, - { - "input": "resolution: needs more information", - "output": ["null"] - }, - { - "input": "resolution: support redirect", - "output": ["null"] - }, - { - "input": "review", - "output": ["review"] - }, - { - "input": "review in progress", - "output": ["null"] - }, - { - "input": "revisitinfuture", - "output": ["ideas"] - }, - { - "input": "rfc", - "output": ["ideas"] - }, - { - "input": "ruby", - "output": ["code"] - }, - { - "input": "security", - "output": ["security"] - }, - { - "input": "shell", - "output": ["tool"] - }, - { - "input": "socket.io client", - "output": ["tool"] - }, - { - "input": "spam", - "output": ["null"] - }, - { - "input": "spammy", - "output": ["null"] - }, - { - "input": "spec: async functions", - "output": ["doc"] - }, - { - "input": "spec: async generators", - "output": ["doc"] - }, - { - "input": "spec: bigint", - "output": ["doc"] - }, - { - "input": "spec: class fields", - "output": ["doc"] - }, - { - "input": "spec: classes", - "output": ["doc"] - }, - { - "input": "spec: decorators", - "output": ["doc"] - }, - { - "input": "spec: decorators (legacy)", - "output": ["doc"] - }, - { - "input": "spec: do expressions", - "output": ["doc"] - }, - { - "input": "stale", - "output": ["null"] - }, - { - "input": "status: accepted", - "output": ["null"] - }, - { - "input": "status: accepted :heavy_check_mark:", - "output": ["null"] - }, - { - "input": "status: available", - "output": ["null"] - }, - { - "input": "status: available :free:", - "output": ["null"] - }, - { - "input": "status: cla not signed", - "output": ["null"] - }, - { - "input": "status: code review request", - "output": ["null"] - }, - { - "input": "status: duplicate", - "output": ["null"] - }, - { - "input": "status: hacktoberfest approved", - "output": ["null"] - }, - { - "input": "status: help wanted", - "output": ["null"] - }, - { - "input": "status: in progress", - "output": ["null"] - }, - { - "input": "status: in progress :construction_worker:", - "output": ["null"] - }, - { - "input": "status: in review", - "output": ["null"] - }, - { - "input": "status: in review :detective:", - "output": ["null"] - }, - { - "input": "status: invalid", - "output": ["null"] - }, - { - "input": "status: left out", - "output": ["null"] - }, - { - "input": "status: left out :left_luggage:", - "output": ["null"] - }, - { - "input": "status: on hold", - "output": ["null"] - }, - { - "input": "status: on hold :stop_sign:", - "output": ["null"] - }, - { - "input": "status: ready for deploy", - "output": ["null"] - }, - { - "input": "status: review needed", - "output": ["null"] - }, - { - "input": "status: review needed :passport_control:", - "output": ["null"] - }, - { - "input": "status: waiting for feedback", - "output": ["null"] - }, - { - "input": "status: wontfix", - "output": ["null"] - }, - { - "input": "status: work in progress", - "output": ["null"] - }, - { - "input": "suggestion", - "output": ["ideas"] - }, - { - "input": "support", - "output": ["null"] - }, - { - "input": "syntax feature request", - "output": ["ideas"] - }, - { - "input": "technical debt", - "output": ["maintenance"] - }, - { - "input": "technical-debt", - "output": ["maintenance"] - }, - { - "input": "test", - "output": ["test"] - }, - { - "input": "test needed", - "output": ["null"] - }, - { - "input": "tests", - "output": ["test"] - }, - { - "input": "tips", - "output": ["ideas"] - }, - { - "input": "to do", - "output": ["maintenance"] - }, - { - "input": "to merge", - "output": ["null"] - }, - { - "input": "todo :spiral_notepad:", - "output": ["maintenance"] - }, - { - "input": "translation", - "output": ["translation"] - }, - { - "input": "travis-yml", - "output": ["infra"] - }, - { - "input": "triage", - "output": ["null"] - }, - { - "input": "triage-done", - "output": ["null"] - }, - { - "input": "trivial", - "output": ["null"] - }, - { - "input": "type: archive", - "output": ["null"] - }, - { - "input": "type: bug", - "output": ["bug"] - }, - { - "input": "type: bug :bug:", - "output": ["bug"] - }, - { - "input": "type: community enhancement", - "output": ["maintenance"] - }, - { - "input": "type: discuss :speech_balloon:", - "output": ["ideas"] - }, - { - "input": "type: doc update", - "output": ["doc"] - }, - { - "input": "type: documentation :book:", - "output": ["doc"] - }, - { - "input": "type: duplicate :repeat:", - "output": ["null"] - }, - { - "input": "type: enhancement", - "output": ["maintenance"] - }, - { - "input": "type: enhancement :bulb:", - "output": ["ideas"] - }, - { - "input": "type: getting started", - "output": ["null"] - }, - { - "input": "type: invalid :x:", - "output": ["null"] - }, - { - "input": "type: maintenance :construction:", - "output": ["maintenance"] - }, - { - "input": "type: non-library issue", - "output": ["null"] - }, - { - "input": "type: question", - "output": ["question"] - }, - { - "input": "type: question :grey_question:", - "output": ["question"] - }, - { - "input": "type: regression :boom:", - "output": ["bug"] - }, - { - "input": "type: security", - "output": ["security"] - }, - { - "input": "type: sendgrid enhancement", - "output": ["maintenance"] - }, - { - "input": "type: support", - "output": ["null"] - }, - { - "input": "type: vulnerability :warning:", - "output": ["security"] - }, - { - "input": "types", - "output": ["null"] - }, - { - "input": "ui", - "output": ["design"] - }, - { - "input": "unable to reproduce", - "output": ["null"] - }, - { - "input": "unconfirmed", - "output": ["null"] - }, - { - "input": "update", - "output": ["maintenance"] - }, - { - "input": "upstream", - "output": ["null"] - }, - { - "input": "upstream bug", - "output": ["bug"] - }, - { - "input": "ux", - "output": ["design"] - }, - { - "input": "v3", - "output": ["null"] - }, - { - "input": "vulnerability", - "output": ["security"] - }, - { - "input": "website", - "output": ["code"] - }, - { - "input": "websocket", - "output": ["tool"] - }, - { - "input": "weekly-digest", - "output": ["blog"] - }, - { - "input": "windows", - "output": ["platform"] - }, - { - "input": "wip", - "output": ["null"] - }, - { - "input": "wontfix", - "output": ["null"] - }, - { - "input": "work in progress", - "output": ["null"] - }, - { - "input": "writer-needed", - "output": ["null"] - }, - { - "input": "wrong repo", - "output": ["null"] - }, - { - "input": "xhr-polling", - "output": ["null"] - }, - { - "input": "0 - backlog", - "output": ["null"] - }, - { - "input": "1 - ready", - "output": ["null"] - }, - { - "input": "2 - working", - "output": ["null"] - }, - { - "input": "2.x", - "output": ["null"] - }, - { - "input": "3 - done", - "output": ["null"] - }, - { - "input": "6.x: backport", - "output": ["null"] - }, - { - "input": "7.x: regression", - "output": ["bug"] - }, - { - "input": ":arrow_heading_down: pull", - "output": ["maintenance"] - }, - { - "input": ":boom: regression", - "output": ["bug"] - }, - { - "input": ":bug: bug", - "output": ["bug"] - }, - { - "input": ":rocket: enhancement", - "output": ["maintenance"] - }, - { - "input": ":rocket: feature request", - "output": ["ideas"] - }, - { - "input": ":speech_balloon: question", - "output": ["question"] - }, - { - "input": "@font-face", - "output": ["design"] - }, - { - "input": "abandoned", - "output": ["null"] - }, - { - "input": "accepted", - "output": ["null"] - }, - { - "input": "accessibility", - "output": ["null"] - }, - { - "input": "adapter", - "output": ["plugin"] - }, - { - "input": "advance developer workflow", - "output": ["infra"] - }, - { - "input": "android", - "output": ["platform"] - }, - { - "input": "angular", - "output": ["code"] - }, - { - "input": "animals (category)", - "output": ["null"] - }, - { - "input": "answered", - "output": ["null"] - }, - { - "input": "approved", - "output": ["null"] - }, - { - "input": "area: concurrent", - "output": ["null"] - }, - { - "input": "area: crash", - "output": ["bug"] - }, - { - "input": "arrows (category)", - "output": ["null"] - }, - { - "input": "automotive (category)", - "output": ["null"] - }, - { - "input": "available in fa pro", - "output": ["null"] - }, - { - "input": "awaiting-review", - "output": ["null"] - }, - { - "input": "beginner-friendly", - "output": ["null"] - }, - { - "input": "beverage (category)", - "output": ["null"] - }, - { - "input": "blocked", - "output": ["null"] - }, - { - "input": "blocker", - "output": ["null"] - }, - { - "input": "bootstrap", - "output": ["tool"] - }, - { - "input": "brand icon", - "output": ["design"] - }, - { - "input": "breaking change", - "output": ["code"] - }, - { - "input": "browser bug", - "output": ["bug"] - }, - { - "input": "browser: ie", - "output": ["null"] - }, - { - "input": "browser: safari", - "output": ["null"] - }, - { - "input": "bug", - "output": ["bug"] - }, - { - "input": "bug report", - "output": ["bug"] - }, - { - "input": "business (category)", - "output": ["business"] - }, - { - "input": "c/c++", - "output": ["null"] - }, - { - "input": "cannot reproduce", - "output": ["null"] - }, - { - "input": "cantfix", - "output": ["null"] - }, - { - "input": "cdn", - "output": ["platform"] - }, - { - "input": "chat (category)", - "output": ["ideas"] - }, - { - "input": "chore", - "output": ["maintenance"] - }, - { - "input": "cla signed", - "output": ["null"] - }, - { - "input": "cla signed :heavy_check_mark:", - "output": ["null"] - }, - { - "input": "cla: no", - "output": ["null"] - }, - { - "input": "cla: yes", - "output": ["null"] - }, - { - "input": "cli", - "output": ["code"] - }, - { - "input": "closed due to inactivity", - "output": ["null"] - }, - { - "input": "cmty:bug-report", - "output": ["bug"] - }, - { - "input": "cmty:feature-request", - "output": ["ideas"] - }, - { - "input": "cmty:question", - "output": ["question"] - }, - { - "input": "cmty:status:cancelled", - "output": ["null"] - }, - { - "input": "cmty:status:fixed", - "output": ["null"] - }, - { - "input": "cmty:status:implemented", - "output": ["null"] - }, - { - "input": "cmty:status:resolved", - "output": ["null"] - }, - { - "input": "community", - "output": ["null"] - }, - { - "input": "component: build infrastructure", - "output": ["infra"] - }, - { - "input": "component: component api", - "output": ["code"] - }, - { - "input": "component: concurrent mode", - "output": ["null"] - }, - { - "input": "component: core utilities", - "output": ["maintenance"] - }, - { - "input": "component: developer tools", - "output": ["tool"] - }, - { - "input": "component: dom", - "output": ["code"] - }, - { - "input": "component: eslint rules", - "output": ["maintenance"] - }, - { - "input": "component: hooks", - "output": ["code"] - }, - { - "input": "component: optimizing compiler", - "output": ["code"] - }, - { - "input": "component: reactis", - "output": ["code"] - }, - { - "input": "component: reconciler", - "output": ["null"] - }, - { - "input": "component: scheduler", - "output": ["null"] - }, - { - "input": "component: server rendering", - "output": ["code"] - }, - { - "input": "component: shallow renderer", - "output": ["code"] - }, - { - "input": "component: suspense", - "output": ["null"] - }, - { - "input": "component: test renderer", - "output": ["test"] - }, - { - "input": "component: test utils", - "output": ["test"] - }, - { - "input": "configuration", - "output": ["code"] - }, - { - "input": "confirmed", - "output": ["null"] - }, - { - "input": "conflicts", - "output": ["null"] - }, - { - "input": "contribution welcome", - "output": ["null"] - }, - { - "input": "core", - "output": ["maintenance"] - }, - { - "input": "critical", - "output": ["null"] - }, - { - "input": "csharp", - "output": ["code"] - }, - { - "input": "css", - "output": ["code"] - }, - { - "input": "css-select", - "output": ["code"] - }, - { - "input": "currency (category)", - "output": ["financial"] - }, - { - "input": "defect", - "output": ["bug"] - }, - { - "input": "dependencies", - "output": ["maintenance"] - }, - { - "input": "dependency related", - "output": ["maintenance"] - }, - { - "input": "design", - "output": ["design"] - }, - { - "input": "design (category)", - "output": ["design"] - }, - { - "input": "difficulty: challenging", - "output": ["null"] - }, - { - "input": "difficulty: easy", - "output": ["null"] - }, - { - "input": "difficulty: hard", - "output": ["null"] - }, - { - "input": "difficulty: medium", - "output": ["null"] - }, - { - "input": "difficulty: starter", - "output": ["null"] - }, - { - "input": "difficulty: unknown or n/a", - "output": ["null"] - }, - { - "input": "difficulty: very hard", - "output": ["null"] - }, - { - "input": "discussion", - "output": ["ideas"] - }, - { - "input": "do not merge", - "output": ["null"] - }, - { - "input": "doc", - "output": ["doc"] - }, - { - "input": "docs", - "output": ["doc"] - }, - { - "input": "documentation", - "output": ["doc"] - }, - { - "input": "documentation :book:", - "output": ["doc"] - }, - { - "input": "duplicate", - "output": ["null"] - }, - { - "input": "electron", - "output": ["tool"] - }, - { - "input": "enhancement", - "output": ["maintenance"] - }, - { - "input": "enterprise", - "output": ["null"] - }, - { - "input": "enterprise-2.0-backport", - "output": ["null"] - }, - { - "input": "enterprise-2.1-backport", - "output": ["null"] - }, - { - "input": "enterprise-2.2-backport", - "output": ["null"] - }, - { - "input": "es6", - "output": ["code"] - }, - { - "input": "es7", - "output": ["code"] - }, - { - "input": "external", - "output": ["plugin"] - }, - { - "input": "externs", - "output": ["plugin"] - }, - { - "input": "feat/cli", - "output": ["code"] - }, - { - "input": "feat: babel", - "output": ["tool"] - }, - { - "input": "feat: cli", - "output": ["code"] - }, - { - "input": "feat: cli-service build", - "output": ["code"] - }, - { - "input": "feat: cli-service serve", - "output": ["code"] - }, - { - "input": "feat: e2e-cypress", - "output": ["test"] - }, - { - "input": "feat: e2e-nightwatch", - "output": ["test"] - }, - { - "input": "feat: eslint", - "output": ["maintenance"] - }, - { - "input": "feat: plugin api", - "output": ["plugin"] - }, - { - "input": "feat: pwa", - "output": ["code"] - }, - { - "input": "feat: typescript", - "output": ["code"] - }, - { - "input": "feat: ui", - "output": ["design"] - }, - { - "input": "lint", - "output": ["maintenance"] - }, - { - "input": "linux", - "output": ["platform"] - }, - { - "input": "lks", - "output": ["null"] - }, - { - "input": "m1.s0", - "output": ["null"] - }, - { - "input": "m1.s1", - "output": ["null"] - }, - { - "input": "m1.s2", - "output": ["null"] - }, - { - "input": "macos", - "output": ["platform"] - }, - { - "input": "maintenance", - "output": ["maintenance"] - }, - { - "input": "major", - "output": ["null"] - }, - { - "input": "mass purge 2015.10.26", - "output": ["null"] - }, - { - "input": "minor", - "output": ["null"] - }, - { - "input": "mobile device support", - "output": ["platform"] - }, - { - "input": "mode: proxy", - "output": ["null"] - }, - { - "input": "modules", - "output": ["code"] - }, - { - "input": "must-triage", - "output": ["null"] - }, - { - "input": "namespaces", - "output": ["null"] - }, - { - "input": "need-info", - "output": ["null"] - }, - { - "input": "needs a example app.", - "output": ["null"] - }, - { - "input": "needs a failing test", - "output": ["null"] - }, - { - "input": "needs browser testing", - "output": ["null"] - }, - { - "input": "needs changelog", - "output": ["null"] - }, - { - "input": "needs docs", - "output": ["null"] - }, - { - "input": "needs documentation", - "output": ["null"] - }, - { - "input": "needs info", - "output": ["null"] - }, - { - "input": "needs more info :man_shrugging:", - "output": ["null"] - }, - { - "input": "needs repro", - "output": ["null"] - }, - { - "input": "needs review", - "output": ["null"] - }, - { - "input": "needs triage", - "output": ["null"] - }, - { - "input": "needs-more-info", - "output": ["null"] - }, - { - "input": "needs-research", - "output": ["null"] - }, - { - "input": "new api proposal", - "output": ["ideas"] - }, - { - "input": "new best practice", - "output": ["ideas"] - }, - { - "input": "node", - "output": ["platform"] - }, - { - "input": "node next", - "output": ["platform"] - }, - { - "input": "not a bug", - "output": ["null"] - }, - { - "input": "on hold", - "output": ["null"] - }, - { - "input": "open", - "output": ["null"] - }, - { - "input": "operations", - "output": ["maintenance"] - }, - { - "input": "opinions needed", - "output": ["null"] - }, - { - "input": "optimisation", - "output": ["code"] - }, - { - "input": "other language integration feature", - "output": ["ideas"] - }, - { - "input": "p0", - "output": ["null"] - }, - { - "input": "p1", - "output": ["null"] - }, - { - "input": "p2", - "output": ["null"] - }, - { - "input": "p3", - "output": ["null"] - }, - { - "input": "packaging", - "output": ["platform"] - }, - { - "input": "parser", - "output": ["tool"] - }, - { - "input": "parser-specific", - "output": ["tool"] - }, - { - "input": "pending release", - "output": ["null"] - }, - { - "input": "performance", - "output": ["maintenance"] - }, - { - "input": "planned feature", - "output": ["null"] - }, - { - "input": "planned for next release", - "output": ["null"] - }, - { - "input": "pr welcome", - "output": ["null"] - }, - { - "input": "pr-existing", - "output": ["null"] - }, - { - "input": "pr: breaking change", - "output": ["code"] - }, - { - "input": "pr: breaking change :boom:", - "output": ["code"] - }, - { - "input": "pr: bug fix", - "output": ["bug"] - }, - { - "input": "pr: bug fix :bug:", - "output": ["bug"] - }, - { - "input": "pr: dependency ⬆️", - "output": ["maintenance"] - }, - { - "input": "pr: deprecation", - "output": ["null"] - }, - { - "input": "pr: docs :memo:", - "output": ["doc"] - }, - { - "input": "pr: documentation", - "output": ["doc"] - }, - { - "input": "pr: good example", - "output": ["example"] - }, - { - "input": "pr: internal", - "output": ["code"] - }, - { - "input": "pr: internal :house:", - "output": ["code"] - }, - { - "input": "pr: merged", - "output": ["null"] - }, - { - "input": "pr: needs review", - "output": ["null"] - }, - { - "input": "pr: new dependency", - "output": ["ideas"] - }, - { - "input": "pr: new feature", - "output": ["ideas"] - }, - { - "input": "pr: new feature :rocket:", - "output": ["ideas"] - }, - { - "input": "pr: polish :nail_care:", - "output": ["maintenance"] - }, - { - "input": "pr: ready for review", - "output": ["null"] - }, - { - "input": "pr: ready to be merged", - "output": ["null"] - }, - { - "input": "pr: reviewed-approved", - "output": ["null"] - }, - { - "input": "pr: reviewed-changes-requested", - "output": ["null"] - }, - { - "input": "pr: spec compliance :eyeglasses:", - "output": ["doc"] - }, - { - "input": "pr: underlying tools", - "output": ["tool"] - }, - { - "input": "pr: unreviewed", - "output": ["null"] - }, - { - "input": "pr: wip", - "output": ["null"] - }, - { - "input": "priority: critical", - "output": ["null"] - }, - { - "input": "priority: high", - "output": ["null"] - }, - { - "input": "priority: low", - "output": ["null"] - }, - { - "input": "priority: medium", - "output": ["null"] - }, - { - "input": "production", - "output": ["null"] - }, - { - "input": "project management", - "output": ["projectManagement"] - }, - { - "input": "question", - "output": ["question"] - }, - { - "input": "react flare", - "output": ["code"] - }, - { - "input": "react native", - "output": ["code"] - }, - { - "input": "ready", - "output": ["null"] - }, - { - "input": "refactor", - "output": ["code"] - }, - { - "input": "regression", - "output": ["bug"] - }, - { - "input": "release: alpha", - "output": ["null"] - }, - { - "input": "released", - "output": ["null"] - }, - { - "input": "reminder", - "output": ["null"] - }, - { - "input": "resolution: duplicate", - "output": ["null"] - }, - { - "input": "resolution: invalid", - "output": ["null"] - }, - { - "input": "resolution: needs more information", - "output": ["null"] - }, - { - "input": "resolution: support redirect", - "output": ["null"] - }, - { - "input": "review", - "output": ["review"] - }, - { - "input": "review in progress", - "output": ["null"] - }, - { - "input": "revisitinfuture", - "output": ["ideas"] - }, - { - "input": "rfc", - "output": ["ideas"] - }, - { - "input": "ruby", - "output": ["code"] - }, - { - "input": "security", - "output": ["security"] - }, - { - "input": "shell", - "output": ["tool"] - }, - { - "input": "socket.io client", - "output": ["tool"] - }, - { - "input": "spam", - "output": ["null"] - }, - { - "input": "spammy", - "output": ["null"] - }, - { - "input": "spec: async functions", - "output": ["doc"] - }, - { - "input": "spec: async generators", - "output": ["doc"] - }, - { - "input": "spec: bigint", - "output": ["doc"] - }, - { - "input": "spec: class fields", - "output": ["doc"] - }, - { - "input": "spec: classes", - "output": ["doc"] - }, - { - "input": "spec: decorators", - "output": ["doc"] - }, - { - "input": "spec: decorators (legacy)", - "output": ["doc"] - }, - { - "input": "spec: do expressions", - "output": ["doc"] - }, - { - "input": "stale", - "output": ["null"] - }, - { - "input": "status: accepted", - "output": ["null"] - }, - { - "input": "status: accepted :heavy_check_mark:", - "output": ["null"] - }, - { - "input": "status: available", - "output": ["null"] - }, - { - "input": "status: available :free:", - "output": ["null"] - }, - { - "input": "status: cla not signed", - "output": ["null"] - }, - { - "input": "status: code review request", - "output": ["null"] - }, - { - "input": "status: duplicate", - "output": ["null"] - }, - { - "input": "status: hacktoberfest approved", - "output": ["null"] - }, - { - "input": "status: help wanted", - "output": ["null"] - }, - { - "input": "status: in progress", - "output": ["null"] - }, - { - "input": "status: in progress :construction_worker:", - "output": ["null"] - }, - { - "input": "status: in review", - "output": ["null"] - }, - { - "input": "status: in review :detective:", - "output": ["null"] - }, - { - "input": "status: invalid", - "output": ["null"] - }, - { - "input": "status: left out", - "output": ["null"] - }, - { - "input": "status: left out :left_luggage:", - "output": ["null"] - }, - { - "input": "status: on hold", - "output": ["null"] - }, - { - "input": "status: on hold :stop_sign:", - "output": ["null"] - }, - { - "input": "status: ready for deploy", - "output": ["null"] - }, - { - "input": "status: review needed", - "output": ["null"] - }, - { - "input": "status: review needed :passport_control:", - "output": ["null"] - }, - { - "input": "status: waiting for feedback", - "output": ["null"] - }, - { - "input": "status: wontfix", - "output": ["null"] - }, - { - "input": "status: work in progress", - "output": ["null"] - }, - { - "input": "suggestion", - "output": ["ideas"] - }, - { - "input": "support", - "output": ["null"] - }, - { - "input": "syntax feature request", - "output": ["ideas"] - }, - { - "input": "technical debt", - "output": ["maintenance"] - }, - { - "input": "technical-debt", - "output": ["maintenance"] - }, - { - "input": "test", - "output": ["test"] - }, - { - "input": "test needed", - "output": ["null"] - }, - { - "input": "tests", - "output": ["test"] - }, - { - "input": "tips", - "output": ["ideas"] - }, - { - "input": "to do", - "output": ["maintenance"] - }, - { - "input": "to merge", - "output": ["null"] - }, - { - "input": "todo :spiral_notepad:", - "output": ["maintenance"] - }, - { - "input": "translation", - "output": ["translation"] - }, - { - "input": "travis-yml", - "output": ["infra"] - }, - { - "input": "triage", - "output": ["null"] - }, - { - "input": "triage-done", - "output": ["null"] - }, - { - "input": "trivial", - "output": ["null"] - }, - { - "input": "type: archive", - "output": ["null"] - }, - { - "input": "type: bug", - "output": ["bug"] - }, - { - "input": "type: bug :bug:", - "output": ["bug"] - }, - { - "input": "type: community enhancement", - "output": ["maintenance"] - }, - { - "input": "type: discuss :speech_balloon:", - "output": ["ideas"] - }, - { - "input": "type: doc update", - "output": ["doc"] - }, - { - "input": "type: documentation :book:", - "output": ["doc"] - }, - { - "input": "type: duplicate :repeat:", - "output": ["null"] - }, - { - "input": "type: enhancement", - "output": ["maintenance"] - }, - { - "input": "type: enhancement :bulb:", - "output": ["ideas"] - }, - { - "input": "type: getting started", - "output": ["null"] - }, - { - "input": "type: invalid :x:", - "output": ["null"] - }, - { - "input": "type: maintenance :construction:", - "output": ["maintenance"] - }, - { - "input": "type: non-library issue", - "output": ["null"] - }, - { - "input": "type: question", - "output": ["question"] - }, - { - "input": "type: question :grey_question:", - "output": ["question"] - }, - { - "input": "type: regression :boom:", - "output": ["bug"] - }, - { - "input": "type: security", - "output": ["security"] - }, - { - "input": "type: sendgrid enhancement", - "output": ["maintenance"] - }, - { - "input": "type: support", - "output": ["null"] - }, - { - "input": "type: vulnerability :warning:", - "output": ["security"] - }, - { - "input": "types", - "output": ["null"] - }, - { - "input": "ui", - "output": ["design"] - }, - { - "input": "unable to reproduce", - "output": ["null"] - }, - { - "input": "unconfirmed", - "output": ["null"] - }, - { - "input": "update", - "output": ["maintenance"] - }, - { - "input": "upstream", - "output": ["null"] - }, - { - "input": "upstream bug", - "output": ["bug"] - }, - { - "input": "ux", - "output": ["design"] - }, - { - "input": "v3", - "output": ["null"] - }, - { - "input": "vulnerability", - "output": ["security"] - }, - { - "input": "website", - "output": ["code"] - }, - { - "input": "websocket", - "output": ["tool"] - }, - { - "input": "weekly-digest", - "output": ["blog"] - }, - { - "input": "windows", - "output": ["platform"] - }, - { - "input": "wip", - "output": ["null"] - }, - { - "input": "wontfix", - "output": ["null"] - }, - { - "input": "work in progress", - "output": ["null"] - }, - { - "input": "writer-needed", - "output": ["null"] - }, - { - "input": "wrong repo", - "output": ["null"] - }, - { - "input": "xhr-polling", - "output": ["null"] - }, - { - "input": "0 - backlog", - "output": ["null"] - }, - { - "input": "1 - ready", - "output": ["null"] - }, - { - "input": "2 - working", - "output": ["null"] - }, - { - "input": "2.x", - "output": ["null"] - }, - { - "input": "3 - done", - "output": ["null"] - }, - { - "input": "6.x: backport", - "output": ["null"] - }, - { - "input": "7.x: regression", - "output": ["bug"] - }, - { - "input": ":arrow_heading_down: pull", - "output": ["maintenance"] - }, - { - "input": ":boom: regression", - "output": ["bug"] - }, - { - "input": ":bug: bug", - "output": ["bug"] - }, - { - "input": ":rocket: enhancement", - "output": ["maintenance"] - }, - { - "input": ":rocket: feature request", - "output": ["ideas"] - }, - { - "input": ":speech_balloon: question", - "output": ["question"] - }, - { - "input": "@font-face", - "output": ["design"] - }, - { - "input": "abandoned", - "output": ["null"] - }, - { - "input": "accepted", - "output": ["null"] - }, - { - "input": "accessibility", - "output": ["null"] - }, - { - "input": "adapter", - "output": ["plugin"] - }, - { - "input": "advance developer workflow", - "output": ["infra"] - }, - { - "input": "android", - "output": ["platform"] - }, - { - "input": "angular", - "output": ["code"] - }, - { - "input": "animals (category)", - "output": ["null"] - }, - { - "input": "answered", - "output": ["null"] - }, - { - "input": "approved", - "output": ["null"] - }, - { - "input": "area: concurrent", - "output": ["null"] - }, - { - "input": "area: crash", - "output": ["bug"] - }, - { - "input": "arrows (category)", - "output": ["null"] - }, - { - "input": "automotive (category)", - "output": ["null"] - }, - { - "input": "available in fa pro", - "output": ["null"] - }, - { - "input": "awaiting-review", - "output": ["null"] - }, - { - "input": "beginner-friendly", - "output": ["null"] - }, - { - "input": "beverage (category)", - "output": ["null"] - }, - { - "input": "blocked", - "output": ["null"] - }, - { - "input": "blocker", - "output": ["null"] - }, - { - "input": "bootstrap", - "output": ["tool"] - }, - { - "input": "brand icon", - "output": ["design"] - }, - { - "input": "breaking change", - "output": ["code"] - }, - { - "input": "browser bug", - "output": ["bug"] - }, - { - "input": "browser: ie", - "output": ["null"] - }, - { - "input": "browser: safari", - "output": ["null"] - }, - { - "input": "bug", - "output": ["bug"] - }, - { - "input": "bug report", - "output": ["bug"] - }, - { - "input": "business (category)", - "output": ["business"] - }, - { - "input": "c/c++", - "output": ["null"] - }, - { - "input": "cannot reproduce", - "output": ["null"] - }, - { - "input": "cantfix", - "output": ["null"] - }, - { - "input": "cdn", - "output": ["platform"] - }, - { - "input": "chat (category)", - "output": ["ideas"] - }, - { - "input": "chore", - "output": ["maintenance"] - }, - { - "input": "cla signed", - "output": ["null"] - }, - { - "input": "cla signed :heavy_check_mark:", - "output": ["null"] - }, - { - "input": "cla: no", - "output": ["null"] - }, - { - "input": "cla: yes", - "output": ["null"] - }, - { - "input": "cli", - "output": ["code"] - }, - { - "input": "closed due to inactivity", - "output": ["null"] - }, - { - "input": "cmty:bug-report", - "output": ["bug"] - }, - { - "input": "cmty:feature-request", - "output": ["ideas"] - }, - { - "input": "cmty:question", - "output": ["question"] - }, - { - "input": "cmty:status:cancelled", - "output": ["null"] - }, - { - "input": "cmty:status:fixed", - "output": ["null"] - }, - { - "input": "cmty:status:implemented", - "output": ["null"] - }, - { - "input": "cmty:status:resolved", - "output": ["null"] - }, - { - "input": "community", - "output": ["null"] - }, - { - "input": "component: build infrastructure", - "output": ["infra"] - }, - { - "input": "component: component api", - "output": ["code"] - }, - { - "input": "component: concurrent mode", - "output": ["null"] - }, - { - "input": "component: core utilities", - "output": ["maintenance"] - }, - { - "input": "component: developer tools", - "output": ["tool"] - }, - { - "input": "component: dom", - "output": ["code"] - }, - { - "input": "component: eslint rules", - "output": ["maintenance"] - }, - { - "input": "component: hooks", - "output": ["code"] - }, - { - "input": "component: optimizing compiler", - "output": ["code"] - }, - { - "input": "component: reactis", - "output": ["code"] - }, - { - "input": "component: reconciler", - "output": ["null"] - }, - { - "input": "component: scheduler", - "output": ["null"] - }, - { - "input": "component: server rendering", - "output": ["code"] - }, - { - "input": "component: shallow renderer", - "output": ["code"] - }, - { - "input": "component: suspense", - "output": ["null"] - }, - { - "input": "component: test renderer", - "output": ["test"] - }, - { - "input": "component: test utils", - "output": ["test"] - }, - { - "input": "configuration", - "output": ["code"] - }, - { - "input": "confirmed", - "output": ["null"] - }, - { - "input": "conflicts", - "output": ["null"] - }, - { - "input": "contribution welcome", - "output": ["null"] - }, - { - "input": "core", - "output": ["maintenance"] - }, - { - "input": "critical", - "output": ["null"] - }, - { - "input": "csharp", - "output": ["code"] - }, - { - "input": "css", - "output": ["code"] - }, - { - "input": "css-select", - "output": ["code"] - }, - { - "input": "currency (category)", - "output": ["financial"] - }, - { - "input": "defect", - "output": ["bug"] - }, - { - "input": "dependencies", - "output": ["maintenance"] - }, - { - "input": "dependency related", - "output": ["maintenance"] - }, - { - "input": "design", - "output": ["design"] - }, - { - "input": "design (category)", - "output": ["design"] - }, - { - "input": "difficulty: challenging", - "output": ["null"] - }, - { - "input": "difficulty: easy", - "output": ["null"] - }, - { - "input": "difficulty: hard", - "output": ["null"] - }, - { - "input": "difficulty: medium", - "output": ["null"] - }, - { - "input": "difficulty: starter", - "output": ["null"] - }, - { - "input": "difficulty: unknown or n/a", - "output": ["null"] - }, - { - "input": "difficulty: very hard", - "output": ["null"] - }, - { - "input": "discussion", - "output": ["ideas"] - }, - { - "input": "do not merge", - "output": ["null"] - }, - { - "input": "doc", - "output": ["doc"] - }, - { - "input": "docs", - "output": ["doc"] - }, - { - "input": "documentation", - "output": ["doc"] - }, - { - "input": "documentation :book:", - "output": ["doc"] - }, - { - "input": "duplicate", - "output": ["null"] - }, - { - "input": "electron", - "output": ["tool"] - }, - { - "input": "enhancement", - "output": ["maintenance"] - }, - { - "input": "enterprise", - "output": ["null"] - }, - { - "input": "enterprise-2.0-backport", - "output": ["null"] - }, - { - "input": "enterprise-2.1-backport", - "output": ["null"] - }, - { - "input": "enterprise-2.2-backport", - "output": ["null"] - }, - { - "input": "es6", - "output": ["code"] - }, - { - "input": "es7", - "output": ["code"] - }, - { - "input": "external", - "output": ["plugin"] - }, - { - "input": "externs", - "output": ["plugin"] - }, - { - "input": "feat/cli", - "output": ["code"] - }, - { - "input": "feat: babel", - "output": ["tool"] - }, - { - "input": "feat: cli", - "output": ["code"] - }, - { - "input": "feat: cli-service build", - "output": ["code"] - }, - { - "input": "feat: cli-service serve", - "output": ["code"] - }, - { - "input": "feat: e2e-cypress", - "output": ["test"] - }, - { - "input": "feat: e2e-nightwatch", - "output": ["test"] - }, - { - "input": "feat: eslint", - "output": ["maintenance"] - }, - { - "input": "feat: plugin api", - "output": ["plugin"] - }, - { - "input": "feat: pwa", - "output": ["code"] - }, - { - "input": "feat: typescript", - "output": ["code"] - }, - { - "input": "feat: ui", - "output": ["design"] - }, - { - "input": "feat: unit-jest", - "output": ["test"] - }, - { - "input": "feat: unit-mocha", - "output": ["test"] - }, - { - "input": "feature", - "output": ["ideas"] - }, - { - "input": "feature request", - "output": ["ideas"] - }, - { - "input": "feedback requested", - "output": ["null"] - }, - { - "input": "files (category)", - "output": ["null"] - }, - { - "input": "first-timers-only", - "output": ["null"] - }, - { - "input": "flags (category)", - "output": ["null"] - }, - { - "input": "flashsocket", - "output": ["tool"] - }, - { - "input": "fontawesome.com", - "output": ["null"] - }, - { - "input": "food (category)", - "output": ["null"] - }, - { - "input": "freemasonry icons", - "output": ["design"] - }, - { - "input": "frontend", - "output": ["code"] - }, - { - "input": "future architecture enhancements", - "output": ["ideas"] - }, - { - "input": "future crypto enhancements", - "output": ["ideas"] - }, - { - "input": "genders (category)", - "output": ["null"] - }, - { - "input": "general js", - "output": ["code"] - }, - { - "input": "gh review: accepted", - "output": ["null"] - }, - { - "input": "go client internal release", - "output": ["null"] - }, - { - "input": "good first issue", - "output": ["null"] - }, - { - "input": "good first issue :+1:", - "output": ["null"] - }, - { - "input": "great insight", - "output": ["ideas"] - }, - { - "input": "greenkeeper", - "output": ["infra"] - }, - { - "input": "hack", - "output": ["code"] - }, - { - "input": "hacked", - "output": ["security"] - }, - { - "input": "hacktoberfest", - "output": ["code"] - }, - { - "input": "handshakes", - "output": ["business"] - }, - { - "input": "has bounty", - "output": ["null"] - }, - { - "input": "has pr", - "output": ["null"] - }, - { - "input": "help", - "output": ["null"] - }, - { - "input": "help / pr wanted", - "output": ["null"] - }, - { - "input": "help wanted", - "output": ["null"] - }, - { - "input": "help wanted :sos:", - "output": ["null"] - }, - { - "input": "hi-pri", - "output": ["null"] - }, - { - "input": "high-priority", - "output": ["null"] - }, - { - "input": "hodor", - "output": ["null"] - }, - { - "input": "hot discussion", - "output": ["ideas"] - }, - { - "input": "html", - "output": ["code"] - }, - { - "input": "htmlfile", - "output": ["code"] - }, - { - "input": "https", - "output": ["null"] - }, - { - "input": "icebox", - "output": ["platform"] - }, - { - "input": "ie8", - "output": ["null"] - }, - { - "input": "import in progress", - "output": ["null"] - }, - { - "input": "import started", - "output": ["null"] - }, - { - "input": "in progress", - "output": ["null"] - }, - { - "input": "in review", - "output": ["null"] - }, - { - "input": "infrastructure :hammer_and_wrench:", - "output": ["infra"] - }, - { - "input": "installer", - "output": ["tool"] - }, - { - "input": "internal cleanup", - "output": ["maintenance"] - }, - { - "input": "internal-issue-created", - "output": ["bug"] - }, - { - "input": "invalid", - "output": ["null"] - }, - { - "input": "ios", - "output": ["platform"] - }, - { - "input": "jquery differences", - "output": ["null"] - }, - { - "input": "jsonp-polling", - "output": ["null"] - }, - { - "input": "kbfs", - "output": ["null"] - }, - { - "input": "lang-crystal", - "output": ["code"] - }, - { - "input": "lang-dart", - "output": ["code"] - }, - { - "input": "lang-elixir", - "output": ["code"] - }, - { - "input": "lang-go", - "output": ["code"] - }, - { - "input": "lang-julia", - "output": ["code"] - }, - { - "input": "lang-objc", - "output": ["code"] - }, - { - "input": "lang-r", - "output": ["code"] - }, - { - "input": "lang-scala", - "output": ["code"] - }, - { - "input": "legal", - "output": ["security"] - }, - { - "input": "library", - "output": ["tool"] - }, - { - "input": "lint", - "output": ["maintenance"] - }, - { - "input": "pr: needs review", - "output": ["null"] - }, - { - "input": "pr: new dependency", - "output": ["ideas"] - }, - { - "input": "pr: new feature", - "output": ["ideas"] - }, - { - "input": "pr: new feature :rocket:", - "output": ["ideas"] - }, - { - "input": "pr: polish :nail_care:", - "output": ["maintenance"] - }, - { - "input": "pr: ready for review", - "output": ["null"] - }, - { - "input": "pr: ready to be merged", - "output": ["null"] - }, - { - "input": "pr: reviewed-approved", - "output": ["null"] - }, - { - "input": "pr: reviewed-changes-requested", - "output": ["null"] - }, - { - "input": "pr: spec compliance :eyeglasses:", - "output": ["doc"] - }, - { - "input": "pr: underlying tools", - "output": ["tool"] - }, - { - "input": "pr: unreviewed", - "output": ["null"] - }, - { - "input": "pr: wip", - "output": ["null"] - }, - { - "input": "priority: critical", - "output": ["null"] - }, - { - "input": "priority: high", - "output": ["null"] - }, - { - "input": "priority: low", - "output": ["null"] - }, - { - "input": "priority: medium", - "output": ["null"] - }, - { - "input": "production", - "output": ["null"] - }, - { - "input": "project management", - "output": ["projectManagement"] - }, - { - "input": "question", - "output": ["question"] - }, - { - "input": "react flare", - "output": ["code"] - }, - { - "input": "react native", - "output": ["code"] - }, - { - "input": "ready", - "output": ["null"] - }, - { - "input": "refactor", - "output": ["code"] - }, - { - "input": "regression", - "output": ["bug"] - }, - { - "input": "release: alpha", - "output": ["null"] - }, - { - "input": "released", - "output": ["null"] - }, - { - "input": "reminder", - "output": ["null"] - }, - { - "input": "resolution: duplicate", - "output": ["null"] - }, - { - "input": "resolution: invalid", - "output": ["null"] - }, - { - "input": "resolution: needs more information", - "output": ["null"] - }, - { - "input": "resolution: support redirect", - "output": ["null"] - }, - { - "input": "review", - "output": ["review"] - }, - { - "input": "review in progress", - "output": ["null"] - }, - { - "input": "revisitinfuture", - "output": ["ideas"] - }, - { - "input": "rfc", - "output": ["ideas"] - }, - { - "input": "ruby", - "output": ["code"] - }, - { - "input": "security", - "output": ["security"] - }, - { - "input": "shell", - "output": ["tool"] - }, - { - "input": "socket.io client", - "output": ["tool"] - }, - { - "input": "spam", - "output": ["null"] - }, - { - "input": "spammy", - "output": ["null"] - }, - { - "input": "spec: async functions", - "output": ["doc"] - }, - { - "input": "spec: async generators", - "output": ["doc"] - }, - { - "input": "spec: bigint", - "output": ["doc"] - }, - { - "input": "spec: class fields", - "output": ["doc"] - }, - { - "input": "spec: classes", - "output": ["doc"] - }, - { - "input": "spec: decorators", - "output": ["doc"] - }, - { - "input": "spec: decorators (legacy)", - "output": ["doc"] - }, - { - "input": "spec: do expressions", - "output": ["doc"] - }, - { - "input": "stale", - "output": ["null"] - }, - { - "input": "status: accepted", - "output": ["null"] - }, - { - "input": "status: accepted :heavy_check_mark:", - "output": ["null"] - }, - { - "input": "status: available", - "output": ["null"] - }, - { - "input": "status: available :free:", - "output": ["null"] - }, - { - "input": "status: cla not signed", - "output": ["null"] - }, - { - "input": "status: code review request", - "output": ["null"] - }, - { - "input": "status: duplicate", - "output": ["null"] - }, - { - "input": "status: hacktoberfest approved", - "output": ["null"] - }, - { - "input": "status: help wanted", - "output": ["null"] - }, - { - "input": "status: in progress", - "output": ["null"] - }, - { - "input": "status: in progress :construction_worker:", - "output": ["null"] - }, - { - "input": "status: in review", - "output": ["null"] - }, - { - "input": "status: in review :detective:", - "output": ["null"] - }, - { - "input": "status: invalid", - "output": ["null"] - }, - { - "input": "status: left out", - "output": ["null"] - }, - { - "input": "status: left out :left_luggage:", - "output": ["null"] - }, - { - "input": "status: on hold", - "output": ["null"] - }, - { - "input": "status: on hold :stop_sign:", - "output": ["null"] - }, - { - "input": "status: ready for deploy", - "output": ["null"] - }, - { - "input": "status: review needed", - "output": ["null"] - }, - { - "input": "status: review needed :passport_control:", - "output": ["null"] - }, - { - "input": "status: waiting for feedback", - "output": ["null"] - }, - { - "input": "status: wontfix", - "output": ["null"] - }, - { - "input": "status: work in progress", - "output": ["null"] - }, - { - "input": "suggestion", - "output": ["ideas"] - }, - { - "input": "support", - "output": ["null"] - }, - { - "input": "syntax feature request", - "output": ["ideas"] - }, - { - "input": "technical debt", - "output": ["maintenance"] - }, - { - "input": "technical-debt", - "output": ["maintenance"] - }, - { - "input": "test", - "output": ["test"] - }, - { - "input": "test needed", - "output": ["null"] - }, - { - "input": "tests", - "output": ["test"] - }, - { - "input": "tips", - "output": ["ideas"] - }, - { - "input": "to do", - "output": ["maintenance"] - }, - { - "input": "to merge", - "output": ["null"] - }, - { - "input": "todo :spiral_notepad:", - "output": ["maintenance"] - }, - { - "input": "translation", - "output": ["translation"] - }, - { - "input": "travis-yml", - "output": ["infra"] - }, - { - "input": "triage", - "output": ["null"] - }, - { - "input": "triage-done", - "output": ["null"] - }, - { - "input": "trivial", - "output": ["null"] - }, - { - "input": "type: archive", - "output": ["null"] - }, - { - "input": "type: bug", - "output": ["bug"] - }, - { - "input": "type: bug :bug:", - "output": ["bug"] - }, - { - "input": "type: community enhancement", - "output": ["maintenance"] - }, - { - "input": "type: discuss :speech_balloon:", - "output": ["ideas"] - }, - { - "input": "type: doc update", - "output": ["doc"] - }, - { - "input": "type: documentation :book:", - "output": ["doc"] - }, - { - "input": "type: duplicate :repeat:", - "output": ["null"] - }, - { - "input": "type: enhancement", - "output": ["maintenance"] - }, - { - "input": "type: enhancement :bulb:", - "output": ["ideas"] - }, - { - "input": "type: getting started", - "output": ["null"] - }, - { - "input": "type: invalid :x:", - "output": ["null"] - }, - { - "input": "type: maintenance :construction:", - "output": ["maintenance"] - }, - { - "input": "type: non-library issue", - "output": ["null"] - }, - { - "input": "type: question", - "output": ["question"] - }, - { - "input": "type: question :grey_question:", - "output": ["question"] - }, - { - "input": "type: regression :boom:", - "output": ["bug"] - }, - { - "input": "type: security", - "output": ["security"] - }, - { - "input": "type: sendgrid enhancement", - "output": ["maintenance"] - }, - { - "input": "type: support", - "output": ["null"] - }, - { - "input": "type: vulnerability :warning:", - "output": ["security"] - }, - { - "input": "types", - "output": ["null"] - }, - { - "input": "ui", - "output": ["design"] - }, - { - "input": "unable to reproduce", - "output": ["null"] - }, - { - "input": "unconfirmed", - "output": ["null"] - }, - { - "input": "update", - "output": ["maintenance"] - }, - { - "input": "upstream", - "output": ["null"] - }, - { - "input": "upstream bug", - "output": ["bug"] - }, - { - "input": "ux", - "output": ["design"] - }, - { - "input": "v3", - "output": ["null"] - }, - { - "input": "vulnerability", - "output": ["security"] - }, - { - "input": "website", - "output": ["code"] - }, - { - "input": "websocket", - "output": ["tool"] - }, - { - "input": "weekly-digest", - "output": ["blog"] - }, - { - "input": "windows", - "output": ["platform"] - }, - { - "input": "wip", - "output": ["null"] - }, - { - "input": "wontfix", - "output": ["null"] - }, - { - "input": "work in progress", - "output": ["null"] - }, - { - "input": "writer-needed", - "output": ["null"] - }, - { - "input": "wrong repo", - "output": ["null"] - }, - { - "input": "xhr-polling", - "output": ["null"] - }, - { - "input": "0 - backlog", - "output": ["null"] - }, - { - "input": "1 - ready", - "output": ["null"] - }, - { - "input": "2 - working", - "output": ["null"] - }, - { - "input": "2.x", - "output": ["null"] - }, - { - "input": "3 - done", - "output": ["null"] - }, - { - "input": "6.x: backport", - "output": ["null"] - }, - { - "input": "7.x: regression", - "output": ["bug"] - }, - { - "input": ":arrow_heading_down: pull", - "output": ["maintenance"] - }, - { - "input": ":boom: regression", - "output": ["bug"] - }, - { - "input": ":bug: bug", - "output": ["bug"] - }, - { - "input": ":rocket: enhancement", - "output": ["maintenance"] - }, - { - "input": ":rocket: feature request", - "output": ["ideas"] - }, - { - "input": ":speech_balloon: question", - "output": ["question"] - }, - { - "input": "@font-face", - "output": ["design"] - }, - { - "input": "abandoned", - "output": ["null"] - }, - { - "input": "accepted", - "output": ["null"] - }, - { - "input": "accessibility", - "output": ["null"] - }, - { - "input": "adapter", - "output": ["plugin"] - }, - { - "input": "advance developer workflow", - "output": ["infra"] - }, - { - "input": "android", - "output": ["platform"] - }, - { - "input": "angular", - "output": ["code"] - }, - { - "input": "animals (category)", - "output": ["null"] - }, - { - "input": "answered", - "output": ["null"] - }, - { - "input": "approved", - "output": ["null"] - }, - { - "input": "area: concurrent", - "output": ["null"] - }, - { - "input": "area: crash", - "output": ["bug"] - }, - { - "input": "arrows (category)", - "output": ["null"] - }, - { - "input": "automotive (category)", - "output": ["null"] - }, - { - "input": "available in fa pro", - "output": ["null"] - }, - { - "input": "awaiting-review", - "output": ["null"] - }, - { - "input": "beginner-friendly", - "output": ["null"] - }, - { - "input": "beverage (category)", - "output": ["null"] - }, - { - "input": "blocked", - "output": ["null"] - }, - { - "input": "blocker", - "output": ["null"] - }, - { - "input": "bootstrap", - "output": ["tool"] - }, - { - "input": "brand icon", - "output": ["design"] - }, - { - "input": "breaking change", - "output": ["code"] - }, - { - "input": "browser bug", - "output": ["bug"] - }, - { - "input": "browser: ie", - "output": ["null"] - }, - { - "input": "browser: safari", - "output": ["null"] - }, - { - "input": "bug", - "output": ["bug"] - }, - { - "input": "bug report", - "output": ["bug"] - }, - { - "input": "business (category)", - "output": ["business"] - }, - { - "input": "c/c++", - "output": ["null"] - }, - { - "input": "cannot reproduce", - "output": ["null"] - }, - { - "input": "cantfix", - "output": ["null"] - }, - { - "input": "cdn", - "output": ["platform"] - }, - { - "input": "chat (category)", - "output": ["ideas"] - }, - { - "input": "chore", - "output": ["maintenance"] - }, - { - "input": "cla signed", - "output": ["null"] - }, - { - "input": "cla signed :heavy_check_mark:", - "output": ["null"] - }, - { - "input": "cla: no", - "output": ["null"] - }, - { - "input": "cla: yes", - "output": ["null"] - }, - { - "input": "cli", - "output": ["code"] - }, - { - "input": "closed due to inactivity", - "output": ["null"] - }, - { - "input": "cmty:bug-report", - "output": ["bug"] - }, - { - "input": "cmty:feature-request", - "output": ["ideas"] - }, - { - "input": "cmty:question", - "output": ["question"] - }, - { - "input": "cmty:status:cancelled", - "output": ["null"] - }, - { - "input": "cmty:status:fixed", - "output": ["null"] - }, - { - "input": "cmty:status:implemented", - "output": ["null"] - }, - { - "input": "cmty:status:resolved", - "output": ["null"] - }, - { - "input": "community", - "output": ["null"] - }, - { - "input": "component: build infrastructure", - "output": ["infra"] - }, - { - "input": "component: component api", - "output": ["code"] - }, - { - "input": "component: concurrent mode", - "output": ["null"] - }, - { - "input": "component: core utilities", - "output": ["maintenance"] - }, - { - "input": "component: developer tools", - "output": ["tool"] - }, - { - "input": "component: dom", - "output": ["code"] - }, - { - "input": "component: eslint rules", - "output": ["maintenance"] - }, - { - "input": "component: hooks", - "output": ["code"] - }, - { - "input": "component: optimizing compiler", - "output": ["code"] - }, - { - "input": "component: reactis", - "output": ["code"] - }, - { - "input": "component: reconciler", - "output": ["null"] - }, - { - "input": "component: scheduler", - "output": ["null"] - }, - { - "input": "component: server rendering", - "output": ["code"] - }, - { - "input": "component: shallow renderer", - "output": ["code"] - }, - { - "input": "component: suspense", - "output": ["null"] - }, - { - "input": "component: test renderer", - "output": ["test"] - }, - { - "input": "component: test utils", - "output": ["test"] - }, - { - "input": "configuration", - "output": ["code"] - }, - { - "input": "confirmed", - "output": ["null"] - }, - { - "input": "conflicts", - "output": ["null"] - }, - { - "input": "contribution welcome", - "output": ["null"] - }, - { - "input": "core", - "output": ["maintenance"] - }, - { - "input": "critical", - "output": ["null"] - }, - { - "input": "csharp", - "output": ["code"] - }, - { - "input": "css", - "output": ["code"] - }, - { - "input": "css-select", - "output": ["code"] - }, - { - "input": "currency (category)", - "output": ["financial"] - }, - { - "input": "defect", - "output": ["bug"] - }, - { - "input": "dependencies", - "output": ["maintenance"] - }, - { - "input": "dependency related", - "output": ["maintenance"] - }, - { - "input": "design", - "output": ["design"] - }, - { - "input": "design (category)", - "output": ["design"] - }, - { - "input": "difficulty: challenging", - "output": ["null"] - }, - { - "input": "difficulty: easy", - "output": ["null"] - }, - { - "input": "difficulty: hard", - "output": ["null"] - }, - { - "input": "difficulty: medium", - "output": ["null"] - }, - { - "input": "difficulty: starter", - "output": ["null"] - }, - { - "input": "difficulty: unknown or n/a", - "output": ["null"] - }, - { - "input": "difficulty: very hard", - "output": ["null"] - }, - { - "input": "discussion", - "output": ["ideas"] - }, - { - "input": "do not merge", - "output": ["null"] - }, - { - "input": "doc", - "output": ["doc"] - }, - { - "input": "docs", - "output": ["doc"] - }, - { - "input": "documentation", - "output": ["doc"] - }, - { - "input": "documentation :book:", - "output": ["doc"] - }, - { - "input": "duplicate", - "output": ["null"] - }, - { - "input": "electron", - "output": ["tool"] - }, - { - "input": "enhancement", - "output": ["maintenance"] - }, - { - "input": "enterprise", - "output": ["null"] - }, - { - "input": "enterprise-2.0-backport", - "output": ["null"] - }, - { - "input": "enterprise-2.1-backport", - "output": ["null"] - }, - { - "input": "enterprise-2.2-backport", - "output": ["null"] - }, - { - "input": "es6", - "output": ["code"] - }, - { - "input": "es7", - "output": ["code"] - }, - { - "input": "external", - "output": ["plugin"] - }, - { - "input": "externs", - "output": ["plugin"] - }, - { - "input": "feat/cli", - "output": ["code"] - }, - { - "input": "feat: babel", - "output": ["tool"] - }, - { - "input": "feat: cli", - "output": ["code"] - }, - { - "input": "feat: cli-service build", - "output": ["code"] - }, - { - "input": "feat: cli-service serve", - "output": ["code"] - }, - { - "input": "feat: e2e-cypress", - "output": ["test"] - }, - { - "input": "feat: e2e-nightwatch", - "output": ["test"] - }, - { - "input": "feat: eslint", - "output": ["maintenance"] - }, - { - "input": "feat: plugin api", - "output": ["plugin"] - }, - { - "input": "feat: pwa", - "output": ["code"] - }, - { - "input": "feat: typescript", - "output": ["code"] - }, - { - "input": "feat: ui", - "output": ["design"] - }, - { - "input": "feat: unit-jest", - "output": ["test"] - }, - { - "input": "feat: unit-mocha", - "output": ["test"] - }, - { - "input": "feature", - "output": ["ideas"] - }, - { - "input": "feature request", - "output": ["ideas"] - }, - { - "input": "feedback requested", - "output": ["null"] - }, - { - "input": "files (category)", - "output": ["null"] - }, - { - "input": "first-timers-only", - "output": ["null"] - }, - { - "input": "flags (category)", - "output": ["null"] - }, - { - "input": "flashsocket", - "output": ["tool"] - }, - { - "input": "fontawesome.com", - "output": ["null"] - }, - { - "input": "food (category)", - "output": ["null"] - }, - { - "input": "freemasonry icons", - "output": ["design"] - }, - { - "input": "frontend", - "output": ["code"] - }, - { - "input": "future architecture enhancements", - "output": ["ideas"] - }, - { - "input": "future crypto enhancements", - "output": ["ideas"] - }, - { - "input": "genders (category)", - "output": ["null"] - }, - { - "input": "general js", - "output": ["code"] - }, - { - "input": "gh review: accepted", - "output": ["null"] - }, - { - "input": "go client internal release", - "output": ["null"] - }, - { - "input": "good first issue", - "output": ["null"] - }, - { - "input": "good first issue :+1:", - "output": ["null"] - }, - { - "input": "great insight", - "output": ["ideas"] - }, - { - "input": "greenkeeper", - "output": ["infra"] - }, - { - "input": "hack", - "output": ["code"] - }, - { - "input": "hacked", - "output": ["security"] - }, - { - "input": "hacktoberfest", - "output": ["code"] - }, - { - "input": "handshakes", - "output": ["business"] - }, - { - "input": "has bounty", - "output": ["null"] - }, - { - "input": "has pr", - "output": ["null"] - }, - { - "input": "help", - "output": ["null"] - }, - { - "input": "help / pr wanted", - "output": ["null"] - }, - { - "input": "help wanted", - "output": ["null"] - }, - { - "input": "help wanted :sos:", - "output": ["null"] - }, - { - "input": "hi-pri", - "output": ["null"] - }, - { - "input": "high-priority", - "output": ["null"] - }, - { - "input": "hodor", - "output": ["null"] - }, - { - "input": "hot discussion", - "output": ["ideas"] - }, - { - "input": "html", - "output": ["code"] - }, - { - "input": "htmlfile", - "output": ["code"] - }, - { - "input": "https", - "output": ["null"] - }, - { - "input": "icebox", - "output": ["platform"] - }, - { - "input": "ie8", - "output": ["null"] - }, - { - "input": "import in progress", - "output": ["null"] - }, - { - "input": "import started", - "output": ["null"] - }, - { - "input": "in progress", - "output": ["null"] - }, - { - "input": "in review", - "output": ["null"] - }, - { - "input": "infrastructure :hammer_and_wrench:", - "output": ["infra"] - }, - { - "input": "installer", - "output": ["tool"] - }, - { - "input": "internal cleanup", - "output": ["maintenance"] - }, - { - "input": "internal-issue-created", - "output": ["bug"] - }, - { - "input": "invalid", - "output": ["null"] - }, - { - "input": "ios", - "output": ["platform"] - }, - { - "input": "jquery differences", - "output": ["null"] - }, - { - "input": "jsonp-polling", - "output": ["null"] - }, - { - "input": "kbfs", - "output": ["null"] - }, - { - "input": "lang-crystal", - "output": ["code"] - }, - { - "input": "lang-dart", - "output": ["code"] - }, - { - "input": "lang-elixir", - "output": ["code"] - }, - { - "input": "lang-go", - "output": ["code"] - }, - { - "input": "lang-julia", - "output": ["code"] - }, - { - "input": "lang-objc", - "output": ["code"] - }, - { - "input": "lang-r", - "output": ["code"] - }, - { - "input": "lang-scala", - "output": ["code"] - }, - { - "input": "legal", - "output": ["security"] - }, - { - "input": "library", - "output": ["tool"] - }, - { - "input": "lint", - "output": ["maintenance"] - }, - { - "input": "linux", - "output": ["platform"] - }, - { - "input": "lks", - "output": ["null"] - }, - { - "input": "m1.s0", - "output": ["null"] - }, - { - "input": "m1.s1", - "output": ["null"] - }, - { - "input": "m1.s2", - "output": ["null"] - }, - { - "input": "macos", - "output": ["platform"] - }, - { - "input": "maintenance", - "output": ["maintenance"] - }, - { - "input": "major", - "output": ["null"] - }, - { - "input": "mass purge 2015.10.26", - "output": ["null"] - }, - { - "input": "minor", - "output": ["null"] - }, - { - "input": "mobile device support", - "output": ["platform"] - }, - { - "input": "mode: proxy", - "output": ["null"] - }, - { - "input": "modules", - "output": ["code"] - }, - { - "input": "must-triage", - "output": ["null"] - }, - { - "input": "namespaces", - "output": ["null"] - }, - { - "input": "need-info", - "output": ["null"] - }, - { - "input": "needs a example app.", - "output": ["null"] - }, - { - "input": "needs a failing test", - "output": ["null"] - }, - { - "input": "needs browser testing", - "output": ["null"] - }, - { - "input": "needs changelog", - "output": ["null"] - }, - { - "input": "needs docs", - "output": ["null"] - }, - { - "input": "needs documentation", - "output": ["null"] - }, - { - "input": "needs info", - "output": ["null"] - }, - { - "input": "needs more info :man_shrugging:", - "output": ["null"] - }, - { - "input": "needs repro", - "output": ["null"] - }, - { - "input": "needs review", - "output": ["null"] - }, - { - "input": "needs triage", - "output": ["null"] - }, - { - "input": "needs-more-info", - "output": ["null"] - }, - { - "input": "needs-research", - "output": ["null"] - }, - { - "input": "new api proposal", - "output": ["ideas"] - }, - { - "input": "new best practice", - "output": ["ideas"] - }, - { - "input": "node", - "output": ["platform"] - }, - { - "input": "node next", - "output": ["platform"] - }, - { - "input": "not a bug", - "output": ["null"] - }, - { - "input": "on hold", - "output": ["null"] - }, - { - "input": "open", - "output": ["null"] - }, - { - "input": "operations", - "output": ["maintenance"] - }, - { - "input": "opinions needed", - "output": ["null"] - }, - { - "input": "optimisation", - "output": ["code"] - }, - { - "input": "other language integration feature", - "output": ["ideas"] - }, - { - "input": "p0", - "output": ["null"] - }, - { - "input": "p1", - "output": ["null"] - }, - { - "input": "p2", - "output": ["null"] - }, - { - "input": "p3", - "output": ["null"] - }, - { - "input": "packaging", - "output": ["platform"] - }, - { - "input": "parser", - "output": ["tool"] - }, - { - "input": "parser-specific", - "output": ["tool"] - }, - { - "input": "pending release", - "output": ["null"] - }, - { - "input": "performance", - "output": ["maintenance"] - }, - { - "input": "planned feature", - "output": ["null"] - }, - { - "input": "planned for next release", - "output": ["null"] - }, - { - "input": "pr welcome", - "output": ["null"] - }, - { - "input": "pr-existing", - "output": ["null"] - }, - { - "input": "pr: breaking change", - "output": ["code"] - }, - { - "input": "pr: breaking change :boom:", - "output": ["code"] - }, - { - "input": "pr: bug fix", - "output": ["bug"] - }, - { - "input": "pr: bug fix :bug:", - "output": ["bug"] - }, - { - "input": "pr: dependency ⬆️", - "output": ["maintenance"] - }, - { - "input": "pr: deprecation", - "output": ["null"] - }, - { - "input": "pr: docs :memo:", - "output": ["doc"] - }, - { - "input": "pr: documentation", - "output": ["doc"] - }, - { - "input": "pr: good example", - "output": ["example"] - }, - { - "input": "pr: internal", - "output": ["code"] - }, - { - "input": "pr: internal :house:", - "output": ["code"] - }, - { - "input": "pr: merged", - "output": ["null"] - }, - { - "input": "pr: needs review", - "output": ["null"] - }, - { - "input": "status: left out :left_luggage:", - "output": ["null"] - }, - { - "input": "status: on hold", - "output": ["null"] - }, - { - "input": "status: on hold :stop_sign:", - "output": ["null"] - }, - { - "input": "status: ready for deploy", - "output": ["null"] - }, - { - "input": "status: review needed", - "output": ["null"] - }, - { - "input": "status: review needed :passport_control:", - "output": ["null"] - }, - { - "input": "status: waiting for feedback", - "output": ["null"] - }, - { - "input": "status: wontfix", - "output": ["null"] - }, - { - "input": "status: work in progress", - "output": ["null"] - }, - { - "input": "suggestion", - "output": ["ideas"] - }, - { - "input": "support", - "output": ["null"] - }, - { - "input": "syntax feature request", - "output": ["ideas"] - }, - { - "input": "technical debt", - "output": ["maintenance"] - }, - { - "input": "technical-debt", - "output": ["maintenance"] - }, - { - "input": "test", - "output": ["test"] - }, - { - "input": "test needed", - "output": ["null"] - }, - { - "input": "tests", - "output": ["test"] - }, - { - "input": "tips", - "output": ["ideas"] - }, - { - "input": "to do", - "output": ["maintenance"] - }, - { - "input": "to merge", - "output": ["null"] - }, - { - "input": "todo :spiral_notepad:", - "output": ["maintenance"] - }, - { - "input": "translation", - "output": ["translation"] - }, - { - "input": "travis-yml", - "output": ["infra"] - }, - { - "input": "triage", - "output": ["null"] - }, - { - "input": "triage-done", - "output": ["null"] - }, - { - "input": "trivial", - "output": ["null"] - }, - { - "input": "type: archive", - "output": ["null"] - }, - { - "input": "type: bug", - "output": ["bug"] - }, - { - "input": "type: bug :bug:", - "output": ["bug"] - }, - { - "input": "type: community enhancement", - "output": ["maintenance"] - }, - { - "input": "type: discuss :speech_balloon:", - "output": ["ideas"] - }, - { - "input": "type: doc update", - "output": ["doc"] - }, - { - "input": "type: documentation :book:", - "output": ["doc"] - }, - { - "input": "type: duplicate :repeat:", - "output": ["null"] - }, - { - "input": "type: enhancement", - "output": ["maintenance"] - }, - { - "input": "type: enhancement :bulb:", - "output": ["ideas"] - }, - { - "input": "type: getting started", - "output": ["null"] - }, - { - "input": "type: invalid :x:", - "output": ["null"] - }, - { - "input": "type: maintenance :construction:", - "output": ["maintenance"] - }, - { - "input": "type: non-library issue", - "output": ["null"] - }, - { - "input": "type: question", - "output": ["question"] - }, - { - "input": "type: question :grey_question:", - "output": ["question"] - }, - { - "input": "type: regression :boom:", - "output": ["bug"] - }, - { - "input": "type: security", - "output": ["security"] - }, - { - "input": "type: sendgrid enhancement", - "output": ["maintenance"] - }, - { - "input": "type: support", - "output": ["null"] - }, - { - "input": "type: vulnerability :warning:", - "output": ["security"] - }, - { - "input": "types", - "output": ["null"] - }, - { - "input": "ui", - "output": ["design"] - }, - { - "input": "unable to reproduce", - "output": ["null"] - }, - { - "input": "unconfirmed", - "output": ["null"] - }, - { - "input": "update", - "output": ["maintenance"] - }, - { - "input": "upstream", - "output": ["null"] - }, - { - "input": "upstream bug", - "output": ["bug"] - }, - { - "input": "ux", - "output": ["design"] - }, - { - "input": "v3", - "output": ["null"] - }, - { - "input": "vulnerability", - "output": ["security"] - }, - { - "input": "website", - "output": ["code"] - }, - { - "input": "websocket", - "output": ["tool"] - }, - { - "input": "weekly-digest", - "output": ["blog"] - }, - { - "input": "windows", - "output": ["platform"] - }, - { - "input": "wip", - "output": ["null"] - }, - { - "input": "wontfix", - "output": ["null"] - }, - { - "input": "work in progress", - "output": ["null"] - }, - { - "input": "writer-needed", - "output": ["null"] - }, - { - "input": "wrong repo", - "output": ["null"] - }, - { - "input": "xhr-polling", - "output": ["null"] - }, - { - "input": "0 - backlog", - "output": ["null"] - }, - { - "input": "1 - ready", - "output": ["null"] - }, - { - "input": "2 - working", - "output": ["null"] - }, - { - "input": "2.x", - "output": ["null"] - }, - { - "input": "3 - done", - "output": ["null"] - }, - { - "input": "6.x: backport", - "output": ["null"] - }, - { - "input": "7.x: regression", - "output": ["bug"] - }, - { - "input": ":arrow_heading_down: pull", - "output": ["maintenance"] - }, - { - "input": ":boom: regression", - "output": ["bug"] - }, - { - "input": ":bug: bug", - "output": ["bug"] - }, - { - "input": ":rocket: enhancement", - "output": ["maintenance"] - }, - { - "input": ":rocket: feature request", - "output": ["ideas"] - }, - { - "input": ":speech_balloon: question", - "output": ["question"] - }, - { - "input": "@font-face", - "output": ["design"] - }, - { - "input": "abandoned", - "output": ["null"] - }, - { - "input": "accepted", - "output": ["null"] - }, - { - "input": "accessibility", - "output": ["null"] - }, - { - "input": "adapter", - "output": ["plugin"] - }, - { - "input": "advance developer workflow", - "output": ["infra"] - }, - { - "input": "android", - "output": ["platform"] - }, - { - "input": "angular", - "output": ["code"] - }, - { - "input": "animals (category)", - "output": ["null"] - }, - { - "input": "answered", - "output": ["null"] - }, - { - "input": "approved", - "output": ["null"] - }, - { - "input": "area: concurrent", - "output": ["null"] - }, - { - "input": "area: crash", - "output": ["bug"] - }, - { - "input": "arrows (category)", - "output": ["null"] - }, - { - "input": "automotive (category)", - "output": ["null"] - }, - { - "input": "available in fa pro", - "output": ["null"] - }, - { - "input": "awaiting-review", - "output": ["null"] - }, - { - "input": "beginner-friendly", - "output": ["null"] - }, - { - "input": "beverage (category)", - "output": ["null"] - }, - { - "input": "blocked", - "output": ["null"] - }, - { - "input": "blocker", - "output": ["null"] - }, - { - "input": "bootstrap", - "output": ["tool"] - }, - { - "input": "brand icon", - "output": ["design"] - }, - { - "input": "breaking change", - "output": ["code"] - }, - { - "input": "browser bug", - "output": ["bug"] - }, - { - "input": "browser: ie", - "output": ["null"] - }, - { - "input": "browser: safari", - "output": ["null"] - }, - { - "input": "bug", - "output": ["bug"] - }, - { - "input": "bug report", - "output": ["bug"] - }, - { - "input": "business (category)", - "output": ["business"] - }, - { - "input": "c/c++", - "output": ["null"] - }, - { - "input": "cannot reproduce", - "output": ["null"] - }, - { - "input": "cantfix", - "output": ["null"] - }, - { - "input": "cdn", - "output": ["platform"] - }, - { - "input": "chat (category)", - "output": ["ideas"] - }, - { - "input": "chore", - "output": ["maintenance"] - }, - { - "input": "cla signed", - "output": ["null"] - }, - { - "input": "cla signed :heavy_check_mark:", - "output": ["null"] - }, - { - "input": "cla: no", - "output": ["null"] - }, - { - "input": "cla: yes", - "output": ["null"] - }, - { - "input": "cli", - "output": ["code"] - }, - { - "input": "closed due to inactivity", - "output": ["null"] - }, - { - "input": "cmty:bug-report", - "output": ["bug"] - }, - { - "input": "cmty:feature-request", - "output": ["ideas"] - }, - { - "input": "cmty:question", - "output": ["question"] - }, - { - "input": "cmty:status:cancelled", - "output": ["null"] - }, - { - "input": "cmty:status:fixed", - "output": ["null"] - }, - { - "input": "cmty:status:implemented", - "output": ["null"] - }, - { - "input": "cmty:status:resolved", - "output": ["null"] - }, - { - "input": "community", - "output": ["null"] - }, - { - "input": "component: build infrastructure", - "output": ["infra"] - }, - { - "input": "component: component api", - "output": ["code"] - }, - { - "input": "component: concurrent mode", - "output": ["null"] - }, - { - "input": "component: core utilities", - "output": ["maintenance"] - }, - { - "input": "component: developer tools", - "output": ["tool"] - }, - { - "input": "component: dom", - "output": ["code"] - }, - { - "input": "component: eslint rules", - "output": ["maintenance"] - }, - { - "input": "component: hooks", - "output": ["code"] - }, - { - "input": "component: optimizing compiler", - "output": ["code"] - }, - { - "input": "component: reactis", - "output": ["code"] - }, - { - "input": "component: reconciler", - "output": ["null"] - }, - { - "input": "component: scheduler", - "output": ["null"] - }, - { - "input": "component: server rendering", - "output": ["code"] - }, - { - "input": "component: shallow renderer", - "output": ["code"] - }, - { - "input": "component: suspense", - "output": ["null"] - }, - { - "input": "component: test renderer", - "output": ["test"] - }, - { - "input": "component: test utils", - "output": ["test"] - }, - { - "input": "configuration", - "output": ["code"] - }, - { - "input": "confirmed", - "output": ["null"] - }, - { - "input": "conflicts", - "output": ["null"] - }, - { - "input": "contribution welcome", - "output": ["null"] - }, - { - "input": "core", - "output": ["maintenance"] - }, - { - "input": "critical", - "output": ["null"] - }, - { - "input": "csharp", - "output": ["code"] - }, - { - "input": "css", - "output": ["code"] - }, - { - "input": "css-select", - "output": ["code"] - }, - { - "input": "currency (category)", - "output": ["financial"] - }, - { - "input": "defect", - "output": ["bug"] - }, - { - "input": "dependencies", - "output": ["maintenance"] - }, - { - "input": "dependency related", - "output": ["maintenance"] - }, - { - "input": "design", - "output": ["design"] - }, - { - "input": "design (category)", - "output": ["design"] - }, - { - "input": "difficulty: challenging", - "output": ["null"] - }, - { - "input": "difficulty: easy", - "output": ["null"] - }, - { - "input": "difficulty: hard", - "output": ["null"] - }, - { - "input": "difficulty: medium", - "output": ["null"] - }, - { - "input": "difficulty: starter", - "output": ["null"] - }, - { - "input": "difficulty: unknown or n/a", - "output": ["null"] - }, - { - "input": "difficulty: very hard", - "output": ["null"] - }, - { - "input": "discussion", - "output": ["ideas"] - }, - { - "input": "do not merge", - "output": ["null"] - }, - { - "input": "doc", - "output": ["doc"] - }, - { - "input": "docs", - "output": ["doc"] - }, - { - "input": "documentation", - "output": ["doc"] - }, - { - "input": "documentation :book:", - "output": ["doc"] - }, - { - "input": "duplicate", - "output": ["null"] - }, - { - "input": "electron", - "output": ["tool"] - }, - { - "input": "enhancement", - "output": ["maintenance"] - }, - { - "input": "enterprise", - "output": ["null"] - }, - { - "input": "enterprise-2.0-backport", - "output": ["null"] - }, - { - "input": "enterprise-2.1-backport", - "output": ["null"] - }, - { - "input": "enterprise-2.2-backport", - "output": ["null"] - }, - { - "input": "es6", - "output": ["code"] - }, - { - "input": "es7", - "output": ["code"] - }, - { - "input": "external", - "output": ["plugin"] - }, - { - "input": "externs", - "output": ["plugin"] - }, - { - "input": "feat/cli", - "output": ["code"] - }, - { - "input": "feat: babel", - "output": ["tool"] - }, - { - "input": "feat: cli", - "output": ["code"] - }, - { - "input": "feat: cli-service build", - "output": ["code"] - }, - { - "input": "feat: cli-service serve", - "output": ["code"] - }, - { - "input": "feat: e2e-cypress", - "output": ["test"] - }, - { - "input": "feat: e2e-nightwatch", - "output": ["test"] - }, - { - "input": "feat: eslint", - "output": ["maintenance"] - }, - { - "input": "feat: plugin api", - "output": ["plugin"] - }, - { - "input": "feat: pwa", - "output": ["code"] - }, - { - "input": "feat: typescript", - "output": ["code"] - }, - { - "input": "feat: ui", - "output": ["design"] - }, - { - "input": "feat: unit-jest", - "output": ["test"] - }, - { - "input": "feat: unit-mocha", - "output": ["test"] - }, - { - "input": "feature", - "output": ["ideas"] - }, - { - "input": "feature request", - "output": ["ideas"] - }, - { - "input": "feedback requested", - "output": ["null"] - }, - { - "input": "files (category)", - "output": ["null"] - }, - { - "input": "first-timers-only", - "output": ["null"] - }, - { - "input": "flags (category)", - "output": ["null"] - }, - { - "input": "flashsocket", - "output": ["tool"] - }, - { - "input": "fontawesome.com", - "output": ["null"] - }, - { - "input": "food (category)", - "output": ["null"] - }, - { - "input": "freemasonry icons", - "output": ["design"] - }, - { - "input": "frontend", - "output": ["code"] - }, - { - "input": "future architecture enhancements", - "output": ["ideas"] - }, - { - "input": "future crypto enhancements", - "output": ["ideas"] - }, - { - "input": "genders (category)", - "output": ["null"] - }, - { - "input": "general js", - "output": ["code"] - }, - { - "input": "gh review: accepted", - "output": ["null"] - }, - { - "input": "go client internal release", - "output": ["null"] - }, - { - "input": "good first issue", - "output": ["null"] - }, - { - "input": "good first issue :+1:", - "output": ["null"] - }, - { - "input": "great insight", - "output": ["ideas"] - }, - { - "input": "greenkeeper", - "output": ["infra"] - }, - { - "input": "hack", - "output": ["code"] - }, - { - "input": "hacked", - "output": ["security"] - }, - { - "input": "hacktoberfest", - "output": ["code"] - }, - { - "input": "handshakes", - "output": ["business"] - }, - { - "input": "has bounty", - "output": ["null"] - }, - { - "input": "has pr", - "output": ["null"] - }, - { - "input": "help", - "output": ["null"] - }, - { - "input": "help / pr wanted", - "output": ["null"] - }, - { - "input": "help wanted", - "output": ["null"] - }, - { - "input": "help wanted :sos:", - "output": ["null"] - }, - { - "input": "hi-pri", - "output": ["null"] - }, - { - "input": "high-priority", - "output": ["null"] - }, - { - "input": "hodor", - "output": ["null"] - }, - { - "input": "hot discussion", - "output": ["ideas"] - }, - { - "input": "html", - "output": ["code"] - }, - { - "input": "htmlfile", - "output": ["code"] - }, - { - "input": "https", - "output": ["null"] - }, - { - "input": "icebox", - "output": ["platform"] - }, - { - "input": "ie8", - "output": ["null"] - }, - { - "input": "import in progress", - "output": ["null"] - }, - { - "input": "import started", - "output": ["null"] - }, - { - "input": "in progress", - "output": ["null"] - }, - { - "input": "in review", - "output": ["null"] - }, - { - "input": "infrastructure :hammer_and_wrench:", - "output": ["infra"] - }, - { - "input": "installer", - "output": ["tool"] - }, - { - "input": "internal cleanup", - "output": ["maintenance"] - }, - { - "input": "internal-issue-created", - "output": ["bug"] - }, - { - "input": "invalid", - "output": ["null"] - }, - { - "input": "ios", - "output": ["platform"] - }, - { - "input": "jquery differences", - "output": ["null"] - }, - { - "input": "jsonp-polling", - "output": ["null"] - }, - { - "input": "kbfs", - "output": ["null"] - }, - { - "input": "lang-crystal", - "output": ["code"] - }, - { - "input": "lang-dart", - "output": ["code"] - }, - { - "input": "lang-elixir", - "output": ["code"] - }, - { - "input": "lang-go", - "output": ["code"] - }, - { - "input": "lang-julia", - "output": ["code"] - }, - { - "input": "lang-objc", - "output": ["code"] - }, - { - "input": "lang-r", - "output": ["code"] - }, - { - "input": "lang-scala", - "output": ["code"] - }, - { - "input": "legal", - "output": ["security"] - }, - { - "input": "library", - "output": ["tool"] - }, - { - "input": "lint", - "output": ["maintenance"] - }, - { - "input": "linux", - "output": ["platform"] - }, - { - "input": "lks", - "output": ["null"] - }, - { - "input": "m1.s0", - "output": ["null"] - }, - { - "input": "m1.s1", - "output": ["null"] - }, - { - "input": "m1.s2", - "output": ["null"] - }, - { - "input": "macos", - "output": ["platform"] - }, - { - "input": "maintenance", - "output": ["maintenance"] - }, - { - "input": "major", - "output": ["null"] - }, - { - "input": "mass purge 2015.10.26", - "output": ["null"] - }, - { - "input": "minor", - "output": ["null"] - }, - { - "input": "mobile device support", - "output": ["platform"] - }, - { - "input": "mode: proxy", - "output": ["null"] - }, - { - "input": "modules", - "output": ["code"] - }, - { - "input": "must-triage", - "output": ["null"] - }, - { - "input": "namespaces", - "output": ["null"] - }, - { - "input": "need-info", - "output": ["null"] - }, - { - "input": "needs a example app.", - "output": ["null"] - }, - { - "input": "needs a failing test", - "output": ["null"] - }, - { - "input": "needs browser testing", - "output": ["null"] - }, - { - "input": "needs changelog", - "output": ["null"] - }, - { - "input": "needs docs", - "output": ["null"] - }, - { - "input": "needs documentation", - "output": ["null"] - }, - { - "input": "needs info", - "output": ["null"] - }, - { - "input": "needs more info :man_shrugging:", - "output": ["null"] - }, - { - "input": "needs repro", - "output": ["null"] - }, - { - "input": "needs review", - "output": ["null"] - }, - { - "input": "needs triage", - "output": ["null"] - }, - { - "input": "needs-more-info", - "output": ["null"] - }, - { - "input": "needs-research", - "output": ["null"] - }, - { - "input": "new api proposal", - "output": ["ideas"] - }, - { - "input": "new best practice", - "output": ["ideas"] - }, - { - "input": "node", - "output": ["platform"] - }, - { - "input": "node next", - "output": ["platform"] - }, - { - "input": "not a bug", - "output": ["null"] - }, - { - "input": "on hold", - "output": ["null"] - }, - { - "input": "open", - "output": ["null"] - }, - { - "input": "operations", - "output": ["maintenance"] - }, - { - "input": "opinions needed", - "output": ["null"] - }, - { - "input": "optimisation", - "output": ["code"] - }, - { - "input": "other language integration feature", - "output": ["ideas"] - }, - { - "input": "p0", - "output": ["null"] - }, - { - "input": "p1", - "output": ["null"] - }, - { - "input": "p2", - "output": ["null"] - }, - { - "input": "p3", - "output": ["null"] - }, - { - "input": "packaging", - "output": ["platform"] - }, - { - "input": "parser", - "output": ["tool"] - }, - { - "input": "parser-specific", - "output": ["tool"] - }, - { - "input": "pending release", - "output": ["null"] - }, - { - "input": "performance", - "output": ["maintenance"] - }, - { - "input": "planned feature", - "output": ["null"] - }, - { - "input": "planned for next release", - "output": ["null"] - }, - { - "input": "pr welcome", - "output": ["null"] - }, - { - "input": "pr-existing", - "output": ["null"] - }, - { - "input": "pr: breaking change", - "output": ["code"] - }, - { - "input": "pr: breaking change :boom:", - "output": ["code"] - }, - { - "input": "pr: bug fix", - "output": ["bug"] - }, - { - "input": "pr: bug fix :bug:", - "output": ["bug"] - }, - { - "input": "pr: dependency ⬆️", - "output": ["maintenance"] - }, - { - "input": "pr: deprecation", - "output": ["null"] - }, - { - "input": "pr: docs :memo:", - "output": ["doc"] - }, - { - "input": "pr: documentation", - "output": ["doc"] - }, - { - "input": "pr: good example", - "output": ["example"] - }, - { - "input": "pr: internal", - "output": ["code"] - }, - { - "input": "pr: internal :house:", - "output": ["code"] - }, - { - "input": "pr: merged", - "output": ["null"] - }, - { - "input": "pr: needs review", - "output": ["null"] - }, - { - "input": "pr: new dependency", - "output": ["ideas"] - }, - { - "input": "pr: new feature", - "output": ["ideas"] - }, - { - "input": "pr: new feature :rocket:", - "output": ["ideas"] - }, - { - "input": "pr: polish :nail_care:", - "output": ["maintenance"] - }, - { - "input": "pr: ready for review", - "output": ["null"] - }, - { - "input": "pr: ready to be merged", - "output": ["null"] - }, - { - "input": "pr: reviewed-approved", - "output": ["null"] - }, - { - "input": "pr: reviewed-changes-requested", - "output": ["null"] - }, - { - "input": "pr: spec compliance :eyeglasses:", - "output": ["doc"] - }, - { - "input": "pr: underlying tools", - "output": ["tool"] - }, - { - "input": "pr: unreviewed", - "output": ["null"] - }, - { - "input": "pr: wip", - "output": ["null"] - }, - { - "input": "priority: critical", - "output": ["null"] - }, - { - "input": "priority: high", - "output": ["null"] - }, - { - "input": "priority: low", - "output": ["null"] - }, - { - "input": "priority: medium", - "output": ["null"] - }, - { - "input": "production", - "output": ["null"] - }, - { - "input": "project management", - "output": ["projectManagement"] - }, - { - "input": "question", - "output": ["question"] - }, - { - "input": "react flare", - "output": ["code"] - }, - { - "input": "react native", - "output": ["code"] - }, - { - "input": "ready", - "output": ["null"] - }, - { - "input": "refactor", - "output": ["code"] - }, - { - "input": "regression", - "output": ["bug"] - }, - { - "input": "release: alpha", - "output": ["null"] - }, - { - "input": "released", - "output": ["null"] - }, - { - "input": "reminder", - "output": ["null"] - }, - { - "input": "resolution: duplicate", - "output": ["null"] - }, - { - "input": "resolution: invalid", - "output": ["null"] - }, - { - "input": "resolution: needs more information", - "output": ["null"] - }, - { - "input": "resolution: support redirect", - "output": ["null"] - }, - { - "input": "review", - "output": ["review"] - }, - { - "input": "review in progress", - "output": ["null"] - }, - { - "input": "revisitinfuture", - "output": ["ideas"] - }, - { - "input": "rfc", - "output": ["ideas"] - }, - { - "input": "ruby", - "output": ["code"] - }, - { - "input": "security", - "output": ["security"] - }, - { - "input": "shell", - "output": ["tool"] - }, - { - "input": "socket.io client", - "output": ["tool"] - }, - { - "input": "spam", - "output": ["null"] - }, - { - "input": "spammy", - "output": ["null"] - }, - { - "input": "spec: async functions", - "output": ["doc"] - }, - { - "input": "spec: async generators", - "output": ["doc"] - }, - { - "input": "spec: bigint", - "output": ["doc"] - }, - { - "input": "spec: class fields", - "output": ["doc"] - }, - { - "input": "spec: classes", - "output": ["doc"] - }, - { - "input": "spec: decorators", - "output": ["doc"] - }, - { - "input": "spec: decorators (legacy)", - "output": ["doc"] - }, - { - "input": "spec: do expressions", - "output": ["doc"] - }, - { - "input": "stale", - "output": ["null"] - }, - { - "input": "status: accepted", - "output": ["null"] - }, - { - "input": "status: accepted :heavy_check_mark:", - "output": ["null"] - }, - { - "input": "status: available", - "output": ["null"] - }, - { - "input": "status: available :free:", - "output": ["null"] - }, - { - "input": "status: cla not signed", - "output": ["null"] - }, - { - "input": "status: code review request", - "output": ["null"] - }, - { - "input": "status: duplicate", - "output": ["null"] - }, - { - "input": "status: hacktoberfest approved", - "output": ["null"] - }, - { - "input": "status: help wanted", - "output": ["null"] - }, - { - "input": "status: in progress", - "output": ["null"] - }, - { - "input": "status: in progress :construction_worker:", - "output": ["null"] - }, - { - "input": "status: in review", - "output": ["null"] - }, - { - "input": "status: in review :detective:", - "output": ["null"] - }, - { - "input": "status: invalid", - "output": ["null"] - }, - { - "input": "status: left out", - "output": ["null"] - }, - { - "input": "status: left out :left_luggage:", - "output": ["null"] - }, - { - "input": "xhr-polling", - "output": ["null"] - } - ] - } -} + "createNewObjectString": "(pastTrainingSamples = []) => {\n const {multilabel, Winnow, EnhancedClassifier} = require('limdu').classifiers\n\n // Word extractor - a function that takes a sample and adds features to a given features set:\n const featureExtractor = (input, features) => {\n //similar to limdu.features.NGramsOfWords(1)\n input\n .split(/[ \\t,;:.-_]/) //perhaps remove _ to keep emoji words joint\n .filter(Boolean)\n .forEach(word => {\n features[word.toLowerCase()] = 1\n })\n }\n\n const TextClassifier = multilabel.BinaryRelevance.bind(0, {\n //eslint-disable-next-line babel/camelcase\n binaryClassifierType: Winnow.bind(0, {retrain_count: 10}),\n })\n\n const classifier = new EnhancedClassifier({\n classifierType: TextClassifier,\n featureExtractor, //or extract\n pastTrainingSamples,\n })\n\n return classifier\n}", + "object": { + "classifier": { + "tool": { + "positive_weights": { + "component": 0.6952285766601562, + "developer": 1.6479492187500004, + "tools": 13.18359375, + "bias": 9.314716182356227e-21, + "parser-specific": 22.78125, + "shell": 22.78125, + "socket": 7.03125, + "io": 7.03125, + "client": 2.8125, + "installer": 22.78125, + "library": 22.78125, + "bootstrap": 10.125, + "feat": 0.25, + "babel": 16, + "flashsocket": 10.125, + "electron": 10.125, + "parser": 10.125, + "inspiration": 0.125, + "business": 0.6666666666666667, + "process": 0.6666666666666667, + "sustain": 0.5, + "confirmed": 0.5, + "type": 0.28125, + "question": 0.25, + "grey": 0.75, + "cmty": 0.6666666666666667, + "need-info": 0.5, + "sustenance": 0.5, + "good": 0.75, + "first": 0.75, + "issue": 0.75, + "kind": 0.6666666666666667, + "discussion": 0.6666666666666667, + "palette": 0.5, + "azure": 0.6666666666666667, + "ad": 0.6666666666666667, + "data": 0.6666666666666667, + "collection": 0.6666666666666667, + "external-bugs": 0.5, + "deal": 0.5, + "hacking": 0.5, + "video": 0.5, + "test": 0.28125, + "utils": 0.28125, + "hsv": 0.5, + "thesis": 0.5, + "pentesting": 0.5, + "design": 0.5, + "website": 0.6666666666666667, + "copy": 0.6666666666666667, + "bug": 2, + "guide": 0.5, + "next": 0.6666666666666667, + "meetup!": 0.6666666666666667, + "ui": 0.22222222222222227, + "mastering": 0.5, + "steps": 0.5, + "abandoned": 0.5, + "badges": 0.5, + "sponsor": 0.5, + "assess": 0.5, + "pr": 0.6666666666666667, + "merged": 0.6666666666666667, + "vlog": 0.5, + "acceptance": 0.6666666666666667, + "testing": 0.6666666666666667, + "hot": 2, + "tv": 2, + "soundtrack": 2, + "(category)": 2, + "ci": 0.6666666666666667, + "cd": 0.6666666666666667, + "multi-cloud": 2, + "funding": 0.6666666666666667, + "finder": 0.6666666666666667, + "difficulty": 0.6666666666666667, + "hard": 0.6666666666666667, + "documentation": 0.6666666666666667, + "book": 0.6666666666666667, + "diary": 2, + "standard": 2, + "colour": 2, + "computer": 2, + "desktop": 2, + "flaw": 2, + "reliability": 2, + "cli-service": 0.75, + "build": 0.75, + "blocked": 2, + "maintenance": 2, + "construction": 2, + "ios": 2, + "planned": 2, + "feature": 0.8333333333333334, + "feature-request": 2, + "rfc": 2, + "image": 0.6666666666666667, + "stock": 2, + "reminder": 2, + "status": 0.75, + "review": 0.75, + "needed": 0.75, + "in": 2, + "lang-crystal": 2, + "breaking": 2, + "change": 2, + "phone": 2, + "refactor": 2, + "monologue": 2, + "reviewed-approved": 2, + "new": 0.75, + "best": 0.75, + "practice": 0.75, + "lecture": 2, + "backing": 2, + "browser": 2, + "aws": 2, + "polish": 2, + "nail": 2, + "care": 2, + "article": 2, + "peer-review": 2, + "writer-needed": 2, + "eventstorming": 2, + "freemasonry": 2, + "icons": 2, + "lean": 2, + "cannot": 2, + "reproduce": 2, + "paas": 2, + "net": 2, + "core": 2, + "wiretap": 2, + "unit-jest": 2, + "instruction": 2, + "infrastructure": 2, + "rgb": 2, + "ideas": 2, + "target": 2, + "windows": 2, + "call": 2, + "iconography": 2, + "promote": 2, + "template": 2, + "support": 2, + "first-timers-only": 2, + "java": 2, + "cdn": 2, + "dependency": 2, + "ready": 2, + "for": 2, + "deploy": 2, + "troubleshooting": 2, + "spec": 0.75, + "bigint": 2, + "async": 0.75, + "generators": 0.75, + "proposal": 2, + "e": 0.75, + "approachability": 2, + "investment": 2, + "conflicts": 2, + "optimisation": 2, + "kotlin": 2, + "release": 0.8, + "unconfirmed": 2, + "duplicate": 2, + "repeat": 2, + "devops": 2, + "defend": 2, + "blogging": 2, + "friendliness": 2, + "i": 2, + "n": 2, + "cla": 2, + "signed": 2, + "icebox": 2, + "meetup": 2, + "examination": 2, + "mobile": 2, + "device": 2, + "api": 2, + "decorators": 2, + "addon": 2, + "cracking": 2, + "sparkles": 2, + "enhancement": 0.75, + "hooks": 2, + "improved": 2, + "error": 2, + "handling": 2, + "needs": 0.8, + "repro": 2, + "upkeep": 2, + "reactis": 2, + "to": 0.8, + "be": 2, + "sample": 2, + "white": 2, + "check": 2, + "mark": 2, + "external": 2, + "hacktoberfest": 2, + "lang-dart": 2, + "framework": 2, + "icon": 2, + "grant": 2, + "needs-research": 2, + "cybersec": 2, + "biz": 2, + "internationalization": 2, + "utility-lib": 2, + "qa": 2, + "do": 2, + "not": 2, + "merge": 2, + "hacked": 2, + "how-to": 2, + "beginner-friendly": 2, + "trello": 2, + "os": 2, + "sound": 2, + "docs": 2, + "improvement": 2, + "heavy": 0.8333333333333334, + "plus": 0.8333333333333334, + "sign": 0.8333333333333334, + "request": 0.8333333333333334, + "glitch": 2, + "cx": 2, + "dependencies": 2, + "inquiry": 2, + "deno": 2, + "area": 2, + "crash": 2, + "camera": 2, + "wip": 2, + "configure": 2, + "dom": 2, + "programming": 2, + "font-face": 2, + "rgba": 2, + "wikipedia": 2, + "contributions": 2, + "tryout": 2, + "thought": 2, + "analysis": 2, + "contenu": 2, + "cli": 2, + "fund": 2, + "investigation": 2, + "basecamp": 2, + "literature": 2, + "fiscal": 2, + "user": 2, + "debug": 2, + "information": 2, + "frontend": 2, + "upstream": 2, + "raising": 2, + "hand": 2, + "style": 2, + "clean": 2, + "up": 2, + "motif": 2, + "event": 2, + "help": 2, + "wanted": 2, + "priority": 2, + "medium": 2, + "financial": 2, + "ruby": 2, + "es": 2, + "warrant": 2, + "cancelled": 2, + "plan": 2, + "hackathon": 2, + "beginner": 2, + "typography": 2, + "counsel": 2, + "recording": 2, + "crowdin": 2, + "eslint": 0.75, + "rules": 0.75, + "easy": 2, + "repare": 2, + "conference": 2, + "great": 2, + "insight": 2, + "phd": 2, + "orange": 2, + "invalid": 2, + "x": 2, + "changelog": 2, + "e-cypress": 2, + "lipstick": 2, + "-": 2, + "backdoor": 2, + "approved": 2, + "talk": 2, + "subtitle": 2, + "research": 2, + "todo": 2, + "spiral": 2, + "notepad": 2, + "interface": 2, + "critical": 2, + "privacy": 2, + "tests": 2, + "boom": 2, + "web": 2, + "app": 0.8, + "television": 2, + "uat": 2, + "backer": 2, + "exploit": 2, + "requires": 2, + "travis-yml": 2, + "node": 2, + "dev": 2, + "experience": 0.6666666666666667, + "fix": 2, + "backend": 2, + "cleaning": 2, + "internal": 0.8, + "house": 2, + "technical": 2, + "debt": 2, + "weekly-digest": 2, + "shallow": 2, + "renderer": 2, + "commerce": 2, + "ie": 2, + "hsl": 2, + "left": 2, + "out": 2, + "welcome": 2, + "opinions": 2, + "documents": 2, + "legacy": 2, + "grafana": 2, + "react": 2, + "native": 2, + "lang-go": 2, + "tutorial": 2, + "plugin": 2, + "logo": 2, + "refactoring": 2, + "safari": 2, + "saltstack": 2, + "available": 2, + "server": 2, + "rendering": 2, + "htmlfile": 2, + "theorem": 2, + "social": 2, + "internationalisation": 2, + "definition": 2, + "enquire": 2, + "packaging": 2, + "lang-r": 2, + "regression": 2, + "container": 2, + "opencollective": 2, + "report": 2, + "performance": 2, + "clickup": 2, + "statement": 2, + "gcp": 2, + "opinion": 2, + "accepted": 2, + "html": 2, + "a": 0.8, + "y": 2, + "general": 2, + "js": 2, + "unit": 2, + "speak": 2, + "brainstorming": 2, + "backup": 2, + "language": 2, + "bugfix": 2, + "k": 2, + "s": 2, + "scrum": 2, + "paper": 2, + "stale": 2, + "optimization": 2, + "show": 2, + "apple": 2, + "low": 2, + "functions": 2, + "gnu": 2, + "linux": 2, + "focus": 2, + "groups": 2, + "dependency-update": 2, + "related": 2, + "usability": 2, + "*nix": 2, + "externs": 2, + "critique": 2, + "prince": 2, + "demonstration": 2, + "⬆️": 2, + "memo": 2, + "revisitinfuture": 2, + "tips": 2, + "reference": 2, + "high": 2, + "bug-report": 2, + "unix": 2, + "npm": 2, + "site": 2, + "chore": 2, + "adapter": 2, + "slides": 2, + "query": 2, + "chat": 2, + "major": 2, + "alpha": 2, + "lock": 2, + "security": 2, + "newsletter": 2, + "verification": 2, + "color": 2, + "containerd": 2, + "doughnut": 2, + "sentry": 2, + "dissertation": 2, + "mentoring": 2, + "confer": 2, + "utilities": 2, + "infosec": 2, + "vulnerability": 2, + "has": 2, + "code": 2, + "teaching": 2, + "protection": 2, + "robot": 2, + "android": 2, + "webaim": 2, + "wontfix": 2, + "triage": 0.5, + "contribution": 2, + "macos": 2, + "assertion": 2, + "blog": 2, + "progress": 2, + "future": 2, + "architecture": 2, + "enhancements": 2, + "pmi": 2, + "promotion": 2, + "validation": 2, + "art": 2, + "film": 2, + "bitbucket": 2, + "cloud": 2, + "labour": 2, + "python": 2, + "suggestion": 2, + "crypto": 2, + "attitudinal": 2, + "trial": 2, + "example": 0.8, + "resolution": 2, + "redirect": 2, + "assessment": 2, + "monitor": 2, + "css": 2, + "hack": 2, + "translation": 2, + "opportunity": 2, + "vultr": 2, + "kubernetes": 2, + "wiki": 2, + "pwa": 2, + "iphone": 2, + "program": 2, + "finding": 2, + "digital": 2, + "ocean": 2, + "safeguard": 2, + "iac": 2, + "javascript": 2, + "integration": 2, + "glo": 2, + "porting": 2, + "on": 2, + "hold": 2, + "evaluation": 2, + "go": 0.8, + "must-triage": 2, + "gradle": 2, + "accessibility": 2, + "work": 2, + "other": 2, + "wrangling": 2, + "sast": 2, + "tech-debt": 2, + "entry": 2, + "fault": 2, + "problem": 2, + "brand": 2, + "internal-issue-created": 2, + "pmp": 2, + "bdd": 2, + "checkpoint": 2, + "csharp": 2, + "unreviewed": 2, + "idea": 2, + "feedback": 2, + "requested": 2, + "wcag": 2, + "bugs": 2, + "mentor": 2, + "economics": 2, + "lib": 2, + "puppet": 2, + "speech": 2, + "balloon": 2, + "figma": 22.78125, + "websocket": 10.125, + "c": 0.6666666666666667, + "c++": 0.6666666666666667, + "bulb": 0.75, + "prometheus": 0.5, + "rocket": 0.6666666666666667, + "discuss": 2, + "doc": 0.5, + "blogs": 2, + "unit-mocha": 2, + "enterprise": 2, + "scheduler": 2, + "class": 2, + "fields": 2, + "commercial": 2, + "infra": 2, + "terraform": 2, + "figure": 2, + "layout": 2, + "specification": 2, + "vector": 0.6666666666666667, + "greenkeeper": 2, + "tdd": 2, + "raster": 2, + "mishap": 2, + "sketch": 2, + "released": 2, + "font": 2, + "deployment": 0.6666666666666667, + "e-nightwatch": 0.75, + "engine": 2, + "vulns": 2, + "syntax": 2, + "deliverable": 2, + "manual": 2, + "osx": 2, + "axe": 2, + "sendgrid": 2, + "operating": 2, + "system": 2, + "advance": 0.75, + "workflow": 0.75, + "safety": 2, + "phonetic": 2, + "concept": 2, + "lerna": 2, + "readme": 2, + "music": 2, + "failing": 2, + "customer": 2, + "extension": 2, + "lint": 2, + "optimizing": 2, + "compiler": 2, + "css-select": 2, + "finance": 2, + "closed": 0.8, + "due": 0.8, + "inactivity": 0.8, + "jira": 2, + "survey": 2, + "behavioral": 2, + "multi": 2, + "module": 2, + "mixing": 2, + "backlog": 2, + "update": 2, + "present": 2, + "modules": 2, + "lang-julia": 2, + "vuln": 2, + "demo": 2, + "corporate": 2, + "spam": 2, + "handshakes": 2, + "platform": 2, + "wave": 2, + "ansible": 2, + "lang-convert": 2, + "gdpr": 2, + "classes": 2, + "speach": 2, + "b": 2, + "chef": 2, + "patreon": 2, + "reviewed-changes-requested": 2, + "youtube": 2, + "(legacy)": 2, + "mentorship": 2, + "typescript": 2, + "didactic": 2, + "story": 2, + "academia": 2 + }, + "negative_weights": { + "component": 0.3476142883300781, + "developer": 0.19775390625, + "tools": 0.052734375, + "bias": 3.5357293088341466, + "parser-specific": 0.015625, + "shell": 0.015625, + "socket": 0.140625, + "io": 0.140625, + "client": 0.253125, + "installer": 0.015625, + "library": 0.015625, + "bootstrap": 0.0625, + "feat": 0.5208333333333335, + "babel": 0.03703703703703705, + "flashsocket": 0.0625, + "electron": 0.0625, + "parser": 0.0625, + "inspiration": 5.0625, + "business": 2, + "process": 2, + "sustain": 2.25, + "confirmed": 2.25, + "type": 3.515625, + "question": 3.75, + "grey": 1.875, + "cmty": 2, + "need-info": 2.25, + "sustenance": 2.25, + "good": 1.875, + "first": 1.875, + "issue": 1.875, + "kind": 2, + "discussion": 2, + "palette": 2.25, + "azure": 2, + "ad": 2, + "data": 2, + "collection": 2, + "external-bugs": 2.25, + "deal": 2.25, + "hacking": 2.25, + "video": 2.25, + "test": 3.515625, + "utils": 3.515625, + "hsv": 2.25, + "thesis": 2.25, + "pentesting": 2.25, + "design": 2.25, + "website": 2, + "copy": 2, + "bug": 1, + "guide": 2.25, + "next": 2, + "meetup!": 2, + "ui": 4, + "mastering": 2.25, + "steps": 2.25, + "abandoned": 2.25, + "badges": 2.25, + "sponsor": 2.25, + "assess": 2.25, + "pr": 2, + "merged": 2, + "vlog": 2.25, + "acceptance": 2, + "testing": 2, + "hot": 1, + "tv": 1, + "soundtrack": 1, + "(category)": 1, + "ci": 2, + "cd": 2, + "multi-cloud": 1, + "funding": 2, + "finder": 2, + "difficulty": 2, + "hard": 2, + "documentation": 2, + "book": 2, + "diary": 1, + "standard": 1, + "colour": 1, + "computer": 1, + "desktop": 1, + "flaw": 1, + "reliability": 1, + "cli-service": 1.875, + "build": 1.875, + "blocked": 1, + "maintenance": 1, + "construction": 1, + "ios": 1, + "planned": 1, + "feature": 1.75, + "feature-request": 1, + "rfc": 1, + "image": 2, + "stock": 1, + "reminder": 1, + "status": 1.875, + "review": 1.875, + "needed": 1.875, + "in": 1, + "lang-crystal": 1, + "breaking": 1, + "change": 1, + "phone": 1, + "refactor": 1, + "monologue": 1, + "reviewed-approved": 1, + "new": 1.875, + "best": 1.875, + "practice": 1.875, + "lecture": 1, + "backing": 1, + "browser": 1, + "aws": 1, + "polish": 1, + "nail": 1, + "care": 1, + "article": 1, + "peer-review": 1, + "writer-needed": 1, + "eventstorming": 1, + "freemasonry": 1, + "icons": 1, + "lean": 1, + "cannot": 1, + "reproduce": 1, + "paas": 1, + "net": 1, + "core": 1, + "wiretap": 1, + "unit-jest": 1, + "instruction": 1, + "infrastructure": 1, + "rgb": 1, + "ideas": 1, + "target": 1, + "windows": 1, + "call": 1, + "iconography": 1, + "promote": 1, + "template": 1, + "support": 1, + "first-timers-only": 1, + "java": 1, + "cdn": 1, + "dependency": 1, + "ready": 1, + "for": 1, + "deploy": 1, + "troubleshooting": 1, + "spec": 1.875, + "bigint": 1, + "async": 1.875, + "generators": 1.875, + "proposal": 1, + "e": 1.875, + "approachability": 1, + "investment": 1, + "conflicts": 1, + "optimisation": 1, + "kotlin": 1, + "release": 1.7999999999999998, + "unconfirmed": 1, + "duplicate": 1, + "repeat": 1, + "devops": 1, + "defend": 1, + "blogging": 1, + "friendliness": 1, + "i": 1, + "n": 1, + "cla": 1, + "signed": 1, + "icebox": 1, + "meetup": 1, + "examination": 1, + "mobile": 1, + "device": 1, + "api": 1, + "decorators": 1, + "addon": 1, + "cracking": 1, + "sparkles": 1, + "enhancement": 1.875, + "hooks": 1, + "improved": 1, + "error": 1, + "handling": 1, + "needs": 1.7999999999999998, + "repro": 1, + "upkeep": 1, + "reactis": 1, + "to": 1.7999999999999998, + "be": 1, + "sample": 1, + "white": 1, + "check": 1, + "mark": 1, + "external": 1, + "hacktoberfest": 1, + "lang-dart": 1, + "framework": 1, + "icon": 1, + "grant": 1, + "needs-research": 1, + "cybersec": 1, + "biz": 1, + "internationalization": 1, + "utility-lib": 1, + "qa": 1, + "do": 1, + "not": 1, + "merge": 1, + "hacked": 1, + "how-to": 1, + "beginner-friendly": 1, + "trello": 1, + "os": 1, + "sound": 1, + "docs": 1, + "improvement": 1, + "heavy": 1.75, + "plus": 1.75, + "sign": 1.75, + "request": 1.75, + "glitch": 1, + "cx": 1, + "dependencies": 1, + "inquiry": 1, + "deno": 1, + "area": 1, + "crash": 1, + "camera": 1, + "wip": 1, + "configure": 1, + "dom": 1, + "programming": 1, + "font-face": 1, + "rgba": 1, + "wikipedia": 1, + "contributions": 1, + "tryout": 1, + "thought": 1, + "analysis": 1, + "contenu": 1, + "cli": 1, + "fund": 1, + "investigation": 1, + "basecamp": 1, + "literature": 1, + "fiscal": 1, + "user": 1, + "debug": 1, + "information": 1, + "frontend": 1, + "upstream": 1, + "raising": 1, + "hand": 1, + "style": 1, + "clean": 1, + "up": 1, + "motif": 1, + "event": 1, + "help": 1, + "wanted": 1, + "priority": 1, + "medium": 1, + "financial": 1, + "ruby": 1, + "es": 1, + "warrant": 1, + "cancelled": 1, + "plan": 1, + "hackathon": 1, + "beginner": 1, + "typography": 1, + "counsel": 1, + "recording": 1, + "crowdin": 1, + "eslint": 1.875, + "rules": 1.875, + "easy": 1, + "repare": 1, + "conference": 1, + "great": 1, + "insight": 1, + "phd": 1, + "orange": 1, + "invalid": 1, + "x": 1, + "changelog": 1, + "e-cypress": 1, + "lipstick": 1, + "-": 1, + "backdoor": 1, + "approved": 1, + "talk": 1, + "subtitle": 1, + "research": 1, + "todo": 1, + "spiral": 1, + "notepad": 1, + "interface": 1, + "critical": 1, + "privacy": 1, + "tests": 1, + "boom": 1, + "web": 1, + "app": 1.7999999999999998, + "television": 1, + "uat": 1, + "backer": 1, + "exploit": 1, + "requires": 1, + "travis-yml": 1, + "node": 1, + "dev": 1, + "experience": 2, + "fix": 1, + "backend": 1, + "cleaning": 1, + "internal": 1.7999999999999998, + "house": 1, + "technical": 1, + "debt": 1, + "weekly-digest": 1, + "shallow": 1, + "renderer": 1, + "commerce": 1, + "ie": 1, + "hsl": 1, + "left": 1, + "out": 1, + "welcome": 1, + "opinions": 1, + "documents": 1, + "legacy": 1, + "grafana": 1, + "react": 1, + "native": 1, + "lang-go": 1, + "tutorial": 1, + "plugin": 1, + "logo": 1, + "refactoring": 1, + "safari": 1, + "saltstack": 1, + "available": 1, + "server": 1, + "rendering": 1, + "htmlfile": 1, + "theorem": 1, + "social": 1, + "internationalisation": 1, + "definition": 1, + "enquire": 1, + "packaging": 1, + "lang-r": 1, + "regression": 1, + "container": 1, + "opencollective": 1, + "report": 1, + "performance": 1, + "clickup": 1, + "statement": 1, + "gcp": 1, + "opinion": 1, + "accepted": 1, + "html": 1, + "a": 1.7999999999999998, + "y": 1, + "general": 1, + "js": 1, + "unit": 1, + "speak": 1, + "brainstorming": 1, + "backup": 1, + "language": 1, + "bugfix": 1, + "k": 1, + "s": 1, + "scrum": 1, + "paper": 1, + "stale": 1, + "optimization": 1, + "show": 1, + "apple": 1, + "low": 1, + "functions": 1, + "gnu": 1, + "linux": 1, + "focus": 1, + "groups": 1, + "dependency-update": 1, + "related": 1, + "usability": 1, + "*nix": 1, + "externs": 1, + "critique": 1, + "prince": 1, + "demonstration": 1, + "⬆️": 1, + "memo": 1, + "revisitinfuture": 1, + "tips": 1, + "reference": 1, + "high": 1, + "bug-report": 1, + "unix": 1, + "npm": 1, + "site": 1, + "chore": 1, + "adapter": 1, + "slides": 1, + "query": 1, + "chat": 1, + "major": 1, + "alpha": 1, + "lock": 1, + "security": 1, + "newsletter": 1, + "verification": 1, + "color": 1, + "containerd": 1, + "doughnut": 1, + "sentry": 1, + "dissertation": 1, + "mentoring": 1, + "confer": 1, + "utilities": 1, + "infosec": 1, + "vulnerability": 1, + "has": 1, + "code": 1, + "teaching": 1, + "protection": 1, + "robot": 1, + "android": 1, + "webaim": 1, + "wontfix": 1, + "triage": 2.25, + "contribution": 1, + "macos": 1, + "assertion": 1, + "blog": 1, + "progress": 1, + "future": 1, + "architecture": 1, + "enhancements": 1, + "pmi": 1, + "promotion": 1, + "validation": 1, + "art": 1, + "film": 1, + "bitbucket": 1, + "cloud": 1, + "labour": 1, + "python": 1, + "suggestion": 1, + "crypto": 1, + "attitudinal": 1, + "trial": 1, + "example": 1.7999999999999998, + "resolution": 1, + "redirect": 1, + "assessment": 1, + "monitor": 1, + "css": 1, + "hack": 1, + "translation": 1, + "opportunity": 1, + "vultr": 1, + "kubernetes": 1, + "wiki": 1, + "pwa": 1, + "iphone": 1, + "program": 1, + "finding": 1, + "digital": 1, + "ocean": 1, + "safeguard": 1, + "iac": 1, + "javascript": 1, + "integration": 1, + "glo": 1, + "porting": 1, + "on": 1, + "hold": 1, + "evaluation": 1, + "go": 1.7999999999999998, + "must-triage": 1, + "gradle": 1, + "accessibility": 1, + "work": 1, + "other": 1, + "wrangling": 1, + "sast": 1, + "tech-debt": 1, + "entry": 1, + "fault": 1, + "problem": 1, + "brand": 1, + "internal-issue-created": 1, + "pmp": 1, + "bdd": 1, + "checkpoint": 1, + "csharp": 1, + "unreviewed": 1, + "idea": 1, + "feedback": 1, + "requested": 1, + "wcag": 1, + "bugs": 1, + "mentor": 1, + "economics": 1, + "lib": 1, + "puppet": 1, + "speech": 1, + "balloon": 1, + "figma": 0.015625, + "websocket": 0.0625, + "c": 2, + "c++": 2, + "bulb": 1.875, + "prometheus": 2.25, + "rocket": 2, + "discuss": 1, + "doc": 2.25, + "blogs": 1, + "unit-mocha": 1, + "enterprise": 1, + "scheduler": 1, + "class": 1, + "fields": 1, + "commercial": 1, + "infra": 1, + "terraform": 1, + "figure": 1, + "layout": 1, + "specification": 1, + "vector": 2, + "greenkeeper": 1, + "tdd": 1, + "raster": 1, + "mishap": 1, + "sketch": 1, + "released": 1, + "font": 1, + "deployment": 2, + "e-nightwatch": 1.875, + "engine": 1, + "vulns": 1, + "syntax": 1, + "deliverable": 1, + "manual": 1, + "osx": 1, + "axe": 1, + "sendgrid": 1, + "operating": 1, + "system": 1, + "advance": 1.875, + "workflow": 1.875, + "safety": 1, + "phonetic": 1, + "concept": 1, + "lerna": 1, + "readme": 1, + "music": 1, + "failing": 1, + "customer": 1, + "extension": 1, + "lint": 1, + "optimizing": 1, + "compiler": 1, + "css-select": 1, + "finance": 1, + "closed": 1.7999999999999998, + "due": 1.7999999999999998, + "inactivity": 1.7999999999999998, + "jira": 1, + "survey": 1, + "behavioral": 1, + "multi": 1, + "module": 1, + "mixing": 1, + "backlog": 1, + "update": 1, + "present": 1, + "modules": 1, + "lang-julia": 1, + "vuln": 1, + "demo": 1, + "corporate": 1, + "spam": 1, + "handshakes": 1, + "platform": 1, + "wave": 1, + "ansible": 1, + "lang-convert": 1, + "gdpr": 1, + "classes": 1, + "speach": 1, + "b": 1, + "chef": 1, + "patreon": 1, + "reviewed-changes-requested": 1, + "youtube": 1, + "(legacy)": 1, + "mentorship": 1, + "typescript": 1, + "didactic": 1, + "story": 1, + "academia": 1 + }, + "positive_weights_sum": {}, + "negative_weights_sum": {} + }, + "ideas": { + "positive_weights": { + "inspiration": 22.78125, + "bias": 2.0027526264382748e-50, + "kind": 3.160493827160495, + "discussion": 32, + "hot": 4, + "planned": 6.4, + "feature": 28, + "feature-request": 32, + "rfc": 22.78125, + "new": 3.8159521867690485, + "best": 13.18359375, + "practice": 13.18359375, + "eventstorming": 22.78125, + "ideas": 22.78125, + "pr": 0.21364447827107594, + "dependency": 11.394372174457375, + "proposal": 13.18359375, + "heavy": 3.5, + "plus": 3.5, + "sign": 3.5, + "request": 28.672000000000004, + "cmty": 0.6666666666666667, + "thought": 10.125, + "plan": 10.125, + "great": 8, + "insight": 8, + "opinions": 16, + "needed": 2, + "theorem": 10.125, + "api": 4.394531250000001, + "statement": 10.125, + "opinion": 10.125, + "brainstorming": 10.125, + "revisitinfuture": 10.125, + "tips": 10.125, + "chat": 16, + "(category)": 5.333333333333334, + "future": 7.03125, + "architecture": 3.75, + "enhancements": 7.03125, + "suggestion": 10.125, + "crypto": 3.75, + "definition": 0.00048170916432868426, + "other": 2, + "language": 2, + "integration": 2, + "idea": 20.25, + "component": 0.09375000000000001, + "developer": 0.28125, + "tools": 0.28125, + "business": 0.22222222222222227, + "process": 0.22222222222222227, + "sustain": 0.5, + "confirmed": 0.5, + "type": 0.48108459636569, + "question": 0.010416666666666668, + "grey": 0.75, + "need-info": 0.5, + "sustenance": 0.5, + "good": 0.75, + "first": 0.75, + "issue": 0.75, + "palette": 0.5, + "azure": 0.6666666666666667, + "ad": 0.6666666666666667, + "data": 0.6666666666666667, + "collection": 0.6666666666666667, + "external-bugs": 0.5, + "deal": 0.5, + "hacking": 0.5, + "video": 0.5, + "test": 0.2666666666666667, + "utils": 2, + "hsv": 0.5, + "thesis": 0.5, + "pentesting": 0.5, + "design": 0.16666666666666669, + "website": 0.6666666666666667, + "copy": 0.6666666666666667, + "bug": 0.22222222222222227, + "guide": 0.5, + "next": 0.2666666666666667, + "meetup!": 0.6666666666666667, + "feat": 0.25, + "ui": 0.6666666666666667, + "mastering": 0.5, + "steps": 0.5, + "abandoned": 0.5, + "badges": 0.5, + "sponsor": 0.5, + "assess": 0.5, + "merged": 0.6666666666666667, + "vlog": 0.5, + "acceptance": 0.6666666666666667, + "testing": 0.6666666666666667, + "tv": 0.5, + "soundtrack": 0.5, + "ci": 0.6666666666666667, + "cd": 0.6666666666666667, + "multi-cloud": 0.5, + "funding": 0.6666666666666667, + "finder": 0.6666666666666667, + "difficulty": 0.6666666666666667, + "hard": 0.6666666666666667, + "documentation": 0.6666666666666667, + "book": 0.6666666666666667, + "diary": 0.5, + "standard": 0.5, + "colour": 0.5, + "computer": 0.6666666666666667, + "desktop": 0.6666666666666667, + "flaw": 0.5, + "reliability": 0.5, + "cli-service": 0.75, + "build": 0.75, + "blocked": 0.5, + "maintenance": 0.75, + "construction": 0.75, + "ios": 0.5, + "image": 0.5, + "stock": 0.5, + "reminder": 0.5, + "status": 0.01920000000000001, + "review": 0.048000000000000015, + "in": 2, + "lang-crystal": 0.5, + "breaking": 0.75, + "change": 0.75, + "phone": 0.5, + "refactor": 0.5, + "monologue": 0.5, + "reviewed-approved": 0.6666666666666667, + "lecture": 0.5, + "backing": 0.5, + "browser": 2, + "aws": 0.5, + "polish": 0.8, + "nail": 0.8, + "care": 0.8, + "article": 0.5, + "peer-review": 0.5, + "writer-needed": 0.5, + "freemasonry": 0.6666666666666667, + "icons": 0.6666666666666667, + "lean": 0.5, + "cannot": 0.6666666666666667, + "reproduce": 0.6666666666666667, + "paas": 0.5, + "net": 0.6666666666666667, + "core": 0.6666666666666667, + "wiretap": 0.5, + "unit-jest": 2, + "instruction": 0.5, + "infrastructure": 0.5, + "rgb": 0.5, + "target": 0.6666666666666667, + "windows": 0.6666666666666667, + "call": 2, + "iconography": 0.5, + "promote": 0.5, + "template": 0.5, + "support": 0.75, + "first-timers-only": 0.5, + "java": 0.5, + "cdn": 0.5, + "ready": 0.8, + "for": 0.32000000000000006, + "deploy": 0.8, + "troubleshooting": 0.5, + "spec": 0.75, + "bigint": 2, + "async": 0.75, + "generators": 0.75, + "e": 2, + "approachability": 2, + "investment": 2, + "conflicts": 2, + "optimisation": 2, + "kotlin": 2, + "release": 0.8, + "unconfirmed": 2, + "duplicate": 0.75, + "repeat": 0.75, + "devops": 0.6666666666666667, + "defend": 0.6666666666666667, + "blogging": 2, + "friendliness": 2, + "i": 0.6666666666666667, + "n": 0.6666666666666667, + "cla": 2, + "signed": 2, + "icebox": 2, + "meetup": 2, + "examination": 2, + "mobile": 0.75, + "device": 0.75, + "decorators": 2, + "addon": 2, + "cracking": 2, + "sparkles": 0.6666666666666667, + "enhancement": 1.158714294433594, + "hooks": 2, + "improved": 0.75, + "error": 0.75, + "handling": 0.75, + "needs": 0.8, + "repro": 2, + "upkeep": 2, + "reactis": 2, + "to": 0.8, + "be": 2, + "sample": 2, + "white": 2, + "check": 2, + "mark": 2, + "external": 2, + "hacktoberfest": 2, + "lang-dart": 2, + "framework": 2, + "icon": 2, + "grant": 2, + "needs-research": 2, + "cybersec": 2, + "biz": 2, + "internationalization": 2, + "utility-lib": 2, + "qa": 2, + "do": 0.75, + "not": 0.75, + "merge": 0.75, + "hacked": 2, + "how-to": 2, + "beginner-friendly": 2, + "trello": 2, + "os": 2, + "sound": 2, + "docs": 0.75, + "improvement": 2, + "glitch": 2, + "cx": 2, + "dependencies": 2, + "inquiry": 2, + "deno": 2, + "area": 2, + "crash": 2, + "camera": 2, + "wip": 0.6666666666666667, + "configure": 2, + "dom": 2, + "programming": 2, + "font-face": 2, + "rgba": 2, + "parser-specific": 2, + "wikipedia": 2, + "shell": 2, + "contributions": 2, + "tryout": 2, + "analysis": 2, + "contenu": 2, + "cli": 2, + "fund": 2, + "investigation": 2, + "basecamp": 2, + "literature": 2, + "socket": 0.75, + "io": 0.75, + "client": 0.75, + "fiscal": 2, + "user": 2, + "debug": 2, + "information": 2, + "frontend": 2, + "upstream": 2, + "raising": 2, + "hand": 2, + "style": 2, + "clean": 2, + "up": 2, + "motif": 2, + "event": 0.6666666666666667, + "help": 0.6666666666666667, + "wanted": 0.6666666666666667, + "priority": 2, + "medium": 2, + "financial": 2, + "ruby": 2, + "es": 2, + "warrant": 2, + "cancelled": 2, + "hackathon": 2, + "beginner": 2, + "typography": 2, + "counsel": 2, + "recording": 2, + "crowdin": 2, + "eslint": 2, + "rules": 2, + "easy": 2, + "repare": 2, + "conference": 2, + "phd": 2, + "orange": 2, + "invalid": 2, + "x": 2, + "changelog": 2, + "e-cypress": 2, + "lipstick": 2, + "-": 0.6666666666666667, + "backdoor": 2, + "approved": 2, + "talk": 2, + "subtitle": 2, + "research": 2, + "todo": 0.75, + "spiral": 0.75, + "notepad": 0.75, + "interface": 2, + "critical": 2, + "privacy": 2, + "tests": 2, + "boom": 0.75, + "web": 2, + "app": 2, + "television": 2, + "uat": 2, + "backer": 2, + "exploit": 2, + "requires": 2, + "travis-yml": 2, + "node": 2, + "dev": 2, + "experience": 0.6666666666666667, + "fix": 2, + "backend": 2, + "cleaning": 2, + "internal": 0.6666666666666667, + "house": 2, + "technical": 2, + "debt": 2, + "weekly-digest": 2, + "shallow": 2, + "renderer": 2, + "commerce": 2, + "ie": 0.5, + "hsl": 2, + "left": 2, + "out": 2, + "welcome": 2, + "documents": 2, + "legacy": 2, + "grafana": 2, + "react": 2, + "native": 2, + "lang-go": 2, + "tutorial": 2, + "plugin": 2, + "logo": 2, + "refactoring": 2, + "safari": 2, + "saltstack": 2, + "available": 2, + "server": 2, + "rendering": 2, + "htmlfile": 2, + "social": 2, + "internationalisation": 2, + "enquire": 2, + "packaging": 2, + "lang-r": 2, + "regression": 0.75, + "container": 2, + "opencollective": 2, + "report": 2, + "performance": 2, + "clickup": 2, + "installer": 2, + "gcp": 2, + "accepted": 2, + "html": 2, + "a": 0.8, + "y": 2, + "general": 2, + "js": 2, + "unit": 2, + "speak": 2, + "backup": 2, + "bugfix": 2, + "k": 2, + "s": 2, + "scrum": 2, + "paper": 2, + "library": 2, + "stale": 2, + "optimization": 2, + "show": 2, + "apple": 2, + "low": 2, + "functions": 2, + "gnu": 2, + "linux": 2, + "focus": 2, + "groups": 2, + "dependency-update": 2, + "related": 0.024691358024691367, + "bootstrap": 2, + "usability": 2, + "*nix": 2, + "externs": 2, + "critique": 2, + "prince": 2, + "demonstration": 2, + "⬆️": 0.03955078125, + "memo": 0.75, + "reference": 2, + "high": 2, + "bug-report": 2, + "babel": 2, + "flashsocket": 2, + "unix": 2, + "npm": 2, + "site": 2, + "chore": 2, + "adapter": 2, + "slides": 2, + "query": 2, + "major": 2, + "alpha": 2, + "lock": 2, + "security": 0.6666666666666667, + "newsletter": 2, + "verification": 2, + "color": 2, + "containerd": 2, + "doughnut": 2, + "sentry": 2, + "dissertation": 2, + "mentoring": 2, + "confer": 2, + "utilities": 2, + "infosec": 2, + "vulnerability": 2, + "has": 2, + "code": 0.12800000000000003, + "teaching": 2, + "protection": 2, + "robot": 2, + "android": 2, + "webaim": 2, + "wontfix": 2, + "triage": 0.5, + "contribution": 2, + "macos": 2, + "assertion": 2, + "blog": 2, + "progress": 2, + "pmi": 2, + "promotion": 2, + "validation": 2, + "art": 2, + "film": 2, + "bitbucket": 2, + "cloud": 2, + "labour": 2, + "python": 2, + "attitudinal": 2, + "electron": 2, + "trial": 2, + "example": 2, + "resolution": 2, + "redirect": 2, + "assessment": 2, + "monitor": 2, + "css": 2, + "hack": 2, + "translation": 2, + "opportunity": 2, + "vultr": 2, + "kubernetes": 2, + "wiki": 2, + "parser": 2, + "pwa": 2, + "iphone": 2, + "program": 2, + "finding": 2, + "digital": 2, + "ocean": 2, + "safeguard": 2, + "iac": 2, + "javascript": 2, + "glo": 2, + "porting": 2, + "on": 0.6666666666666667, + "hold": 0.6666666666666667, + "evaluation": 2, + "go": 2, + "must-triage": 2, + "gradle": 2, + "accessibility": 2, + "work": 2, + "wrangling": 2, + "sast": 2, + "tech-debt": 2, + "entry": 2, + "fault": 2, + "problem": 2, + "brand": 2, + "internal-issue-created": 2, + "pmp": 2, + "bdd": 2, + "checkpoint": 2, + "csharp": 2, + "unreviewed": 2, + "feedback": 2, + "requested": 2, + "wcag": 2, + "bugs": 2, + "mentor": 2, + "economics": 2, + "lib": 2, + "puppet": 2, + "speech": 7.873199999999997, + "balloon": 7.873199999999997, + "bulb": 24.71923828125, + "rocket": 0.6666666666666667, + "discuss": 20.99519999999999, + "syntax": 2, + "concept": 22.78125, + "c": 0.6666666666666667, + "c++": 0.6666666666666667, + "prometheus": 0.5, + "doc": 0.5, + "blogs": 0.5, + "unit-mocha": 2, + "enterprise": 2, + "scheduler": 2, + "class": 2, + "fields": 2, + "commercial": 2, + "infra": 2, + "terraform": 2, + "figure": 2, + "layout": 2, + "specification": 2, + "vector": 2, + "greenkeeper": 2, + "tdd": 2, + "raster": 2, + "mishap": 2, + "sketch": 2, + "released": 2, + "font": 2, + "deployment": 0.6666666666666667, + "e-nightwatch": 2, + "engine": 0.6666666666666667, + "vulns": 0.6666666666666667, + "deliverable": 2, + "manual": 2, + "osx": 2, + "axe": 2, + "sendgrid": 0.28125, + "operating": 0.6666666666666667, + "system": 0.6666666666666667, + "advance": 2, + "workflow": 2, + "safety": 2, + "phonetic": 2, + "lerna": 2, + "readme": 2, + "music": 2, + "failing": 0.8, + "customer": 0.6666666666666667, + "extension": 2, + "lint": 2, + "optimizing": 2, + "compiler": 2, + "css-select": 2, + "figma": 2, + "finance": 2, + "closed": 0.8, + "due": 0.8, + "inactivity": 0.8, + "jira": 2, + "survey": 2, + "behavioral": 2, + "multi": 0.6666666666666667, + "module": 0.6666666666666667, + "mixing": 2, + "backlog": 0.6666666666666667, + "update": 2, + "present": 2, + "modules": 2, + "lang-julia": 2, + "vuln": 2, + "demo": 2, + "corporate": 0.6666666666666667, + "spam": 2, + "handshakes": 2, + "platform": 2, + "wave": 2, + "ansible": 2, + "lang-convert": 2, + "gdpr": 2, + "classes": 2, + "websocket": 2, + "speach": 2, + "b": 2, + "chef": 2, + "patreon": 2, + "reviewed-changes-requested": 0.6666666666666667, + "youtube": 2, + "(legacy)": 2, + "mentorship": 2, + "typescript": 2, + "didactic": 2, + "story": 2, + "academia": 2 + }, + "negative_weights": { + "inspiration": 0.015625, + "bias": 4.343672558656374, + "kind": 0.007315957933241889, + "discussion": 0.012345679012345684, + "hot": 0.33333333333333337, + "planned": 0.06666666666666668, + "feature": 0.015432098765432101, + "feature-request": 0.012345679012345684, + "rfc": 0.015625, + "new": 0.0000017419987457523156, + "best": 0.052734375, + "practice": 0.052734375, + "eventstorming": 0.015625, + "ideas": 0.015625, + "pr": 0.0003827633962834678, + "dependency": 0.000030243033780422146, + "proposal": 0.052734375, + "heavy": 0.41666666666666663, + "plus": 0.41666666666666663, + "sign": 0.41666666666666663, + "request": 0.0011111111111111113, + "cmty": 2, + "thought": 0.0625, + "plan": 0.0625, + "great": 0.11111111111111113, + "insight": 0.11111111111111113, + "opinions": 0.03703703703703705, + "needed": 0.13888888888888895, + "theorem": 0.0625, + "api": 0.10546875, + "statement": 0.0625, + "opinion": 0.0625, + "brainstorming": 0.0625, + "revisitinfuture": 0.0625, + "tips": 0.0625, + "chat": 0.03703703703703705, + "(category)": 0.0740740740740741, + "future": 0.140625, + "architecture": 0.375, + "enhancements": 0.140625, + "suggestion": 0.0625, + "crypto": 0.375, + "definition": 1.8728852309099235, + "other": 1, + "language": 1, + "integration": 1, + "idea": 0.020833333333333336, + "component": 7.03125, + "developer": 3.515625, + "tools": 3.515625, + "business": 4, + "process": 4, + "sustain": 2.25, + "confirmed": 2.25, + "type": 0.014664977788925178, + "question": 28.125, + "grey": 1.875, + "need-info": 2.25, + "sustenance": 2.25, + "good": 1.875, + "first": 1.875, + "issue": 1.875, + "palette": 2.25, + "azure": 2, + "ad": 2, + "data": 2, + "collection": 2, + "external-bugs": 2.25, + "deal": 2.25, + "hacking": 2.25, + "video": 2.25, + "test": 3.5999999999999996, + "utils": 1, + "hsv": 2.25, + "thesis": 2.25, + "pentesting": 2.25, + "design": 4.5, + "website": 2, + "copy": 2, + "bug": 4, + "guide": 2.25, + "next": 3.5999999999999996, + "meetup!": 2, + "feat": 3.75, + "ui": 2, + "mastering": 2.25, + "steps": 2.25, + "abandoned": 2.25, + "badges": 2.25, + "sponsor": 2.25, + "assess": 2.25, + "merged": 2, + "vlog": 2.25, + "acceptance": 2, + "testing": 2, + "tv": 2.25, + "soundtrack": 2.25, + "ci": 2, + "cd": 2, + "multi-cloud": 2.25, + "funding": 2, + "finder": 2, + "difficulty": 2, + "hard": 2, + "documentation": 2, + "book": 2, + "diary": 2.25, + "standard": 2.25, + "colour": 2.25, + "computer": 2, + "desktop": 2, + "flaw": 2.25, + "reliability": 2.25, + "cli-service": 1.875, + "build": 1.875, + "blocked": 2.25, + "maintenance": 1.875, + "construction": 1.875, + "ios": 2.25, + "image": 2.25, + "stock": 2.25, + "reminder": 2.25, + "status": 19.68299999999999, + "review": 10.934999999999995, + "in": 1, + "lang-crystal": 2.25, + "breaking": 1.875, + "change": 1.875, + "phone": 2.25, + "refactor": 2.25, + "monologue": 2.25, + "reviewed-approved": 2, + "lecture": 2.25, + "backing": 2.25, + "browser": 1, + "aws": 2.25, + "polish": 1.7999999999999998, + "nail": 1.7999999999999998, + "care": 1.7999999999999998, + "article": 2.25, + "peer-review": 2.25, + "writer-needed": 2.25, + "freemasonry": 2, + "icons": 2, + "lean": 2.25, + "cannot": 2, + "reproduce": 2, + "paas": 2.25, + "net": 2, + "core": 2, + "wiretap": 2.25, + "unit-jest": 1, + "instruction": 2.25, + "infrastructure": 2.25, + "rgb": 2.25, + "target": 2, + "windows": 2, + "call": 1, + "iconography": 2.25, + "promote": 2.25, + "template": 2.25, + "support": 1.875, + "first-timers-only": 2.25, + "java": 2.25, + "cdn": 2.25, + "ready": 1.7999999999999998, + "for": 3.2399999999999993, + "deploy": 1.7999999999999998, + "troubleshooting": 2.25, + "spec": 1.875, + "bigint": 1, + "async": 1.875, + "generators": 1.875, + "e": 1, + "approachability": 1, + "investment": 1, + "conflicts": 1, + "optimisation": 1, + "kotlin": 1, + "release": 1.7999999999999998, + "unconfirmed": 1, + "duplicate": 1.875, + "repeat": 1.875, + "devops": 2, + "defend": 2, + "blogging": 1, + "friendliness": 1, + "i": 2, + "n": 2, + "cla": 1, + "signed": 1, + "icebox": 1, + "meetup": 1, + "examination": 1, + "mobile": 1.875, + "device": 1.875, + "decorators": 1, + "addon": 1, + "cracking": 1, + "sparkles": 2, + "enhancement": 0.13904571533203125, + "hooks": 1, + "improved": 1.875, + "error": 1.875, + "handling": 1.875, + "needs": 1.7999999999999998, + "repro": 1, + "upkeep": 1, + "reactis": 1, + "to": 1.7999999999999998, + "be": 1, + "sample": 1, + "white": 1, + "check": 1, + "mark": 1, + "external": 1, + "hacktoberfest": 1, + "lang-dart": 1, + "framework": 1, + "icon": 1, + "grant": 1, + "needs-research": 1, + "cybersec": 1, + "biz": 1, + "internationalization": 1, + "utility-lib": 1, + "qa": 1, + "do": 1.875, + "not": 1.875, + "merge": 1.875, + "hacked": 1, + "how-to": 1, + "beginner-friendly": 1, + "trello": 1, + "os": 1, + "sound": 1, + "docs": 1.875, + "improvement": 1, + "glitch": 1, + "cx": 1, + "dependencies": 1, + "inquiry": 1, + "deno": 1, + "area": 1, + "crash": 1, + "camera": 1, + "wip": 2, + "configure": 1, + "dom": 1, + "programming": 1, + "font-face": 1, + "rgba": 1, + "parser-specific": 1, + "wikipedia": 1, + "shell": 1, + "contributions": 1, + "tryout": 1, + "analysis": 1, + "contenu": 1, + "cli": 1, + "fund": 1, + "investigation": 1, + "basecamp": 1, + "literature": 1, + "socket": 1.875, + "io": 1.875, + "client": 1.875, + "fiscal": 1, + "user": 1, + "debug": 1, + "information": 1, + "frontend": 1, + "upstream": 1, + "raising": 1, + "hand": 1, + "style": 1, + "clean": 1, + "up": 1, + "motif": 1, + "event": 2, + "help": 2, + "wanted": 2, + "priority": 1, + "medium": 1, + "financial": 1, + "ruby": 1, + "es": 1, + "warrant": 1, + "cancelled": 1, + "hackathon": 1, + "beginner": 1, + "typography": 1, + "counsel": 1, + "recording": 1, + "crowdin": 1, + "eslint": 1, + "rules": 1, + "easy": 1, + "repare": 1, + "conference": 1, + "phd": 1, + "orange": 1, + "invalid": 1, + "x": 1, + "changelog": 1, + "e-cypress": 1, + "lipstick": 1, + "-": 2, + "backdoor": 1, + "approved": 1, + "talk": 1, + "subtitle": 1, + "research": 1, + "todo": 1.875, + "spiral": 1.875, + "notepad": 1.875, + "interface": 1, + "critical": 1, + "privacy": 1, + "tests": 1, + "boom": 1.875, + "web": 1, + "app": 1, + "television": 1, + "uat": 1, + "backer": 1, + "exploit": 1, + "requires": 1, + "travis-yml": 1, + "node": 1, + "dev": 1, + "experience": 2, + "fix": 1, + "backend": 1, + "cleaning": 1, + "internal": 2, + "house": 1, + "technical": 1, + "debt": 1, + "weekly-digest": 1, + "shallow": 1, + "renderer": 1, + "commerce": 1, + "ie": 2.25, + "hsl": 1, + "left": 1, + "out": 1, + "welcome": 1, + "documents": 1, + "legacy": 1, + "grafana": 1, + "react": 1, + "native": 1, + "lang-go": 1, + "tutorial": 1, + "plugin": 1, + "logo": 1, + "refactoring": 1, + "safari": 1, + "saltstack": 1, + "available": 1, + "server": 1, + "rendering": 1, + "htmlfile": 1, + "social": 1, + "internationalisation": 1, + "enquire": 1, + "packaging": 1, + "lang-r": 1, + "regression": 1.875, + "container": 1, + "opencollective": 1, + "report": 1, + "performance": 1, + "clickup": 1, + "installer": 1, + "gcp": 1, + "accepted": 1, + "html": 1, + "a": 1.7999999999999998, + "y": 1, + "general": 1, + "js": 1, + "unit": 1, + "speak": 1, + "backup": 1, + "bugfix": 1, + "k": 1, + "s": 1, + "scrum": 1, + "paper": 1, + "library": 1, + "stale": 1, + "optimization": 1, + "show": 1, + "apple": 1, + "low": 1, + "functions": 1, + "gnu": 1, + "linux": 1, + "focus": 1, + "groups": 1, + "dependency-update": 1, + "related": 16, + "bootstrap": 1, + "usability": 1, + "*nix": 1, + "externs": 1, + "critique": 1, + "prince": 1, + "demonstration": 1, + "⬆️": 12.359619140625, + "memo": 1.875, + "reference": 1, + "high": 1, + "bug-report": 1, + "babel": 1, + "flashsocket": 1, + "unix": 1, + "npm": 1, + "site": 1, + "chore": 1, + "adapter": 1, + "slides": 1, + "query": 1, + "major": 1, + "alpha": 1, + "lock": 1, + "security": 2, + "newsletter": 1, + "verification": 1, + "color": 1, + "containerd": 1, + "doughnut": 1, + "sentry": 1, + "dissertation": 1, + "mentoring": 1, + "confer": 1, + "utilities": 1, + "infosec": 1, + "vulnerability": 1, + "has": 1, + "code": 5.831999999999998, + "teaching": 1, + "protection": 1, + "robot": 1, + "android": 1, + "webaim": 1, + "wontfix": 1, + "triage": 2.25, + "contribution": 1, + "macos": 1, + "assertion": 1, + "blog": 1, + "progress": 1, + "pmi": 1, + "promotion": 1, + "validation": 1, + "art": 1, + "film": 1, + "bitbucket": 1, + "cloud": 1, + "labour": 1, + "python": 1, + "attitudinal": 1, + "electron": 1, + "trial": 1, + "example": 1, + "resolution": 1, + "redirect": 1, + "assessment": 1, + "monitor": 1, + "css": 1, + "hack": 1, + "translation": 1, + "opportunity": 1, + "vultr": 1, + "kubernetes": 1, + "wiki": 1, + "parser": 1, + "pwa": 1, + "iphone": 1, + "program": 1, + "finding": 1, + "digital": 1, + "ocean": 1, + "safeguard": 1, + "iac": 1, + "javascript": 1, + "glo": 1, + "porting": 1, + "on": 2, + "hold": 2, + "evaluation": 1, + "go": 1, + "must-triage": 1, + "gradle": 1, + "accessibility": 1, + "work": 1, + "wrangling": 1, + "sast": 1, + "tech-debt": 1, + "entry": 1, + "fault": 1, + "problem": 1, + "brand": 1, + "internal-issue-created": 1, + "pmp": 1, + "bdd": 1, + "checkpoint": 1, + "csharp": 1, + "unreviewed": 1, + "feedback": 1, + "requested": 1, + "wcag": 1, + "bugs": 1, + "mentor": 1, + "economics": 1, + "lib": 1, + "puppet": 1, + "speech": 0.048000000000000015, + "balloon": 0.048000000000000015, + "bulb": 0.019775390625, + "rocket": 2, + "discuss": 0.025600000000000008, + "syntax": 1, + "concept": 0.015625, + "c": 2, + "c++": 2, + "prometheus": 2.25, + "doc": 2.25, + "blogs": 2.25, + "unit-mocha": 1, + "enterprise": 1, + "scheduler": 1, + "class": 1, + "fields": 1, + "commercial": 1, + "infra": 1, + "terraform": 1, + "figure": 1, + "layout": 1, + "specification": 1, + "vector": 1, + "greenkeeper": 1, + "tdd": 1, + "raster": 1, + "mishap": 1, + "sketch": 1, + "released": 1, + "font": 1, + "deployment": 2, + "e-nightwatch": 1, + "engine": 2, + "vulns": 2, + "deliverable": 1, + "manual": 1, + "osx": 1, + "axe": 1, + "sendgrid": 3.515625, + "operating": 2, + "system": 2, + "advance": 1, + "workflow": 1, + "safety": 1, + "phonetic": 1, + "lerna": 1, + "readme": 1, + "music": 1, + "failing": 1.7999999999999998, + "customer": 2, + "extension": 1, + "lint": 1, + "optimizing": 1, + "compiler": 1, + "css-select": 1, + "figma": 1, + "finance": 1, + "closed": 1.7999999999999998, + "due": 1.7999999999999998, + "inactivity": 1.7999999999999998, + "jira": 1, + "survey": 1, + "behavioral": 1, + "multi": 2, + "module": 2, + "mixing": 1, + "backlog": 2, + "update": 1, + "present": 1, + "modules": 1, + "lang-julia": 1, + "vuln": 1, + "demo": 1, + "corporate": 2, + "spam": 1, + "handshakes": 1, + "platform": 1, + "wave": 1, + "ansible": 1, + "lang-convert": 1, + "gdpr": 1, + "classes": 1, + "websocket": 1, + "speach": 1, + "b": 1, + "chef": 1, + "patreon": 1, + "reviewed-changes-requested": 2, + "youtube": 1, + "(legacy)": 1, + "mentorship": 1, + "typescript": 1, + "didactic": 1, + "story": 1, + "academia": 1 + }, + "positive_weights_sum": {}, + "negative_weights_sum": {} + }, + "business": { + "positive_weights": { + "business": 16, + "process": 8, + "bias": 2.2427542750984457e-11, + "deal": 22.78125, + "biz": 22.78125, + "(category)": 1.3333333333333335, + "commerce": 10.125, + "component": 0.75, + "developer": 0.75, + "tools": 0.75, + "inspiration": 0.5, + "sustain": 0.5, + "confirmed": 0.5, + "type": 0.28125, + "question": 0.75, + "grey": 0.75, + "cmty": 2, + "need-info": 0.5, + "sustenance": 0.5, + "good": 0.75, + "first": 0.75, + "issue": 0.75, + "kind": 0.6666666666666667, + "discussion": 0.6666666666666667, + "palette": 0.5, + "azure": 0.6666666666666667, + "ad": 0.6666666666666667, + "data": 0.6666666666666667, + "collection": 0.6666666666666667, + "external-bugs": 2, + "hacking": 2, + "video": 2, + "test": 2, + "utils": 2, + "hsv": 2, + "thesis": 2, + "pentesting": 2, + "design": 0.6666666666666667, + "website": 0.6666666666666667, + "copy": 0.6666666666666667, + "bug": 2, + "guide": 2, + "next": 0.8, + "meetup!": 2, + "feat": 0.75, + "ui": 2, + "mastering": 2, + "steps": 2, + "abandoned": 2, + "badges": 2, + "sponsor": 2, + "assess": 2, + "pr": 0.27777777777777785, + "merged": 0.8333333333333334, + "vlog": 2, + "acceptance": 0.6666666666666667, + "testing": 0.6666666666666667, + "hot": 2, + "tv": 2, + "soundtrack": 2, + "ci": 0.6666666666666667, + "cd": 0.6666666666666667, + "multi-cloud": 2, + "funding": 2, + "finder": 2, + "difficulty": 2, + "hard": 2, + "documentation": 2, + "book": 2, + "diary": 2, + "standard": 2, + "colour": 2, + "computer": 2, + "desktop": 2, + "flaw": 2, + "reliability": 2, + "cli-service": 0.75, + "build": 0.75, + "blocked": 2, + "maintenance": 2, + "construction": 2, + "ios": 2, + "planned": 0.8, + "feature": 0.8333333333333334, + "feature-request": 2, + "rfc": 2, + "image": 0.6666666666666667, + "stock": 2, + "reminder": 2, + "status": 0.75, + "review": 0.75, + "needed": 0.75, + "in": 2, + "lang-crystal": 2, + "breaking": 2, + "change": 2, + "phone": 2, + "refactor": 2, + "monologue": 2, + "reviewed-approved": 2, + "new": 0.75, + "best": 0.75, + "practice": 0.75, + "lecture": 2, + "backing": 2, + "browser": 2, + "aws": 2, + "polish": 2, + "nail": 2, + "care": 2, + "article": 2, + "peer-review": 2, + "writer-needed": 2, + "eventstorming": 2, + "freemasonry": 2, + "icons": 2, + "lean": 2, + "cannot": 2, + "reproduce": 2, + "paas": 2, + "net": 2, + "core": 2, + "wiretap": 2, + "unit-jest": 2, + "instruction": 2, + "infrastructure": 2, + "rgb": 2, + "ideas": 2, + "target": 2, + "windows": 2, + "call": 2, + "iconography": 2, + "promote": 2, + "template": 2, + "support": 0.75, + "first-timers-only": 2, + "java": 2, + "cdn": 2, + "dependency": 2, + "ready": 0.8333333333333334, + "for": 0.8, + "deploy": 2, + "troubleshooting": 2, + "spec": 0.75, + "bigint": 2, + "async": 2, + "generators": 2, + "proposal": 2, + "e": 2, + "approachability": 2, + "investment": 2, + "conflicts": 2, + "optimisation": 2, + "kotlin": 2, + "release": 0.8, + "unconfirmed": 2, + "duplicate": 2, + "repeat": 2, + "devops": 2, + "defend": 2, + "blogging": 2, + "friendliness": 2, + "i": 2, + "n": 2, + "cla": 2, + "signed": 2, + "icebox": 2, + "meetup": 2, + "examination": 2, + "mobile": 0.75, + "device": 0.75, + "api": 2, + "decorators": 2, + "addon": 2, + "cracking": 2, + "sparkles": 2, + "enhancement": 0.75, + "hooks": 2, + "improved": 2, + "error": 2, + "handling": 2, + "needs": 0.8, + "repro": 2, + "upkeep": 2, + "reactis": 2, + "to": 0.8333333333333334, + "be": 0.8333333333333334, + "sample": 2, + "white": 2, + "check": 2, + "mark": 2, + "external": 2, + "hacktoberfest": 2, + "lang-dart": 2, + "framework": 2, + "icon": 2, + "grant": 2, + "needs-research": 2, + "cybersec": 2, + "internationalization": 2, + "utility-lib": 2, + "qa": 2, + "do": 2, + "not": 2, + "merge": 2, + "hacked": 2, + "how-to": 2, + "beginner-friendly": 2, + "trello": 2, + "os": 2, + "sound": 2, + "docs": 2, + "improvement": 2, + "heavy": 0.8333333333333334, + "plus": 0.8333333333333334, + "sign": 0.8333333333333334, + "request": 0.8333333333333334, + "glitch": 2, + "cx": 2, + "dependencies": 2, + "inquiry": 2, + "deno": 2, + "area": 2, + "crash": 2, + "camera": 2, + "wip": 2, + "configure": 2, + "dom": 2, + "programming": 2, + "font-face": 2, + "rgba": 2, + "parser-specific": 2, + "wikipedia": 2, + "shell": 2, + "contributions": 2, + "tryout": 2, + "thought": 2, + "analysis": 2, + "contenu": 2, + "cli": 2, + "fund": 2, + "investigation": 2, + "basecamp": 2, + "literature": 2, + "socket": 2, + "io": 2, + "client": 2, + "fiscal": 2, + "user": 2, + "debug": 2, + "information": 2, + "frontend": 2, + "upstream": 2, + "raising": 2, + "hand": 2, + "style": 2, + "clean": 2, + "up": 2, + "motif": 2, + "event": 2, + "help": 2, + "wanted": 2, + "priority": 2, + "medium": 2, + "financial": 2, + "ruby": 2, + "es": 2, + "warrant": 2, + "cancelled": 2, + "plan": 2, + "hackathon": 2, + "beginner": 2, + "typography": 2, + "counsel": 2, + "recording": 2, + "crowdin": 2, + "eslint": 2, + "rules": 2, + "easy": 2, + "repare": 2, + "conference": 2, + "great": 2, + "insight": 2, + "phd": 2, + "orange": 2, + "invalid": 2, + "x": 2, + "changelog": 2, + "e-cypress": 2, + "lipstick": 2, + "-": 2, + "backdoor": 2, + "approved": 2, + "talk": 2, + "subtitle": 2, + "research": 2, + "todo": 2, + "spiral": 2, + "notepad": 2, + "interface": 2, + "critical": 2, + "privacy": 2, + "tests": 2, + "boom": 2, + "web": 2, + "app": 0.8, + "television": 2, + "uat": 2, + "backer": 2, + "exploit": 2, + "requires": 2, + "travis-yml": 2, + "node": 2, + "dev": 2, + "experience": 2, + "fix": 2, + "backend": 2, + "cleaning": 2, + "internal": 0.6666666666666667, + "house": 2, + "technical": 2, + "debt": 2, + "weekly-digest": 2, + "shallow": 2, + "renderer": 2, + "ie": 0.5, + "hsl": 2, + "left": 2, + "out": 2, + "welcome": 2, + "opinions": 2, + "documents": 2, + "legacy": 2, + "grafana": 2, + "react": 2, + "native": 2, + "lang-go": 2, + "tutorial": 2, + "plugin": 2, + "logo": 2, + "refactoring": 2, + "safari": 2, + "saltstack": 2, + "available": 2, + "server": 2, + "rendering": 2, + "htmlfile": 2, + "theorem": 2, + "social": 2, + "internationalisation": 2, + "definition": 2, + "enquire": 2, + "packaging": 2, + "lang-r": 2, + "regression": 2, + "container": 2, + "opencollective": 2, + "report": 2, + "performance": 2, + "clickup": 2, + "installer": 2, + "statement": 2, + "gcp": 2, + "opinion": 2, + "accepted": 2, + "html": 2, + "a": 0.8, + "y": 2, + "general": 2, + "js": 2, + "unit": 2, + "speak": 2, + "brainstorming": 2, + "backup": 2, + "language": 2, + "bugfix": 2, + "k": 2, + "s": 2, + "scrum": 2, + "paper": 2, + "library": 2, + "stale": 2, + "optimization": 2, + "show": 2, + "apple": 2, + "low": 2, + "functions": 2, + "gnu": 2, + "linux": 2, + "focus": 2, + "groups": 2, + "dependency-update": 2, + "related": 2, + "bootstrap": 2, + "usability": 2, + "*nix": 2, + "externs": 2, + "critique": 2, + "prince": 2, + "demonstration": 2, + "⬆️": 2, + "memo": 2, + "revisitinfuture": 2, + "tips": 2, + "reference": 2, + "high": 2, + "bug-report": 2, + "babel": 2, + "flashsocket": 2, + "unix": 2, + "npm": 2, + "site": 2, + "chore": 2, + "adapter": 2, + "slides": 2, + "query": 2, + "chat": 2, + "major": 2, + "alpha": 2, + "lock": 2, + "security": 2, + "newsletter": 2, + "verification": 2, + "color": 2, + "containerd": 2, + "doughnut": 2, + "sentry": 2, + "dissertation": 2, + "mentoring": 2, + "confer": 2, + "utilities": 2, + "infosec": 2, + "vulnerability": 2, + "has": 2, + "code": 2, + "teaching": 2, + "protection": 2, + "robot": 2, + "android": 2, + "webaim": 2, + "wontfix": 2, + "triage": 0.5, + "contribution": 2, + "macos": 2, + "assertion": 2, + "blog": 2, + "progress": 2, + "future": 2, + "architecture": 2, + "enhancements": 2, + "pmi": 2, + "promotion": 2, + "validation": 2, + "art": 2, + "film": 2, + "bitbucket": 2, + "cloud": 2, + "labour": 2, + "python": 2, + "suggestion": 2, + "crypto": 2, + "attitudinal": 2, + "electron": 2, + "trial": 2, + "example": 0.8, + "resolution": 2, + "redirect": 2, + "assessment": 2, + "monitor": 2, + "css": 2, + "hack": 2, + "translation": 2, + "opportunity": 2, + "vultr": 2, + "kubernetes": 2, + "wiki": 2, + "parser": 2, + "pwa": 2, + "iphone": 2, + "program": 2, + "finding": 2, + "digital": 2, + "ocean": 2, + "safeguard": 2, + "iac": 2, + "javascript": 2, + "integration": 2, + "glo": 2, + "porting": 2, + "on": 2, + "hold": 2, + "evaluation": 2, + "go": 2, + "must-triage": 2, + "gradle": 2, + "accessibility": 2, + "work": 2, + "other": 2, + "wrangling": 2, + "sast": 2, + "tech-debt": 2, + "entry": 2, + "fault": 2, + "problem": 2, + "brand": 2, + "internal-issue-created": 2, + "pmp": 2, + "bdd": 2, + "checkpoint": 2, + "csharp": 2, + "unreviewed": 2, + "idea": 2, + "feedback": 2, + "requested": 2, + "wcag": 2, + "bugs": 2, + "mentor": 2, + "economics": 2, + "lib": 2, + "puppet": 2, + "speech": 2, + "balloon": 2, + "enterprise": 10.125, + "commercial": 10.125, + "handshakes": 10.125, + "c": 0.6666666666666667, + "c++": 0.6666666666666667, + "bulb": 0.75, + "prometheus": 0.5, + "rocket": 2, + "discuss": 2, + "doc": 0.5, + "blogs": 0.5, + "unit-mocha": 2, + "scheduler": 2, + "class": 0.75, + "fields": 0.75, + "infra": 2, + "terraform": 2, + "figure": 2, + "layout": 2, + "specification": 2, + "vector": 0.6666666666666667, + "greenkeeper": 2, + "tdd": 2, + "raster": 2, + "mishap": 2, + "sketch": 2, + "released": 2, + "font": 2, + "deployment": 2, + "e-nightwatch": 2, + "engine": 2, + "vulns": 2, + "syntax": 2, + "deliverable": 2, + "manual": 2, + "osx": 2, + "axe": 2, + "sendgrid": 2, + "operating": 2, + "system": 2, + "advance": 2, + "workflow": 2, + "safety": 2, + "phonetic": 2, + "concept": 2, + "lerna": 2, + "readme": 2, + "music": 2, + "failing": 2, + "customer": 2, + "extension": 2, + "lint": 2, + "optimizing": 2, + "compiler": 2, + "css-select": 2, + "figma": 2, + "finance": 2, + "closed": 2, + "due": 2, + "inactivity": 2, + "jira": 2, + "survey": 2, + "behavioral": 2, + "multi": 2, + "module": 2, + "mixing": 2, + "backlog": 2, + "update": 2, + "present": 2, + "modules": 2, + "lang-julia": 2, + "vuln": 2, + "demo": 2, + "corporate": 2, + "spam": 2, + "platform": 2, + "wave": 2, + "ansible": 2, + "lang-convert": 2, + "gdpr": 2, + "classes": 2, + "websocket": 2, + "speach": 2, + "b": 2, + "chef": 2, + "patreon": 2, + "reviewed-changes-requested": 2, + "youtube": 2, + "(legacy)": 2, + "mentorship": 2, + "typescript": 2, + "didactic": 2, + "story": 2, + "academia": 2 + }, + "negative_weights": { + "business": 0.03703703703703705, + "process": 0.11111111111111113, + "bias": 3.004253454779683, + "deal": 0.015625, + "biz": 0.015625, + "(category)": 0.6666666666666667, + "commerce": 0.0625, + "component": 1.875, + "developer": 1.875, + "tools": 1.875, + "inspiration": 2.25, + "sustain": 2.25, + "confirmed": 2.25, + "type": 3.515625, + "question": 1.875, + "grey": 1.875, + "cmty": 1, + "need-info": 2.25, + "sustenance": 2.25, + "good": 1.875, + "first": 1.875, + "issue": 1.875, + "kind": 2, + "discussion": 2, + "palette": 2.25, + "azure": 2, + "ad": 2, + "data": 2, + "collection": 2, + "external-bugs": 1, + "hacking": 1, + "video": 1, + "test": 1, + "utils": 1, + "hsv": 1, + "thesis": 1, + "pentesting": 1, + "design": 2, + "website": 2, + "copy": 2, + "bug": 1, + "guide": 1, + "next": 1.7999999999999998, + "meetup!": 1, + "feat": 1.875, + "ui": 1, + "mastering": 1, + "steps": 1, + "abandoned": 1, + "badges": 1, + "sponsor": 1, + "assess": 1, + "pr": 3.5, + "merged": 1.75, + "vlog": 1, + "acceptance": 2, + "testing": 2, + "hot": 1, + "tv": 1, + "soundtrack": 1, + "ci": 2, + "cd": 2, + "multi-cloud": 1, + "funding": 1, + "finder": 1, + "difficulty": 1, + "hard": 1, + "documentation": 1, + "book": 1, + "diary": 1, + "standard": 1, + "colour": 1, + "computer": 1, + "desktop": 1, + "flaw": 1, + "reliability": 1, + "cli-service": 1.875, + "build": 1.875, + "blocked": 1, + "maintenance": 1, + "construction": 1, + "ios": 1, + "planned": 1.7999999999999998, + "feature": 1.75, + "feature-request": 1, + "rfc": 1, + "image": 2, + "stock": 1, + "reminder": 1, + "status": 1.875, + "review": 1.875, + "needed": 1.875, + "in": 1, + "lang-crystal": 1, + "breaking": 1, + "change": 1, + "phone": 1, + "refactor": 1, + "monologue": 1, + "reviewed-approved": 1, + "new": 1.875, + "best": 1.875, + "practice": 1.875, + "lecture": 1, + "backing": 1, + "browser": 1, + "aws": 1, + "polish": 1, + "nail": 1, + "care": 1, + "article": 1, + "peer-review": 1, + "writer-needed": 1, + "eventstorming": 1, + "freemasonry": 1, + "icons": 1, + "lean": 1, + "cannot": 1, + "reproduce": 1, + "paas": 1, + "net": 1, + "core": 1, + "wiretap": 1, + "unit-jest": 1, + "instruction": 1, + "infrastructure": 1, + "rgb": 1, + "ideas": 1, + "target": 1, + "windows": 1, + "call": 1, + "iconography": 1, + "promote": 1, + "template": 1, + "support": 1.875, + "first-timers-only": 1, + "java": 1, + "cdn": 1, + "dependency": 1, + "ready": 1.75, + "for": 1.7999999999999998, + "deploy": 1, + "troubleshooting": 1, + "spec": 1.875, + "bigint": 1, + "async": 1, + "generators": 1, + "proposal": 1, + "e": 1, + "approachability": 1, + "investment": 1, + "conflicts": 1, + "optimisation": 1, + "kotlin": 1, + "release": 1.7999999999999998, + "unconfirmed": 1, + "duplicate": 1, + "repeat": 1, + "devops": 1, + "defend": 1, + "blogging": 1, + "friendliness": 1, + "i": 1, + "n": 1, + "cla": 1, + "signed": 1, + "icebox": 1, + "meetup": 1, + "examination": 1, + "mobile": 1.875, + "device": 1.875, + "api": 1, + "decorators": 1, + "addon": 1, + "cracking": 1, + "sparkles": 1, + "enhancement": 1.875, + "hooks": 1, + "improved": 1, + "error": 1, + "handling": 1, + "needs": 1.7999999999999998, + "repro": 1, + "upkeep": 1, + "reactis": 1, + "to": 1.75, + "be": 1.75, + "sample": 1, + "white": 1, + "check": 1, + "mark": 1, + "external": 1, + "hacktoberfest": 1, + "lang-dart": 1, + "framework": 1, + "icon": 1, + "grant": 1, + "needs-research": 1, + "cybersec": 1, + "internationalization": 1, + "utility-lib": 1, + "qa": 1, + "do": 1, + "not": 1, + "merge": 1, + "hacked": 1, + "how-to": 1, + "beginner-friendly": 1, + "trello": 1, + "os": 1, + "sound": 1, + "docs": 1, + "improvement": 1, + "heavy": 1.75, + "plus": 1.75, + "sign": 1.75, + "request": 1.75, + "glitch": 1, + "cx": 1, + "dependencies": 1, + "inquiry": 1, + "deno": 1, + "area": 1, + "crash": 1, + "camera": 1, + "wip": 1, + "configure": 1, + "dom": 1, + "programming": 1, + "font-face": 1, + "rgba": 1, + "parser-specific": 1, + "wikipedia": 1, + "shell": 1, + "contributions": 1, + "tryout": 1, + "thought": 1, + "analysis": 1, + "contenu": 1, + "cli": 1, + "fund": 1, + "investigation": 1, + "basecamp": 1, + "literature": 1, + "socket": 1, + "io": 1, + "client": 1, + "fiscal": 1, + "user": 1, + "debug": 1, + "information": 1, + "frontend": 1, + "upstream": 1, + "raising": 1, + "hand": 1, + "style": 1, + "clean": 1, + "up": 1, + "motif": 1, + "event": 1, + "help": 1, + "wanted": 1, + "priority": 1, + "medium": 1, + "financial": 1, + "ruby": 1, + "es": 1, + "warrant": 1, + "cancelled": 1, + "plan": 1, + "hackathon": 1, + "beginner": 1, + "typography": 1, + "counsel": 1, + "recording": 1, + "crowdin": 1, + "eslint": 1, + "rules": 1, + "easy": 1, + "repare": 1, + "conference": 1, + "great": 1, + "insight": 1, + "phd": 1, + "orange": 1, + "invalid": 1, + "x": 1, + "changelog": 1, + "e-cypress": 1, + "lipstick": 1, + "-": 1, + "backdoor": 1, + "approved": 1, + "talk": 1, + "subtitle": 1, + "research": 1, + "todo": 1, + "spiral": 1, + "notepad": 1, + "interface": 1, + "critical": 1, + "privacy": 1, + "tests": 1, + "boom": 1, + "web": 1, + "app": 1.7999999999999998, + "television": 1, + "uat": 1, + "backer": 1, + "exploit": 1, + "requires": 1, + "travis-yml": 1, + "node": 1, + "dev": 1, + "experience": 1, + "fix": 1, + "backend": 1, + "cleaning": 1, + "internal": 2, + "house": 1, + "technical": 1, + "debt": 1, + "weekly-digest": 1, + "shallow": 1, + "renderer": 1, + "ie": 2.25, + "hsl": 1, + "left": 1, + "out": 1, + "welcome": 1, + "opinions": 1, + "documents": 1, + "legacy": 1, + "grafana": 1, + "react": 1, + "native": 1, + "lang-go": 1, + "tutorial": 1, + "plugin": 1, + "logo": 1, + "refactoring": 1, + "safari": 1, + "saltstack": 1, + "available": 1, + "server": 1, + "rendering": 1, + "htmlfile": 1, + "theorem": 1, + "social": 1, + "internationalisation": 1, + "definition": 1, + "enquire": 1, + "packaging": 1, + "lang-r": 1, + "regression": 1, + "container": 1, + "opencollective": 1, + "report": 1, + "performance": 1, + "clickup": 1, + "installer": 1, + "statement": 1, + "gcp": 1, + "opinion": 1, + "accepted": 1, + "html": 1, + "a": 1.7999999999999998, + "y": 1, + "general": 1, + "js": 1, + "unit": 1, + "speak": 1, + "brainstorming": 1, + "backup": 1, + "language": 1, + "bugfix": 1, + "k": 1, + "s": 1, + "scrum": 1, + "paper": 1, + "library": 1, + "stale": 1, + "optimization": 1, + "show": 1, + "apple": 1, + "low": 1, + "functions": 1, + "gnu": 1, + "linux": 1, + "focus": 1, + "groups": 1, + "dependency-update": 1, + "related": 1, + "bootstrap": 1, + "usability": 1, + "*nix": 1, + "externs": 1, + "critique": 1, + "prince": 1, + "demonstration": 1, + "⬆️": 1, + "memo": 1, + "revisitinfuture": 1, + "tips": 1, + "reference": 1, + "high": 1, + "bug-report": 1, + "babel": 1, + "flashsocket": 1, + "unix": 1, + "npm": 1, + "site": 1, + "chore": 1, + "adapter": 1, + "slides": 1, + "query": 1, + "chat": 1, + "major": 1, + "alpha": 1, + "lock": 1, + "security": 1, + "newsletter": 1, + "verification": 1, + "color": 1, + "containerd": 1, + "doughnut": 1, + "sentry": 1, + "dissertation": 1, + "mentoring": 1, + "confer": 1, + "utilities": 1, + "infosec": 1, + "vulnerability": 1, + "has": 1, + "code": 1, + "teaching": 1, + "protection": 1, + "robot": 1, + "android": 1, + "webaim": 1, + "wontfix": 1, + "triage": 2.25, + "contribution": 1, + "macos": 1, + "assertion": 1, + "blog": 1, + "progress": 1, + "future": 1, + "architecture": 1, + "enhancements": 1, + "pmi": 1, + "promotion": 1, + "validation": 1, + "art": 1, + "film": 1, + "bitbucket": 1, + "cloud": 1, + "labour": 1, + "python": 1, + "suggestion": 1, + "crypto": 1, + "attitudinal": 1, + "electron": 1, + "trial": 1, + "example": 1.7999999999999998, + "resolution": 1, + "redirect": 1, + "assessment": 1, + "monitor": 1, + "css": 1, + "hack": 1, + "translation": 1, + "opportunity": 1, + "vultr": 1, + "kubernetes": 1, + "wiki": 1, + "parser": 1, + "pwa": 1, + "iphone": 1, + "program": 1, + "finding": 1, + "digital": 1, + "ocean": 1, + "safeguard": 1, + "iac": 1, + "javascript": 1, + "integration": 1, + "glo": 1, + "porting": 1, + "on": 1, + "hold": 1, + "evaluation": 1, + "go": 1, + "must-triage": 1, + "gradle": 1, + "accessibility": 1, + "work": 1, + "other": 1, + "wrangling": 1, + "sast": 1, + "tech-debt": 1, + "entry": 1, + "fault": 1, + "problem": 1, + "brand": 1, + "internal-issue-created": 1, + "pmp": 1, + "bdd": 1, + "checkpoint": 1, + "csharp": 1, + "unreviewed": 1, + "idea": 1, + "feedback": 1, + "requested": 1, + "wcag": 1, + "bugs": 1, + "mentor": 1, + "economics": 1, + "lib": 1, + "puppet": 1, + "speech": 1, + "balloon": 1, + "enterprise": 0.0625, + "commercial": 0.0625, + "handshakes": 0.0625, + "c": 2, + "c++": 2, + "bulb": 1.875, + "prometheus": 2.25, + "rocket": 1, + "discuss": 1, + "doc": 2.25, + "blogs": 2.25, + "unit-mocha": 1, + "scheduler": 1, + "class": 1.875, + "fields": 1.875, + "infra": 1, + "terraform": 1, + "figure": 1, + "layout": 1, + "specification": 1, + "vector": 2, + "greenkeeper": 1, + "tdd": 1, + "raster": 1, + "mishap": 1, + "sketch": 1, + "released": 1, + "font": 1, + "deployment": 1, + "e-nightwatch": 1, + "engine": 1, + "vulns": 1, + "syntax": 1, + "deliverable": 1, + "manual": 1, + "osx": 1, + "axe": 1, + "sendgrid": 1, + "operating": 1, + "system": 1, + "advance": 1, + "workflow": 1, + "safety": 1, + "phonetic": 1, + "concept": 1, + "lerna": 1, + "readme": 1, + "music": 1, + "failing": 1, + "customer": 1, + "extension": 1, + "lint": 1, + "optimizing": 1, + "compiler": 1, + "css-select": 1, + "figma": 1, + "finance": 1, + "closed": 1, + "due": 1, + "inactivity": 1, + "jira": 1, + "survey": 1, + "behavioral": 1, + "multi": 1, + "module": 1, + "mixing": 1, + "backlog": 1, + "update": 1, + "present": 1, + "modules": 1, + "lang-julia": 1, + "vuln": 1, + "demo": 1, + "corporate": 1, + "spam": 1, + "platform": 1, + "wave": 1, + "ansible": 1, + "lang-convert": 1, + "gdpr": 1, + "classes": 1, + "websocket": 1, + "speach": 1, + "b": 1, + "chef": 1, + "patreon": 1, + "reviewed-changes-requested": 1, + "youtube": 1, + "(legacy)": 1, + "mentorship": 1, + "typescript": 1, + "didactic": 1, + "story": 1, + "academia": 1 + }, + "positive_weights_sum": {}, + "negative_weights_sum": {} + }, + "maintenance": { + "positive_weights": { + "sustain": 22.78125, + "bias": 6.06723412115834e-51, + "sustenance": 22.78125, + "reliability": 22.78125, + "type": 0.005437606205305203, + "maintenance": 15.8203125, + "construction": 7.03125, + "pr": 0.03476142883300782, + "polish": 6.479999999999999, + "nail": 6.479999999999999, + "care": 6.479999999999999, + "sparkles": 8, + "enhancement": 12.514114379882812, + "upkeep": 22.78125, + "dependencies": 10.125, + "contributions": 10.125, + "clean": 8, + "up": 8, + "component": 0.23174285888671878, + "eslint": 14.0625, + "rules": 7.03125, + "repare": 10.125, + "todo": 15.8203125, + "spiral": 7.03125, + "notepad": 7.03125, + "technical": 8, + "debt": 8, + "core": 13.515243530273441, + "legacy": 10.125, + "definition": 2, + "performance": 18, + "backup": 10.125, + "dependency-update": 10.125, + "dependency": 7.415771484375, + "related": 8, + "⬆️": 13.18359375, + "site": 2, + "chore": 10.125, + "doughnut": 2, + "utilities": 3.75, + "labour": 10.125, + "monitor": 10.125, + "tech-debt": 10.125, + "developer": 0.28125, + "tools": 0.28125, + "inspiration": 0.125, + "business": 0.6666666666666667, + "process": 0.6666666666666667, + "confirmed": 0.5, + "question": 0.28125, + "grey": 0.28125, + "cmty": 2, + "need-info": 0.5, + "good": 0.75, + "first": 0.75, + "issue": 0.75, + "kind": 0.6666666666666667, + "discussion": 0.6666666666666667, + "palette": 0.5, + "azure": 0.6666666666666667, + "ad": 0.6666666666666667, + "data": 0.6666666666666667, + "collection": 0.6666666666666667, + "external-bugs": 0.5, + "deal": 0.5, + "hacking": 0.5, + "video": 0.5, + "test": 0.75, + "utils": 0.75, + "hsv": 0.5, + "thesis": 0.5, + "pentesting": 0.5, + "design": 0.5, + "website": 0.6666666666666667, + "copy": 0.6666666666666667, + "bug": 0.22222222222222227, + "guide": 0.5, + "next": 0.6666666666666667, + "meetup!": 0.6666666666666667, + "feat": 0.16666666666666669, + "ui": 0.6666666666666667, + "mastering": 0.5, + "steps": 0.5, + "abandoned": 0.5, + "badges": 0.5, + "sponsor": 0.5, + "assess": 0.5, + "merged": 0.0925925925925926, + "vlog": 0.5, + "acceptance": 0.6666666666666667, + "testing": 0.6666666666666667, + "hot": 2, + "tv": 0.5, + "soundtrack": 0.5, + "(category)": 2, + "ci": 0.6666666666666667, + "cd": 0.6666666666666667, + "multi-cloud": 0.5, + "funding": 0.6666666666666667, + "finder": 0.6666666666666667, + "difficulty": 0.6666666666666667, + "hard": 0.6666666666666667, + "documentation": 0.6666666666666667, + "book": 0.6666666666666667, + "diary": 0.5, + "standard": 0.5, + "colour": 0.5, + "computer": 0.6666666666666667, + "desktop": 0.6666666666666667, + "flaw": 0.5, + "cli-service": 0.75, + "build": 0.75, + "blocked": 0.5, + "ios": 0.5, + "planned": 0.6666666666666667, + "feature": 0.6666666666666667, + "feature-request": 2, + "rfc": 0.5, + "image": 0.5, + "stock": 0.5, + "reminder": 0.5, + "status": 0.30000000000000004, + "review": 0.75, + "needed": 0.75, + "in": 2, + "lang-crystal": 0.5, + "breaking": 0.75, + "change": 0.75, + "phone": 0.5, + "refactor": 0.5, + "monologue": 0.5, + "reviewed-approved": 0.6666666666666667, + "new": 0.10546875, + "best": 0.75, + "practice": 0.75, + "lecture": 0.5, + "backing": 0.5, + "browser": 2, + "aws": 0.5, + "article": 0.5, + "peer-review": 0.5, + "writer-needed": 0.5, + "eventstorming": 0.5, + "freemasonry": 0.6666666666666667, + "icons": 0.6666666666666667, + "lean": 0.5, + "cannot": 0.6666666666666667, + "reproduce": 0.6666666666666667, + "paas": 0.5, + "net": 0.024691358024691367, + "wiretap": 0.5, + "unit-jest": 2, + "instruction": 0.5, + "infrastructure": 0.5, + "rgb": 0.5, + "ideas": 0.5, + "target": 0.6666666666666667, + "windows": 0.6666666666666667, + "call": 2, + "iconography": 0.5, + "promote": 0.5, + "template": 0.5, + "support": 0.75, + "first-timers-only": 0.5, + "java": 0.5, + "cdn": 2, + "ready": 0.3333333333333333, + "for": 0.8, + "deploy": 0.8, + "troubleshooting": 2, + "spec": 0.28125, + "bigint": 2, + "async": 0.75, + "generators": 0.75, + "proposal": 2, + "e": 2, + "approachability": 2, + "investment": 2, + "conflicts": 2, + "optimisation": 2, + "kotlin": 2, + "release": 0.8, + "unconfirmed": 2, + "duplicate": 0.75, + "repeat": 0.75, + "devops": 0.6666666666666667, + "defend": 0.6666666666666667, + "blogging": 2, + "friendliness": 2, + "i": 0.6666666666666667, + "n": 0.6666666666666667, + "cla": 0.6666666666666667, + "signed": 0.6666666666666667, + "icebox": 2, + "meetup": 2, + "examination": 2, + "mobile": 0.75, + "device": 0.75, + "api": 2, + "decorators": 2, + "addon": 2, + "cracking": 2, + "hooks": 2, + "improved": 0.75, + "error": 0.75, + "handling": 0.75, + "needs": 0.8, + "repro": 2, + "reactis": 2, + "to": 4.2666666666666675, + "be": 0.8333333333333333, + "sample": 2, + "white": 2, + "check": 2, + "mark": 2, + "external": 2, + "hacktoberfest": 2, + "lang-dart": 2, + "framework": 2, + "icon": 2, + "grant": 2, + "needs-research": 2, + "cybersec": 2, + "biz": 2, + "internationalization": 2, + "utility-lib": 2, + "qa": 2, + "do": 9, + "not": 0.28125, + "merge": 0.28125, + "hacked": 2, + "how-to": 2, + "beginner-friendly": 2, + "trello": 2, + "os": 2, + "sound": 2, + "docs": 2, + "improvement": 2, + "heavy": 2, + "plus": 2, + "sign": 2, + "request": 2, + "glitch": 2, + "cx": 2, + "inquiry": 2, + "deno": 2, + "area": 2, + "crash": 2, + "camera": 2, + "wip": 2, + "configure": 2, + "dom": 2, + "programming": 2, + "font-face": 2, + "rgba": 2, + "parser-specific": 2, + "wikipedia": 2, + "shell": 2, + "tryout": 2, + "thought": 2, + "analysis": 2, + "contenu": 2, + "cli": 2, + "fund": 2, + "investigation": 2, + "basecamp": 2, + "literature": 2, + "socket": 2, + "io": 2, + "client": 0.8, + "fiscal": 2, + "user": 2, + "debug": 2, + "information": 2, + "frontend": 2, + "upstream": 2, + "raising": 2, + "hand": 2, + "style": 2, + "motif": 2, + "event": 0.6666666666666667, + "help": 0.6666666666666667, + "wanted": 0.6666666666666667, + "priority": 2, + "medium": 2, + "financial": 2, + "ruby": 2, + "es": 2, + "warrant": 2, + "cancelled": 2, + "plan": 2, + "hackathon": 2, + "beginner": 2, + "typography": 2, + "counsel": 2, + "recording": 2, + "crowdin": 2, + "easy": 2, + "conference": 2, + "great": 2, + "insight": 2, + "phd": 2, + "orange": 2, + "invalid": 2, + "x": 2, + "changelog": 2, + "e-cypress": 2, + "lipstick": 2, + "-": 0.6666666666666667, + "backdoor": 2, + "approved": 2, + "talk": 2, + "subtitle": 2, + "research": 2, + "interface": 2, + "critical": 2, + "privacy": 2, + "tests": 2, + "boom": 2, + "web": 2, + "app": 0.8, + "television": 2, + "uat": 2, + "backer": 2, + "exploit": 2, + "requires": 2, + "travis-yml": 2, + "node": 2, + "dev": 2, + "experience": 0.6666666666666667, + "fix": 2, + "backend": 2, + "cleaning": 2, + "internal": 0.8, + "house": 2, + "weekly-digest": 2, + "shallow": 2, + "renderer": 2, + "commerce": 2, + "ie": 0.5, + "hsl": 2, + "left": 2, + "out": 2, + "welcome": 2, + "opinions": 2, + "documents": 2, + "grafana": 2, + "react": 2, + "native": 2, + "lang-go": 2, + "tutorial": 2, + "plugin": 2, + "logo": 2, + "refactoring": 2, + "safari": 2, + "saltstack": 2, + "available": 2, + "server": 2, + "rendering": 2, + "htmlfile": 2, + "theorem": 2, + "social": 2, + "internationalisation": 2, + "enquire": 2, + "packaging": 2, + "lang-r": 2, + "regression": 0.5, + "container": 2, + "opencollective": 2, + "report": 2, + "clickup": 2, + "installer": 2, + "statement": 2, + "gcp": 2, + "opinion": 2, + "accepted": 2, + "html": 2, + "a": 0.8, + "y": 2, + "general": 2, + "js": 2, + "unit": 2, + "speak": 2, + "brainstorming": 2, + "language": 2, + "bugfix": 2, + "k": 2, + "s": 2, + "scrum": 2, + "paper": 2, + "library": 2, + "stale": 2, + "optimization": 2, + "show": 2, + "apple": 2, + "low": 2, + "functions": 2, + "gnu": 2, + "linux": 0.5, + "focus": 2, + "groups": 2, + "bootstrap": 2, + "usability": 2, + "*nix": 2, + "externs": 2, + "critique": 2, + "prince": 2, + "demonstration": 2, + "memo": 2, + "revisitinfuture": 2, + "tips": 2, + "reference": 2, + "high": 2, + "bug-report": 2, + "babel": 2, + "flashsocket": 2, + "unix": 2, + "npm": 2, + "adapter": 2, + "slides": 2, + "query": 2, + "chat": 2, + "major": 2, + "alpha": 2, + "lock": 2, + "security": 2, + "newsletter": 2, + "verification": 2, + "color": 2, + "containerd": 2, + "sentry": 2, + "dissertation": 2, + "mentoring": 2, + "confer": 2, + "infosec": 2, + "vulnerability": 2, + "has": 2, + "code": 2, + "teaching": 2, + "protection": 2, + "robot": 2, + "android": 2, + "webaim": 2, + "wontfix": 2, + "triage": 0.5, + "contribution": 2, + "macos": 2, + "assertion": 2, + "blog": 2, + "progress": 2, + "future": 2, + "architecture": 2, + "enhancements": 2, + "pmi": 2, + "promotion": 2, + "validation": 2, + "art": 2, + "film": 2, + "bitbucket": 2, + "cloud": 2, + "python": 2, + "suggestion": 2, + "crypto": 2, + "attitudinal": 2, + "electron": 2, + "trial": 2, + "example": 0.8, + "resolution": 2, + "redirect": 2, + "assessment": 2, + "css": 2, + "hack": 2, + "translation": 2, + "opportunity": 2, + "vultr": 2, + "kubernetes": 2, + "wiki": 2, + "parser": 2, + "pwa": 2, + "iphone": 2, + "program": 2, + "finding": 2, + "digital": 2, + "ocean": 2, + "safeguard": 2, + "iac": 2, + "javascript": 2, + "integration": 2, + "glo": 2, + "porting": 2, + "on": 0.6666666666666667, + "hold": 0.6666666666666667, + "evaluation": 2, + "go": 0.8, + "must-triage": 2, + "gradle": 2, + "accessibility": 2, + "work": 2, + "other": 2, + "wrangling": 2, + "sast": 2, + "entry": 2, + "fault": 2, + "problem": 2, + "brand": 2, + "internal-issue-created": 2, + "pmp": 2, + "bdd": 2, + "checkpoint": 2, + "csharp": 2, + "unreviewed": 2, + "idea": 2, + "feedback": 2, + "requested": 2, + "wcag": 2, + "bugs": 2, + "mentor": 2, + "economics": 2, + "lib": 2, + "puppet": 2, + "speech": 0.8, + "balloon": 0.8, + "sendgrid": 13.18359375, + "lint": 10.125, + "multi": 8, + "module": 8, + "update": 13.684184074401855, + "c": 0.6666666666666667, + "c++": 0.6666666666666667, + "bulb": 0.01483154296875, + "prometheus": 0.5, + "rocket": 0.6666666666666667, + "discuss": 0.8, + "doc": 0.0263671875, + "blogs": 0.5, + "unit-mocha": 0.6666666666666667, + "enterprise": 0.5, + "scheduler": 0.6666666666666667, + "class": 0.75, + "fields": 0.75, + "commercial": 0.5, + "infra": 0.5, + "terraform": 0.5, + "figure": 0.5, + "layout": 0.5, + "specification": 0.5, + "vector": 2, + "greenkeeper": 0.5, + "tdd": 0.5, + "raster": 2, + "mishap": 0.5, + "sketch": 0.5, + "released": 0.5, + "font": 2, + "deployment": 0.6666666666666667, + "e-nightwatch": 2, + "engine": 0.6666666666666667, + "vulns": 0.6666666666666667, + "syntax": 2, + "deliverable": 2, + "manual": 2, + "osx": 2, + "axe": 2, + "operating": 0.6666666666666667, + "system": 0.6666666666666667, + "advance": 2, + "workflow": 2, + "safety": 2, + "phonetic": 2, + "concept": 2, + "lerna": 2, + "readme": 2, + "music": 2, + "failing": 2, + "customer": 0.6666666666666667, + "extension": 2, + "optimizing": 2, + "compiler": 2, + "css-select": 2, + "figma": 2, + "finance": 2, + "closed": 0.32000000000000006, + "due": 0.32000000000000006, + "inactivity": 0.32000000000000006, + "jira": 2, + "survey": 2, + "behavioral": 2, + "mixing": 2, + "backlog": 0.6666666666666667, + "present": 2, + "modules": 2, + "lang-julia": 2, + "vuln": 2, + "demo": 2, + "corporate": 0.6666666666666667, + "spam": 2, + "handshakes": 2, + "platform": 2, + "wave": 2, + "ansible": 2, + "lang-convert": 2, + "gdpr": 2, + "classes": 2, + "websocket": 2, + "speach": 2, + "b": 2, + "chef": 2, + "patreon": 2, + "reviewed-changes-requested": 2, + "youtube": 2, + "(legacy)": 2, + "mentorship": 2, + "typescript": 2, + "didactic": 2, + "story": 2, + "academia": 2 + }, + "negative_weights": { + "sustain": 0.015625, + "bias": 3.4875196736768466, + "sustenance": 0.015625, + "reliability": 0.015625, + "type": 0.024584084767909103, + "maintenance": 0.03515625, + "construction": 0.140625, + "pr": 0.7786560058593752, + "polish": 0.16000000000000003, + "nail": 0.16000000000000003, + "care": 0.16000000000000003, + "sparkles": 0.11111111111111113, + "enhancement": 0.0005587935447692875, + "upkeep": 0.015625, + "dependencies": 0.0625, + "contributions": 0.0625, + "clean": 0.11111111111111113, + "up": 0.11111111111111113, + "component": 0.6952285766601562, + "eslint": 0.04687500000000001, + "rules": 0.140625, + "repare": 0.0625, + "todo": 0.03515625, + "spiral": 0.140625, + "notepad": 0.140625, + "technical": 0.11111111111111113, + "debt": 0.11111111111111113, + "core": 0.0003662109375, + "legacy": 0.0625, + "definition": 1, + "performance": 0.027777777777777783, + "backup": 0.0625, + "dependency-update": 0.0625, + "dependency": 0.020599365234375003, + "related": 0.11111111111111113, + "⬆️": 0.052734375, + "site": 1, + "chore": 0.0625, + "doughnut": 1, + "utilities": 0.375, + "labour": 0.0625, + "monitor": 0.0625, + "tech-debt": 0.0625, + "developer": 3.515625, + "tools": 3.515625, + "inspiration": 5.0625, + "business": 2, + "process": 2, + "confirmed": 2.25, + "question": 3.515625, + "grey": 3.515625, + "cmty": 1, + "need-info": 2.25, + "good": 1.875, + "first": 1.875, + "issue": 1.875, + "kind": 2, + "discussion": 2, + "palette": 2.25, + "azure": 2, + "ad": 2, + "data": 2, + "collection": 2, + "external-bugs": 2.25, + "deal": 2.25, + "hacking": 2.25, + "video": 2.25, + "test": 1.875, + "utils": 1.875, + "hsv": 2.25, + "thesis": 2.25, + "pentesting": 2.25, + "design": 2.25, + "website": 2, + "copy": 2, + "bug": 4, + "guide": 2.25, + "next": 2, + "meetup!": 2, + "feat": 2.5000000000000004, + "ui": 2, + "mastering": 2.25, + "steps": 2.25, + "abandoned": 2.25, + "badges": 2.25, + "sponsor": 2.25, + "assess": 2.25, + "merged": 7, + "vlog": 2.25, + "acceptance": 2, + "testing": 2, + "hot": 1, + "tv": 2.25, + "soundtrack": 2.25, + "(category)": 1, + "ci": 2, + "cd": 2, + "multi-cloud": 2.25, + "funding": 2, + "finder": 2, + "difficulty": 2, + "hard": 2, + "documentation": 2, + "book": 2, + "diary": 2.25, + "standard": 2.25, + "colour": 2.25, + "computer": 2, + "desktop": 2, + "flaw": 2.25, + "cli-service": 1.875, + "build": 1.875, + "blocked": 2.25, + "ios": 2.25, + "planned": 2, + "feature": 2, + "feature-request": 1, + "rfc": 2.25, + "image": 2.25, + "stock": 2.25, + "reminder": 2.25, + "status": 3.3749999999999996, + "review": 1.875, + "needed": 1.875, + "in": 1, + "lang-crystal": 2.25, + "breaking": 1.875, + "change": 1.875, + "phone": 2.25, + "refactor": 2.25, + "monologue": 2.25, + "reviewed-approved": 2, + "new": 6.591796875, + "best": 1.875, + "practice": 1.875, + "lecture": 2.25, + "backing": 2.25, + "browser": 1, + "aws": 2.25, + "article": 2.25, + "peer-review": 2.25, + "writer-needed": 2.25, + "eventstorming": 2.25, + "freemasonry": 2, + "icons": 2, + "lean": 2.25, + "cannot": 2, + "reproduce": 2, + "paas": 2.25, + "net": 16, + "wiretap": 2.25, + "unit-jest": 1, + "instruction": 2.25, + "infrastructure": 2.25, + "rgb": 2.25, + "ideas": 2.25, + "target": 2, + "windows": 2, + "call": 1, + "iconography": 2.25, + "promote": 2.25, + "template": 2.25, + "support": 1.875, + "first-timers-only": 2.25, + "java": 2.25, + "cdn": 1, + "ready": 3.1499999999999995, + "for": 1.7999999999999998, + "deploy": 1.7999999999999998, + "troubleshooting": 1, + "spec": 3.515625, + "bigint": 1, + "async": 1.875, + "generators": 1.875, + "proposal": 1, + "e": 1, + "approachability": 1, + "investment": 1, + "conflicts": 1, + "optimisation": 1, + "kotlin": 1, + "release": 1.7999999999999998, + "unconfirmed": 1, + "duplicate": 1.875, + "repeat": 1.875, + "devops": 2, + "defend": 2, + "blogging": 1, + "friendliness": 1, + "i": 2, + "n": 2, + "cla": 2, + "signed": 2, + "icebox": 1, + "meetup": 1, + "examination": 1, + "mobile": 1.875, + "device": 1.875, + "api": 1, + "decorators": 1, + "addon": 1, + "cracking": 1, + "hooks": 1, + "improved": 1.875, + "error": 1.875, + "handling": 1.875, + "needs": 1.7999999999999998, + "repro": 1, + "reactis": 1, + "to": 0.02333333333333334, + "be": 1.75, + "sample": 1, + "white": 1, + "check": 1, + "mark": 1, + "external": 1, + "hacktoberfest": 1, + "lang-dart": 1, + "framework": 1, + "icon": 1, + "grant": 1, + "needs-research": 1, + "cybersec": 1, + "biz": 1, + "internationalization": 1, + "utility-lib": 1, + "qa": 1, + "do": 0.014467592592592603, + "not": 3.515625, + "merge": 3.515625, + "hacked": 1, + "how-to": 1, + "beginner-friendly": 1, + "trello": 1, + "os": 1, + "sound": 1, + "docs": 1, + "improvement": 1, + "heavy": 1, + "plus": 1, + "sign": 1, + "request": 1, + "glitch": 1, + "cx": 1, + "inquiry": 1, + "deno": 1, + "area": 1, + "crash": 1, + "camera": 1, + "wip": 1, + "configure": 1, + "dom": 1, + "programming": 1, + "font-face": 1, + "rgba": 1, + "parser-specific": 1, + "wikipedia": 1, + "shell": 1, + "tryout": 1, + "thought": 1, + "analysis": 1, + "contenu": 1, + "cli": 1, + "fund": 1, + "investigation": 1, + "basecamp": 1, + "literature": 1, + "socket": 1, + "io": 1, + "client": 1.7999999999999998, + "fiscal": 1, + "user": 1, + "debug": 1, + "information": 1, + "frontend": 1, + "upstream": 1, + "raising": 1, + "hand": 1, + "style": 1, + "motif": 1, + "event": 2, + "help": 2, + "wanted": 2, + "priority": 1, + "medium": 1, + "financial": 1, + "ruby": 1, + "es": 1, + "warrant": 1, + "cancelled": 1, + "plan": 1, + "hackathon": 1, + "beginner": 1, + "typography": 1, + "counsel": 1, + "recording": 1, + "crowdin": 1, + "easy": 1, + "conference": 1, + "great": 1, + "insight": 1, + "phd": 1, + "orange": 1, + "invalid": 1, + "x": 1, + "changelog": 1, + "e-cypress": 1, + "lipstick": 1, + "-": 2, + "backdoor": 1, + "approved": 1, + "talk": 1, + "subtitle": 1, + "research": 1, + "interface": 1, + "critical": 1, + "privacy": 1, + "tests": 1, + "boom": 1, + "web": 1, + "app": 1.7999999999999998, + "television": 1, + "uat": 1, + "backer": 1, + "exploit": 1, + "requires": 1, + "travis-yml": 1, + "node": 1, + "dev": 1, + "experience": 2, + "fix": 1, + "backend": 1, + "cleaning": 1, + "internal": 1.7999999999999998, + "house": 1, + "weekly-digest": 1, + "shallow": 1, + "renderer": 1, + "commerce": 1, + "ie": 2.25, + "hsl": 1, + "left": 1, + "out": 1, + "welcome": 1, + "opinions": 1, + "documents": 1, + "grafana": 1, + "react": 1, + "native": 1, + "lang-go": 1, + "tutorial": 1, + "plugin": 1, + "logo": 1, + "refactoring": 1, + "safari": 1, + "saltstack": 1, + "available": 1, + "server": 1, + "rendering": 1, + "htmlfile": 1, + "theorem": 1, + "social": 1, + "internationalisation": 1, + "enquire": 1, + "packaging": 1, + "lang-r": 1, + "regression": 2.25, + "container": 1, + "opencollective": 1, + "report": 1, + "clickup": 1, + "installer": 1, + "statement": 1, + "gcp": 1, + "opinion": 1, + "accepted": 1, + "html": 1, + "a": 1.7999999999999998, + "y": 1, + "general": 1, + "js": 1, + "unit": 1, + "speak": 1, + "brainstorming": 1, + "language": 1, + "bugfix": 1, + "k": 1, + "s": 1, + "scrum": 1, + "paper": 1, + "library": 1, + "stale": 1, + "optimization": 1, + "show": 1, + "apple": 1, + "low": 1, + "functions": 1, + "gnu": 1, + "linux": 2.25, + "focus": 1, + "groups": 1, + "bootstrap": 1, + "usability": 1, + "*nix": 1, + "externs": 1, + "critique": 1, + "prince": 1, + "demonstration": 1, + "memo": 1, + "revisitinfuture": 1, + "tips": 1, + "reference": 1, + "high": 1, + "bug-report": 1, + "babel": 1, + "flashsocket": 1, + "unix": 1, + "npm": 1, + "adapter": 1, + "slides": 1, + "query": 1, + "chat": 1, + "major": 1, + "alpha": 1, + "lock": 1, + "security": 1, + "newsletter": 1, + "verification": 1, + "color": 1, + "containerd": 1, + "sentry": 1, + "dissertation": 1, + "mentoring": 1, + "confer": 1, + "infosec": 1, + "vulnerability": 1, + "has": 1, + "code": 1, + "teaching": 1, + "protection": 1, + "robot": 1, + "android": 1, + "webaim": 1, + "wontfix": 1, + "triage": 2.25, + "contribution": 1, + "macos": 1, + "assertion": 1, + "blog": 1, + "progress": 1, + "future": 1, + "architecture": 1, + "enhancements": 1, + "pmi": 1, + "promotion": 1, + "validation": 1, + "art": 1, + "film": 1, + "bitbucket": 1, + "cloud": 1, + "python": 1, + "suggestion": 1, + "crypto": 1, + "attitudinal": 1, + "electron": 1, + "trial": 1, + "example": 1.7999999999999998, + "resolution": 1, + "redirect": 1, + "assessment": 1, + "css": 1, + "hack": 1, + "translation": 1, + "opportunity": 1, + "vultr": 1, + "kubernetes": 1, + "wiki": 1, + "parser": 1, + "pwa": 1, + "iphone": 1, + "program": 1, + "finding": 1, + "digital": 1, + "ocean": 1, + "safeguard": 1, + "iac": 1, + "javascript": 1, + "integration": 1, + "glo": 1, + "porting": 1, + "on": 2, + "hold": 2, + "evaluation": 1, + "go": 1.7999999999999998, + "must-triage": 1, + "gradle": 1, + "accessibility": 1, + "work": 1, + "other": 1, + "wrangling": 1, + "sast": 1, + "entry": 1, + "fault": 1, + "problem": 1, + "brand": 1, + "internal-issue-created": 1, + "pmp": 1, + "bdd": 1, + "checkpoint": 1, + "csharp": 1, + "unreviewed": 1, + "idea": 1, + "feedback": 1, + "requested": 1, + "wcag": 1, + "bugs": 1, + "mentor": 1, + "economics": 1, + "lib": 1, + "puppet": 1, + "speech": 1.7999999999999998, + "balloon": 1.7999999999999998, + "sendgrid": 0.052734375, + "lint": 0.0625, + "multi": 0.11111111111111113, + "module": 0.11111111111111113, + "update": 0.0016093254089355469, + "c": 2, + "c++": 2, + "bulb": 23.174285888671875, + "prometheus": 2.25, + "rocket": 2, + "discuss": 1.7999999999999998, + "doc": 14.83154296875, + "blogs": 2.25, + "unit-mocha": 2, + "enterprise": 2.25, + "scheduler": 2, + "class": 1.875, + "fields": 1.875, + "commercial": 2.25, + "infra": 2.25, + "terraform": 2.25, + "figure": 2.25, + "layout": 2.25, + "specification": 2.25, + "vector": 1, + "greenkeeper": 2.25, + "tdd": 2.25, + "raster": 1, + "mishap": 2.25, + "sketch": 2.25, + "released": 2.25, + "font": 1, + "deployment": 2, + "e-nightwatch": 1, + "engine": 2, + "vulns": 2, + "syntax": 1, + "deliverable": 1, + "manual": 1, + "osx": 1, + "axe": 1, + "operating": 2, + "system": 2, + "advance": 1, + "workflow": 1, + "safety": 1, + "phonetic": 1, + "concept": 1, + "lerna": 1, + "readme": 1, + "music": 1, + "failing": 1, + "customer": 2, + "extension": 1, + "optimizing": 1, + "compiler": 1, + "css-select": 1, + "figma": 1, + "finance": 1, + "closed": 3.2399999999999993, + "due": 3.2399999999999993, + "inactivity": 3.2399999999999993, + "jira": 1, + "survey": 1, + "behavioral": 1, + "mixing": 1, + "backlog": 2, + "present": 1, + "modules": 1, + "lang-julia": 1, + "vuln": 1, + "demo": 1, + "corporate": 2, + "spam": 1, + "handshakes": 1, + "platform": 1, + "wave": 1, + "ansible": 1, + "lang-convert": 1, + "gdpr": 1, + "classes": 1, + "websocket": 1, + "speach": 1, + "b": 1, + "chef": 1, + "patreon": 1, + "reviewed-changes-requested": 1, + "youtube": 1, + "(legacy)": 1, + "mentorship": 1, + "typescript": 1, + "didactic": 1, + "story": 1, + "academia": 1 + }, + "positive_weights_sum": {}, + "negative_weights_sum": {} + }, + "null": { + "positive_weights": { + "confirmed": 22.78125, + "bias": 3.906946458946221e-74, + "need-info": 22.78125, + "good": 1.303553581237793, + "first": 24.71923828125, + "issue": 0.9155273437500004, + "abandoned": 22.78125, + "pr": 3.0754687500000015, + "merged": 32, + "difficulty": 16, + "hard": 16, + "blocked": 22.78125, + "reminder": 22.78125, + "status": 12.656249999999998, + "review": 0.8333333333333336, + "needed": 8.888888888888893, + "in": 16, + "reviewed-approved": 16, + "writer-needed": 10.125, + "cannot": 8, + "reproduce": 8, + "support": 11.403486728668213, + "first-timers-only": 10.125, + "ready": 7.199999999999999, + "for": 11.663999999999996, + "deploy": 3.5999999999999996, + "conflicts": 10.125, + "planned": 2.1599999999999997, + "next": 0.72, + "release": 5.183999999999999, + "unconfirmed": 10.125, + "type": 0.057935714721679715, + "duplicate": 15.8203125, + "repeat": 7.03125, + "cla": 8, + "signed": 8, + "needs": 26.999999999999996, + "repro": 4, + "to": 0.48000000000000004, + "be": 2, + "needs-research": 10.125, + "do": 0.2604166666666668, + "not": 7.03125, + "merge": 14.0625, + "beginner-friendly": 10.125, + "wip": 16, + "test": 0.5925925925925928, + "docs": 0.5, + "upstream": 6.407226562500002, + "help": 8, + "wanted": 8, + "priority": 16, + "medium": 4, + "cmty": 0.4166666666666668, + "cancelled": 3.75, + "easy": 2, + "invalid": 7.03125, + "x": 7.03125, + "changelog": 2, + "-": 8, + "approved": 10.125, + "critical": 10.125, + "left": 2, + "out": 2, + "welcome": 16, + "available": 2, + "accepted": 10.125, + "stale": 10.125, + "low": 4, + "high": 4, + "major": 10.125, + "alpha": 4, + "has": 8, + "code": 2, + "request": 0.8333333333333334, + "wontfix": 10.125, + "triage": 22.78125, + "contribution": 4, + "progress": 2, + "resolution": 3.75, + "redirect": 3.75, + "a": 1.2, + "example": 0.18984374999999998, + "app": 1.2, + "on": 8, + "hold": 8, + "hacktoberfest": 0.5, + "must-triage": 10.125, + "work": 2, + "unreviewed": 8, + "browser": 0.13888888888888892, + "testing": 0.18750000000000006, + "feedback": 8, + "requested": 8, + "component": 0.31640625, + "developer": 0.28125, + "tools": 0.28125, + "inspiration": 0.03125, + "business": 0.6666666666666667, + "process": 0.6666666666666667, + "sustain": 0.5, + "question": 0.09375, + "grey": 0.28125, + "sustenance": 0.5, + "kind": 0.6666666666666667, + "discussion": 0.6666666666666667, + "palette": 0.5, + "azure": 0.6666666666666667, + "ad": 0.6666666666666667, + "data": 0.6666666666666667, + "collection": 0.6666666666666667, + "external-bugs": 0.5, + "deal": 0.5, + "hacking": 0.5, + "video": 0.5, + "utils": 0.75, + "hsv": 0.5, + "thesis": 0.5, + "pentesting": 0.5, + "design": 0.5, + "website": 0.6666666666666667, + "copy": 0.6666666666666667, + "bug": 0.08333333333333334, + "guide": 0.5, + "meetup!": 0.22222222222222227, + "feat": 0.25, + "ui": 0.6666666666666667, + "mastering": 0.5, + "steps": 0.5, + "badges": 0.5, + "sponsor": 0.5, + "assess": 0.5, + "vlog": 0.5, + "acceptance": 0.6666666666666667, + "hot": 2, + "tv": 0.5, + "soundtrack": 0.5, + "(category)": 2, + "ci": 0.6666666666666667, + "cd": 0.6666666666666667, + "multi-cloud": 0.5, + "funding": 0.6666666666666667, + "finder": 0.6666666666666667, + "documentation": 0.6666666666666667, + "book": 0.6666666666666667, + "diary": 0.5, + "standard": 0.5, + "colour": 0.5, + "computer": 0.6666666666666667, + "desktop": 0.6666666666666667, + "flaw": 0.5, + "reliability": 0.5, + "cli-service": 0.75, + "build": 0.75, + "maintenance": 0.75, + "construction": 0.75, + "ios": 0.5, + "feature": 0.27777777777777785, + "feature-request": 0.6666666666666667, + "rfc": 0.5, + "image": 0.5, + "stock": 0.5, + "lang-crystal": 0.5, + "breaking": 0.10546875, + "change": 0.03955078125, + "phone": 0.5, + "refactor": 0.5, + "monologue": 0.5, + "new": 0.10546875, + "best": 0.75, + "practice": 0.75, + "lecture": 0.5, + "backing": 0.5, + "aws": 0.5, + "polish": 0.32000000000000006, + "nail": 0.32000000000000006, + "care": 0.32000000000000006, + "article": 0.5, + "peer-review": 0.5, + "eventstorming": 0.5, + "freemasonry": 0.6666666666666667, + "icons": 0.6666666666666667, + "lean": 0.5, + "paas": 0.5, + "net": 0.6666666666666667, + "core": 0.6666666666666667, + "wiretap": 0.5, + "unit-jest": 2, + "instruction": 0.5, + "infrastructure": 0.5, + "rgb": 0.5, + "ideas": 0.5, + "target": 0.6666666666666667, + "windows": 0.6666666666666667, + "call": 2, + "iconography": 0.5, + "promote": 0.5, + "template": 0.5, + "java": 0.5, + "cdn": 0.5, + "dependency": 0.28125, + "troubleshooting": 0.5, + "spec": 0.28125, + "bigint": 2, + "async": 0.75, + "generators": 0.75, + "proposal": 0.6666666666666667, + "e": 0.22222222222222227, + "approachability": 0.5, + "investment": 0.5, + "optimisation": 0.5, + "kotlin": 0.5, + "devops": 0.6666666666666667, + "defend": 0.6666666666666667, + "blogging": 0.5, + "friendliness": 0.5, + "i": 0.6666666666666667, + "n": 0.6666666666666667, + "icebox": 0.5, + "meetup": 0.5, + "examination": 0.5, + "mobile": 0.10546875, + "device": 0.10546875, + "api": 2, + "decorators": 2, + "addon": 0.5, + "cracking": 0.5, + "sparkles": 0.6666666666666667, + "enhancement": 0.6666666666666667, + "hooks": 2, + "improved": 0.75, + "error": 0.75, + "handling": 0.75, + "upkeep": 0.5, + "reactis": 2, + "sample": 0.5, + "white": 0.8, + "check": 0.8, + "mark": 0.8, + "external": 0.5, + "lang-dart": 0.5, + "framework": 2, + "icon": 0.5, + "grant": 2, + "cybersec": 0.5, + "biz": 0.5, + "internationalization": 0.5, + "utility-lib": 0.5, + "qa": 0.5, + "hacked": 0.5, + "how-to": 0.5, + "trello": 0.5, + "os": 0.5, + "sound": 0.5, + "improvement": 0.6666666666666667, + "heavy": 0.8333333333333334, + "plus": 0.8333333333333334, + "sign": 0.8333333333333334, + "glitch": 0.5, + "cx": 0.5, + "dependencies": 0.5, + "inquiry": 0.5, + "deno": 0.5, + "area": 0.6666666666666667, + "crash": 0.6666666666666667, + "camera": 0.5, + "configure": 2, + "dom": 2, + "programming": 2, + "font-face": 2, + "rgba": 2, + "parser-specific": 2, + "wikipedia": 2, + "shell": 2, + "contributions": 2, + "tryout": 2, + "thought": 2, + "analysis": 2, + "contenu": 2, + "cli": 2, + "fund": 0.6666666666666667, + "investigation": 0.6666666666666667, + "basecamp": 2, + "literature": 0.22222222222222227, + "socket": 2, + "io": 2, + "client": 0.8, + "fiscal": 2, + "user": 0.75, + "debug": 0.6666666666666667, + "information": 0.6666666666666667, + "frontend": 2, + "raising": 2, + "hand": 2, + "style": 2, + "clean": 2, + "up": 2, + "motif": 2, + "event": 0.6666666666666667, + "financial": 2, + "ruby": 2, + "es": 2, + "warrant": 2, + "plan": 2, + "hackathon": 2, + "beginner": 2, + "typography": 2, + "counsel": 2, + "recording": 2, + "crowdin": 2, + "eslint": 2, + "rules": 2, + "repare": 2, + "conference": 2, + "great": 2, + "insight": 2, + "phd": 2, + "orange": 2, + "e-cypress": 2, + "lipstick": 2, + "backdoor": 2, + "talk": 2, + "subtitle": 2, + "research": 2, + "todo": 0.75, + "spiral": 0.75, + "notepad": 0.75, + "interface": 2, + "privacy": 2, + "tests": 2, + "boom": 2, + "web": 0.6666666666666667, + "television": 2, + "uat": 2, + "backer": 2, + "exploit": 2, + "requires": 0.75, + "travis-yml": 2, + "node": 2, + "dev": 2, + "experience": 0.6666666666666667, + "fix": 0.75, + "backend": 2, + "cleaning": 2, + "internal": 0.2666666666666667, + "house": 2, + "technical": 0.6666666666666667, + "debt": 0.6666666666666667, + "weekly-digest": 2, + "shallow": 2, + "renderer": 2, + "commerce": 2, + "ie": 0.5, + "hsl": 2, + "opinions": 0.0740740740740741, + "documents": 2, + "legacy": 2, + "grafana": 2, + "react": 2, + "native": 2, + "lang-go": 2, + "tutorial": 2, + "plugin": 2, + "logo": 2, + "refactoring": 2, + "safari": 2, + "saltstack": 2, + "server": 2, + "rendering": 2, + "htmlfile": 2, + "theorem": 2, + "social": 2, + "internationalisation": 2, + "definition": 2, + "enquire": 2, + "packaging": 2, + "lang-r": 2, + "regression": 0.5, + "container": 2, + "opencollective": 2, + "report": 2, + "performance": 0.5, + "clickup": 2, + "installer": 2, + "statement": 2, + "gcp": 2, + "opinion": 2, + "html": 2, + "y": 0.6666666666666667, + "general": 2, + "js": 2, + "unit": 0.6666666666666667, + "speak": 2, + "brainstorming": 2, + "backup": 2, + "language": 2, + "bugfix": 2, + "k": 2, + "s": 2, + "scrum": 2, + "paper": 2, + "library": 2, + "optimization": 2, + "show": 2, + "apple": 2, + "functions": 2, + "gnu": 2, + "linux": 0.5, + "focus": 2, + "groups": 2, + "dependency-update": 2, + "related": 2, + "bootstrap": 2, + "usability": 2, + "*nix": 2, + "externs": 2, + "critique": 2, + "prince": 2, + "demonstration": 2, + "⬆️": 2, + "memo": 0.75, + "revisitinfuture": 2, + "tips": 2, + "reference": 2, + "bug-report": 2, + "babel": 2, + "flashsocket": 2, + "unix": 2, + "npm": 2, + "site": 2, + "chore": 2, + "adapter": 2, + "slides": 2, + "query": 2, + "chat": 2, + "lock": 2, + "security": 0.6666666666666667, + "newsletter": 2, + "verification": 2, + "color": 2, + "containerd": 2, + "doughnut": 2, + "sentry": 2, + "dissertation": 2, + "mentoring": 2, + "confer": 2, + "utilities": 2, + "infosec": 2, + "vulnerability": 2, + "teaching": 2, + "protection": 2, + "robot": 2, + "android": 2, + "webaim": 2, + "macos": 2, + "assertion": 2, + "blog": 2, + "future": 0.75, + "architecture": 0.75, + "enhancements": 0.75, + "pmi": 2, + "promotion": 2, + "validation": 2, + "art": 2, + "film": 2, + "bitbucket": 2, + "cloud": 2, + "labour": 2, + "python": 2, + "suggestion": 2, + "crypto": 2, + "attitudinal": 2, + "electron": 2, + "trial": 2, + "assessment": 2, + "monitor": 2, + "css": 2, + "hack": 2, + "translation": 2, + "opportunity": 2, + "vultr": 2, + "kubernetes": 2, + "wiki": 2, + "parser": 2, + "pwa": 2, + "iphone": 2, + "program": 2, + "finding": 2, + "digital": 2, + "ocean": 2, + "safeguard": 2, + "iac": 2, + "javascript": 2, + "integration": 0.6666666666666667, + "glo": 2, + "porting": 2, + "evaluation": 2, + "go": 0.8, + "gradle": 2, + "accessibility": 2, + "other": 2, + "wrangling": 2, + "sast": 2, + "tech-debt": 2, + "entry": 2, + "fault": 2, + "problem": 2, + "brand": 2, + "internal-issue-created": 2, + "pmp": 2, + "bdd": 2, + "checkpoint": 2, + "csharp": 2, + "idea": 2, + "wcag": 2, + "bugs": 2, + "mentor": 2, + "economics": 2, + "lib": 2, + "puppet": 2, + "speech": 0.8, + "balloon": 0.8, + "scheduler": 16, + "released": 22.78125, + "failing": 2, + "closed": 6.479999999999999, + "due": 6.479999999999999, + "inactivity": 6.479999999999999, + "backlog": 4, + "spam": 10.125, + "reviewed-changes-requested": 16, + "c": 0.6666666666666667, + "c++": 0.6666666666666667, + "bulb": 0.6666666666666667, + "prometheus": 0.5, + "rocket": 0.6666666666666667, + "discuss": 0.8, + "doc": 0.5, + "blogs": 0.5, + "unit-mocha": 2, + "enterprise": 0.5, + "class": 0.75, + "fields": 0.75, + "commercial": 0.5, + "infra": 0.5, + "terraform": 0.5, + "figure": 0.5, + "layout": 0.5, + "specification": 0.5, + "vector": 2, + "greenkeeper": 0.5, + "tdd": 0.5, + "raster": 2, + "mishap": 0.5, + "sketch": 0.5, + "font": 2, + "deployment": 0.6666666666666667, + "e-nightwatch": 2, + "engine": 0.6666666666666667, + "vulns": 0.6666666666666667, + "syntax": 2, + "deliverable": 0.5, + "manual": 0.5, + "osx": 2, + "axe": 0.5, + "sendgrid": 2, + "operating": 0.6666666666666667, + "system": 0.6666666666666667, + "advance": 2, + "workflow": 2, + "safety": 0.5, + "phonetic": 0.5, + "concept": 0.5, + "lerna": 0.5, + "readme": 0.5, + "music": 0.5, + "customer": 0.6666666666666667, + "extension": 0.5, + "lint": 0.5, + "optimizing": 0.75, + "compiler": 0.75, + "css-select": 0.5, + "figma": 0.5, + "finance": 0.5, + "jira": 0.5, + "survey": 0.5, + "behavioral": 0.75, + "multi": 0.6666666666666667, + "module": 0.6666666666666667, + "mixing": 2, + "update": 2, + "present": 2, + "modules": 2, + "lang-julia": 2, + "vuln": 2, + "demo": 2, + "corporate": 0.6666666666666667, + "handshakes": 2, + "platform": 2, + "wave": 2, + "ansible": 2, + "lang-convert": 2, + "gdpr": 2, + "classes": 2, + "websocket": 2, + "speach": 2, + "b": 2, + "chef": 2, + "patreon": 2, + "youtube": 2, + "(legacy)": 2, + "mentorship": 2, + "typescript": 2, + "didactic": 2, + "story": 2, + "academia": 2 + }, + "negative_weights": { + "confirmed": 0.015625, + "bias": 2.1254941793247384, + "need-info": 0.015625, + "good": 0.1303553581237793, + "first": 0.019775390625, + "issue": 0.158203125, + "abandoned": 0.015625, + "pr": 0.0000029942212404047103, + "merged": 0.012345679012345684, + "difficulty": 0.03703703703703705, + "hard": 0.03703703703703705, + "blocked": 0.015625, + "reminder": 0.015625, + "status": 0.05625000000000001, + "review": 0.12500000000000003, + "needed": 0.004115226337448562, + "in": 0.03703703703703705, + "reviewed-approved": 0.03703703703703705, + "writer-needed": 0.0625, + "cannot": 0.11111111111111113, + "reproduce": 0.11111111111111113, + "support": 0.0024139881134033203, + "first-timers-only": 0.0625, + "ready": 0.13333333333333336, + "for": 0.06400000000000002, + "deploy": 0.4, + "conflicts": 0.0625, + "planned": 0.32000000000000006, + "next": 0.6400000000000001, + "release": 0.09600000000000002, + "unconfirmed": 0.0625, + "type": 0.9385585784912108, + "duplicate": 0.03515625, + "repeat": 0.140625, + "cla": 0.11111111111111113, + "signed": 0.11111111111111113, + "needs": 0.01666666666666667, + "repro": 0.33333333333333337, + "to": 0.42666666666666675, + "be": 1, + "needs-research": 0.0625, + "do": 1.125, + "not": 0.140625, + "merge": 0.046875, + "beginner-friendly": 0.0625, + "wip": 0.03703703703703705, + "test": 0.041152263374485624, + "docs": 1.2500000000000002, + "upstream": 0.0146484375, + "help": 0.11111111111111113, + "wanted": 0.11111111111111113, + "priority": 0.03703703703703705, + "medium": 0.33333333333333337, + "cmty": 1.5, + "cancelled": 0.375, + "easy": 1, + "invalid": 0.140625, + "x": 0.140625, + "changelog": 1, + "-": 0.11111111111111113, + "approved": 0.0625, + "critical": 0.0625, + "left": 1, + "out": 1, + "welcome": 0.03703703703703705, + "available": 1, + "accepted": 0.0625, + "stale": 0.0625, + "low": 0.33333333333333337, + "high": 0.33333333333333337, + "major": 0.0625, + "alpha": 0.33333333333333337, + "has": 0.11111111111111113, + "code": 1, + "request": 1.75, + "wontfix": 0.0625, + "triage": 0.015625, + "contribution": 0.33333333333333337, + "progress": 1, + "resolution": 0.375, + "redirect": 0.375, + "a": 0.8, + "example": 2.63671875, + "app": 0.8, + "on": 0.11111111111111113, + "hold": 0.11111111111111113, + "hacktoberfest": 2.25, + "must-triage": 0.0625, + "work": 1, + "unreviewed": 0.11111111111111113, + "browser": 3, + "testing": 2.5312499999999996, + "feedback": 0.11111111111111113, + "requested": 0.11111111111111113, + "component": 0.4577636718750002, + "developer": 3.515625, + "tools": 3.515625, + "inspiration": 11.390625, + "business": 2, + "process": 2, + "sustain": 2.25, + "question": 7.03125, + "grey": 3.515625, + "sustenance": 2.25, + "kind": 2, + "discussion": 2, + "palette": 2.25, + "azure": 2, + "ad": 2, + "data": 2, + "collection": 2, + "external-bugs": 2.25, + "deal": 2.25, + "hacking": 2.25, + "video": 2.25, + "utils": 1.875, + "hsv": 2.25, + "thesis": 2.25, + "pentesting": 2.25, + "design": 2.25, + "website": 2, + "copy": 2, + "bug": 7.5, + "guide": 2.25, + "meetup!": 4, + "feat": 3.75, + "ui": 2, + "mastering": 2.25, + "steps": 2.25, + "badges": 2.25, + "sponsor": 2.25, + "assess": 2.25, + "vlog": 2.25, + "acceptance": 2, + "hot": 1, + "tv": 2.25, + "soundtrack": 2.25, + "(category)": 1, + "ci": 2, + "cd": 2, + "multi-cloud": 2.25, + "funding": 2, + "finder": 2, + "documentation": 2, + "book": 2, + "diary": 2.25, + "standard": 2.25, + "colour": 2.25, + "computer": 2, + "desktop": 2, + "flaw": 2.25, + "reliability": 2.25, + "cli-service": 1.875, + "build": 1.875, + "maintenance": 1.875, + "construction": 1.875, + "ios": 2.25, + "feature": 3.5, + "feature-request": 2, + "rfc": 2.25, + "image": 2.25, + "stock": 2.25, + "lang-crystal": 2.25, + "breaking": 6.591796875, + "change": 12.359619140625, + "phone": 2.25, + "refactor": 2.25, + "monologue": 2.25, + "new": 6.591796875, + "best": 1.875, + "practice": 1.875, + "lecture": 2.25, + "backing": 2.25, + "aws": 2.25, + "polish": 3.2399999999999993, + "nail": 3.2399999999999993, + "care": 3.2399999999999993, + "article": 2.25, + "peer-review": 2.25, + "eventstorming": 2.25, + "freemasonry": 2, + "icons": 2, + "lean": 2.25, + "paas": 2.25, + "net": 2, + "core": 2, + "wiretap": 2.25, + "unit-jest": 1, + "instruction": 2.25, + "infrastructure": 2.25, + "rgb": 2.25, + "ideas": 2.25, + "target": 2, + "windows": 2, + "call": 1, + "iconography": 2.25, + "promote": 2.25, + "template": 2.25, + "java": 2.25, + "cdn": 2.25, + "dependency": 3.515625, + "troubleshooting": 2.25, + "spec": 3.515625, + "bigint": 1, + "async": 1.875, + "generators": 1.875, + "proposal": 2, + "e": 4, + "approachability": 2.25, + "investment": 2.25, + "optimisation": 2.25, + "kotlin": 2.25, + "devops": 2, + "defend": 2, + "blogging": 2.25, + "friendliness": 2.25, + "i": 2, + "n": 2, + "icebox": 2.25, + "meetup": 2.25, + "examination": 2.25, + "mobile": 6.591796875, + "device": 6.591796875, + "api": 1, + "decorators": 1, + "addon": 2.25, + "cracking": 2.25, + "sparkles": 2, + "enhancement": 2, + "hooks": 1, + "improved": 1.875, + "error": 1.875, + "handling": 1.875, + "upkeep": 2.25, + "reactis": 1, + "sample": 2.25, + "white": 1.7999999999999998, + "check": 1.7999999999999998, + "mark": 1.7999999999999998, + "external": 2.25, + "lang-dart": 2.25, + "framework": 1, + "icon": 2.25, + "grant": 1, + "cybersec": 2.25, + "biz": 2.25, + "internationalization": 2.25, + "utility-lib": 2.25, + "qa": 2.25, + "hacked": 2.25, + "how-to": 2.25, + "trello": 2.25, + "os": 2.25, + "sound": 2.25, + "improvement": 2, + "heavy": 1.75, + "plus": 1.75, + "sign": 1.75, + "glitch": 2.25, + "cx": 2.25, + "dependencies": 2.25, + "inquiry": 2.25, + "deno": 2.25, + "area": 2, + "crash": 2, + "camera": 2.25, + "configure": 1, + "dom": 1, + "programming": 1, + "font-face": 1, + "rgba": 1, + "parser-specific": 1, + "wikipedia": 1, + "shell": 1, + "contributions": 1, + "tryout": 1, + "thought": 1, + "analysis": 1, + "contenu": 1, + "cli": 1, + "fund": 2, + "investigation": 2, + "basecamp": 1, + "literature": 4, + "socket": 1, + "io": 1, + "client": 1.7999999999999998, + "fiscal": 1, + "user": 1.875, + "debug": 2, + "information": 2, + "frontend": 1, + "raising": 1, + "hand": 1, + "style": 1, + "clean": 1, + "up": 1, + "motif": 1, + "event": 2, + "financial": 1, + "ruby": 1, + "es": 1, + "warrant": 1, + "plan": 1, + "hackathon": 1, + "beginner": 1, + "typography": 1, + "counsel": 1, + "recording": 1, + "crowdin": 1, + "eslint": 1, + "rules": 1, + "repare": 1, + "conference": 1, + "great": 1, + "insight": 1, + "phd": 1, + "orange": 1, + "e-cypress": 1, + "lipstick": 1, + "backdoor": 1, + "talk": 1, + "subtitle": 1, + "research": 1, + "todo": 1.875, + "spiral": 1.875, + "notepad": 1.875, + "interface": 1, + "privacy": 1, + "tests": 1, + "boom": 1, + "web": 2, + "television": 1, + "uat": 1, + "backer": 1, + "exploit": 1, + "requires": 1.875, + "travis-yml": 1, + "node": 1, + "dev": 1, + "experience": 2, + "fix": 1.875, + "backend": 1, + "cleaning": 1, + "internal": 3.5999999999999996, + "house": 1, + "technical": 2, + "debt": 2, + "weekly-digest": 1, + "shallow": 1, + "renderer": 1, + "commerce": 1, + "ie": 2.25, + "hsl": 1, + "opinions": 8, + "documents": 1, + "legacy": 1, + "grafana": 1, + "react": 1, + "native": 1, + "lang-go": 1, + "tutorial": 1, + "plugin": 1, + "logo": 1, + "refactoring": 1, + "safari": 1, + "saltstack": 1, + "server": 1, + "rendering": 1, + "htmlfile": 1, + "theorem": 1, + "social": 1, + "internationalisation": 1, + "definition": 1, + "enquire": 1, + "packaging": 1, + "lang-r": 1, + "regression": 2.25, + "container": 1, + "opencollective": 1, + "report": 1, + "performance": 2.25, + "clickup": 1, + "installer": 1, + "statement": 1, + "gcp": 1, + "opinion": 1, + "html": 1, + "y": 2, + "general": 1, + "js": 1, + "unit": 2, + "speak": 1, + "brainstorming": 1, + "backup": 1, + "language": 1, + "bugfix": 1, + "k": 1, + "s": 1, + "scrum": 1, + "paper": 1, + "library": 1, + "optimization": 1, + "show": 1, + "apple": 1, + "functions": 1, + "gnu": 1, + "linux": 2.25, + "focus": 1, + "groups": 1, + "dependency-update": 1, + "related": 1, + "bootstrap": 1, + "usability": 1, + "*nix": 1, + "externs": 1, + "critique": 1, + "prince": 1, + "demonstration": 1, + "⬆️": 1, + "memo": 1.875, + "revisitinfuture": 1, + "tips": 1, + "reference": 1, + "bug-report": 1, + "babel": 1, + "flashsocket": 1, + "unix": 1, + "npm": 1, + "site": 1, + "chore": 1, + "adapter": 1, + "slides": 1, + "query": 1, + "chat": 1, + "lock": 1, + "security": 2, + "newsletter": 1, + "verification": 1, + "color": 1, + "containerd": 1, + "doughnut": 1, + "sentry": 1, + "dissertation": 1, + "mentoring": 1, + "confer": 1, + "utilities": 1, + "infosec": 1, + "vulnerability": 1, + "teaching": 1, + "protection": 1, + "robot": 1, + "android": 1, + "webaim": 1, + "macos": 1, + "assertion": 1, + "blog": 1, + "future": 1.875, + "architecture": 1.875, + "enhancements": 1.875, + "pmi": 1, + "promotion": 1, + "validation": 1, + "art": 1, + "film": 1, + "bitbucket": 1, + "cloud": 1, + "labour": 1, + "python": 1, + "suggestion": 1, + "crypto": 1, + "attitudinal": 1, + "electron": 1, + "trial": 1, + "assessment": 1, + "monitor": 1, + "css": 1, + "hack": 1, + "translation": 1, + "opportunity": 1, + "vultr": 1, + "kubernetes": 1, + "wiki": 1, + "parser": 1, + "pwa": 1, + "iphone": 1, + "program": 1, + "finding": 1, + "digital": 1, + "ocean": 1, + "safeguard": 1, + "iac": 1, + "javascript": 1, + "integration": 2, + "glo": 1, + "porting": 1, + "evaluation": 1, + "go": 1.7999999999999998, + "gradle": 1, + "accessibility": 1, + "other": 1, + "wrangling": 1, + "sast": 1, + "tech-debt": 1, + "entry": 1, + "fault": 1, + "problem": 1, + "brand": 1, + "internal-issue-created": 1, + "pmp": 1, + "bdd": 1, + "checkpoint": 1, + "csharp": 1, + "idea": 1, + "wcag": 1, + "bugs": 1, + "mentor": 1, + "economics": 1, + "lib": 1, + "puppet": 1, + "speech": 1.7999999999999998, + "balloon": 1.7999999999999998, + "scheduler": 0.03703703703703705, + "released": 0.015625, + "failing": 1, + "closed": 0.16000000000000003, + "due": 0.16000000000000003, + "inactivity": 0.16000000000000003, + "backlog": 0.33333333333333337, + "spam": 0.0625, + "reviewed-changes-requested": 0.03703703703703705, + "c": 2, + "c++": 2, + "bulb": 2, + "prometheus": 2.25, + "rocket": 2, + "discuss": 1.7999999999999998, + "doc": 2.25, + "blogs": 2.25, + "unit-mocha": 1, + "enterprise": 2.25, + "class": 1.875, + "fields": 1.875, + "commercial": 2.25, + "infra": 2.25, + "terraform": 2.25, + "figure": 2.25, + "layout": 2.25, + "specification": 2.25, + "vector": 1, + "greenkeeper": 2.25, + "tdd": 2.25, + "raster": 1, + "mishap": 2.25, + "sketch": 2.25, + "font": 1, + "deployment": 2, + "e-nightwatch": 1, + "engine": 2, + "vulns": 2, + "syntax": 1, + "deliverable": 2.25, + "manual": 2.25, + "osx": 1, + "axe": 2.25, + "sendgrid": 1, + "operating": 2, + "system": 2, + "advance": 1, + "workflow": 1, + "safety": 2.25, + "phonetic": 2.25, + "concept": 2.25, + "lerna": 2.25, + "readme": 2.25, + "music": 2.25, + "customer": 2, + "extension": 2.25, + "lint": 2.25, + "optimizing": 1.875, + "compiler": 1.875, + "css-select": 2.25, + "figma": 2.25, + "finance": 2.25, + "jira": 2.25, + "survey": 2.25, + "behavioral": 1.875, + "multi": 2, + "module": 2, + "mixing": 1, + "update": 1, + "present": 1, + "modules": 1, + "lang-julia": 1, + "vuln": 1, + "demo": 1, + "corporate": 2, + "handshakes": 1, + "platform": 1, + "wave": 1, + "ansible": 1, + "lang-convert": 1, + "gdpr": 1, + "classes": 1, + "websocket": 1, + "speach": 1, + "b": 1, + "chef": 1, + "patreon": 1, + "youtube": 1, + "(legacy)": 1, + "mentorship": 1, + "typescript": 1, + "didactic": 1, + "story": 1, + "academia": 1 + }, + "positive_weights_sum": {}, + "negative_weights_sum": {} + }, + "question": { + "positive_weights": { + "type": 0.8789062500000002, + "question": 28.125, + "grey": 7.03125, + "bias": 3.6876127151863634e-9, + "cmty": 1.3333333333333335, + "kind": 1.3333333333333335, + "inquiry": 22.78125, + "raising": 2, + "hand": 2, + "enquire": 22.78125, + "query": 22.78125, + "speech": 2, + "balloon": 2, + "component": 0.75, + "developer": 0.75, + "tools": 0.75, + "inspiration": 0.5, + "business": 0.6666666666666667, + "process": 0.6666666666666667, + "sustain": 0.5, + "confirmed": 0.5, + "need-info": 0.5, + "sustenance": 0.5, + "good": 0.75, + "first": 0.75, + "issue": 0.75, + "discussion": 0.6666666666666667, + "palette": 0.5, + "azure": 0.6666666666666667, + "ad": 0.6666666666666667, + "data": 0.6666666666666667, + "collection": 0.6666666666666667, + "external-bugs": 0.5, + "deal": 0.5, + "hacking": 0.5, + "video": 2, + "test": 2, + "utils": 2, + "hsv": 2, + "thesis": 2, + "pentesting": 2, + "design": 0.6666666666666667, + "website": 0.6666666666666667, + "copy": 0.6666666666666667, + "bug": 0.6666666666666667, + "guide": 2, + "next": 0.6666666666666667, + "meetup!": 0.6666666666666667, + "feat": 0.75, + "ui": 2, + "mastering": 2, + "steps": 2, + "abandoned": 2, + "badges": 2, + "sponsor": 2, + "assess": 2, + "pr": 0.8333333333333333, + "merged": 0.8333333333333333, + "vlog": 2, + "acceptance": 2, + "testing": 0.8, + "hot": 2, + "tv": 2, + "soundtrack": 2, + "(category)": 0.6666666666666667, + "ci": 0.6666666666666667, + "cd": 0.6666666666666667, + "multi-cloud": 2, + "funding": 2, + "finder": 2, + "difficulty": 2, + "hard": 2, + "documentation": 2, + "book": 2, + "diary": 2, + "standard": 2, + "colour": 2, + "computer": 2, + "desktop": 2, + "flaw": 2, + "reliability": 2, + "cli-service": 0.75, + "build": 0.75, + "blocked": 2, + "maintenance": 0.75, + "construction": 0.75, + "ios": 2, + "planned": 2, + "feature": 0.8333333333333333, + "feature-request": 0.6666666666666667, + "rfc": 2, + "image": 2, + "stock": 2, + "reminder": 2, + "status": 2, + "review": 2, + "needed": 2, + "in": 2, + "lang-crystal": 2, + "breaking": 2, + "change": 2, + "phone": 2, + "refactor": 2, + "monologue": 2, + "reviewed-approved": 2, + "new": 2, + "best": 2, + "practice": 2, + "lecture": 2, + "backing": 2, + "browser": 2, + "aws": 2, + "polish": 2, + "nail": 2, + "care": 2, + "article": 2, + "peer-review": 2, + "writer-needed": 2, + "eventstorming": 2, + "freemasonry": 2, + "icons": 2, + "lean": 2, + "cannot": 2, + "reproduce": 2, + "paas": 2, + "net": 2, + "core": 2, + "wiretap": 2, + "unit-jest": 2, + "instruction": 2, + "infrastructure": 2, + "rgb": 2, + "ideas": 2, + "target": 2, + "windows": 2, + "call": 2, + "iconography": 2, + "promote": 2, + "template": 2, + "support": 2, + "first-timers-only": 2, + "java": 2, + "cdn": 2, + "dependency": 2, + "ready": 0.8333333333333333, + "for": 2, + "deploy": 2, + "troubleshooting": 2, + "spec": 2, + "bigint": 2, + "async": 2, + "generators": 2, + "proposal": 2, + "e": 2, + "approachability": 2, + "investment": 2, + "conflicts": 2, + "optimisation": 2, + "kotlin": 2, + "release": 2, + "unconfirmed": 2, + "duplicate": 2, + "repeat": 2, + "devops": 2, + "defend": 2, + "blogging": 2, + "friendliness": 2, + "i": 2, + "n": 2, + "cla": 2, + "signed": 2, + "icebox": 2, + "meetup": 2, + "examination": 2, + "mobile": 2, + "device": 2, + "api": 2, + "decorators": 2, + "addon": 2, + "cracking": 2, + "sparkles": 2, + "enhancement": 2, + "hooks": 2, + "improved": 2, + "error": 2, + "handling": 2, + "needs": 2, + "repro": 2, + "upkeep": 2, + "reactis": 2, + "to": 0.8333333333333333, + "be": 0.8333333333333333, + "sample": 2, + "white": 0.8, + "check": 0.8, + "mark": 0.8, + "external": 2, + "hacktoberfest": 2, + "lang-dart": 2, + "framework": 2, + "icon": 2, + "grant": 2, + "needs-research": 2, + "cybersec": 2, + "biz": 2, + "internationalization": 2, + "utility-lib": 2, + "qa": 2, + "do": 2, + "not": 2, + "merge": 2, + "hacked": 2, + "how-to": 2, + "beginner-friendly": 2, + "trello": 2, + "os": 2, + "sound": 2, + "docs": 2, + "improvement": 2, + "heavy": 0.8333333333333333, + "plus": 0.8333333333333333, + "sign": 0.8333333333333333, + "request": 0.8333333333333333, + "glitch": 2, + "cx": 2, + "dependencies": 2, + "deno": 2, + "area": 2, + "crash": 2, + "camera": 2, + "wip": 2, + "configure": 2, + "dom": 2, + "programming": 2, + "font-face": 2, + "rgba": 2, + "parser-specific": 2, + "wikipedia": 2, + "shell": 2, + "contributions": 2, + "tryout": 2, + "thought": 2, + "analysis": 2, + "contenu": 2, + "cli": 2, + "fund": 2, + "investigation": 2, + "basecamp": 2, + "literature": 2, + "socket": 2, + "io": 2, + "client": 2, + "fiscal": 2, + "user": 2, + "debug": 2, + "information": 2, + "frontend": 2, + "upstream": 2, + "style": 2, + "clean": 2, + "up": 2, + "motif": 2, + "event": 2, + "help": 2, + "wanted": 2, + "priority": 2, + "medium": 2, + "financial": 2, + "ruby": 2, + "es": 2, + "warrant": 2, + "cancelled": 2, + "plan": 2, + "hackathon": 2, + "beginner": 2, + "typography": 2, + "counsel": 2, + "recording": 2, + "crowdin": 2, + "eslint": 2, + "rules": 2, + "easy": 2, + "repare": 2, + "conference": 2, + "great": 2, + "insight": 2, + "phd": 2, + "orange": 2, + "invalid": 2, + "x": 2, + "changelog": 2, + "e-cypress": 2, + "lipstick": 2, + "-": 2, + "backdoor": 2, + "approved": 2, + "talk": 2, + "subtitle": 2, + "research": 2, + "todo": 2, + "spiral": 2, + "notepad": 2, + "interface": 2, + "critical": 2, + "privacy": 2, + "tests": 2, + "boom": 2, + "web": 2, + "app": 2, + "television": 2, + "uat": 2, + "backer": 2, + "exploit": 2, + "requires": 2, + "travis-yml": 2, + "node": 2, + "dev": 2, + "experience": 2, + "fix": 2, + "backend": 2, + "cleaning": 2, + "internal": 2, + "house": 2, + "technical": 2, + "debt": 2, + "weekly-digest": 2, + "shallow": 2, + "renderer": 2, + "commerce": 2, + "ie": 2, + "hsl": 2, + "left": 2, + "out": 2, + "welcome": 2, + "opinions": 2, + "documents": 2, + "legacy": 2, + "grafana": 2, + "react": 2, + "native": 2, + "lang-go": 2, + "tutorial": 2, + "plugin": 2, + "logo": 2, + "refactoring": 2, + "safari": 2, + "saltstack": 2, + "available": 2, + "server": 2, + "rendering": 2, + "htmlfile": 2, + "theorem": 2, + "social": 2, + "internationalisation": 2, + "definition": 2, + "packaging": 2, + "lang-r": 2, + "regression": 2, + "container": 2, + "opencollective": 2, + "report": 2, + "performance": 2, + "clickup": 2, + "installer": 2, + "statement": 2, + "gcp": 2, + "opinion": 2, + "accepted": 2, + "html": 2, + "a": 2, + "y": 2, + "general": 2, + "js": 2, + "unit": 2, + "speak": 2, + "brainstorming": 2, + "backup": 2, + "language": 2, + "bugfix": 2, + "k": 2, + "s": 2, + "scrum": 2, + "paper": 2, + "library": 2, + "stale": 2, + "optimization": 2, + "show": 2, + "apple": 2, + "low": 2, + "functions": 2, + "gnu": 2, + "linux": 2, + "focus": 2, + "groups": 2, + "dependency-update": 2, + "related": 2, + "bootstrap": 2, + "usability": 2, + "*nix": 2, + "externs": 2, + "critique": 2, + "prince": 2, + "demonstration": 2, + "⬆️": 2, + "memo": 2, + "revisitinfuture": 2, + "tips": 2, + "reference": 2, + "high": 2, + "bug-report": 2, + "babel": 2, + "flashsocket": 2, + "unix": 2, + "npm": 2, + "site": 2, + "chore": 2, + "adapter": 2, + "slides": 2, + "chat": 2, + "major": 2, + "alpha": 2, + "lock": 2, + "security": 2, + "newsletter": 2, + "verification": 2, + "color": 2, + "containerd": 2, + "doughnut": 2, + "sentry": 2, + "dissertation": 2, + "mentoring": 2, + "confer": 2, + "utilities": 2, + "infosec": 2, + "vulnerability": 2, + "has": 2, + "code": 2, + "teaching": 2, + "protection": 2, + "robot": 2, + "android": 2, + "webaim": 2, + "wontfix": 2, + "triage": 2, + "contribution": 2, + "macos": 2, + "assertion": 2, + "blog": 2, + "progress": 2, + "future": 2, + "architecture": 2, + "enhancements": 2, + "pmi": 2, + "promotion": 2, + "validation": 2, + "art": 2, + "film": 2, + "bitbucket": 2, + "cloud": 2, + "labour": 2, + "python": 2, + "suggestion": 2, + "crypto": 2, + "attitudinal": 2, + "electron": 2, + "trial": 2, + "example": 2, + "resolution": 2, + "redirect": 2, + "assessment": 2, + "monitor": 2, + "css": 2, + "hack": 2, + "translation": 2, + "opportunity": 2, + "vultr": 2, + "kubernetes": 2, + "wiki": 2, + "parser": 2, + "pwa": 2, + "iphone": 2, + "program": 2, + "finding": 2, + "digital": 2, + "ocean": 2, + "safeguard": 2, + "iac": 2, + "javascript": 2, + "integration": 2, + "glo": 2, + "porting": 2, + "on": 2, + "hold": 2, + "evaluation": 2, + "go": 2, + "must-triage": 2, + "gradle": 2, + "accessibility": 2, + "work": 2, + "other": 2, + "wrangling": 2, + "sast": 2, + "tech-debt": 2, + "entry": 2, + "fault": 2, + "problem": 2, + "brand": 2, + "internal-issue-created": 2, + "pmp": 2, + "bdd": 2, + "checkpoint": 2, + "csharp": 2, + "unreviewed": 2, + "idea": 2, + "feedback": 2, + "requested": 2, + "wcag": 2, + "bugs": 2, + "mentor": 2, + "economics": 2, + "lib": 2, + "puppet": 2, + "c": 2, + "c++": 2, + "bulb": 2, + "prometheus": 2, + "rocket": 2, + "discuss": 2, + "doc": 2, + "blogs": 2, + "unit-mocha": 2, + "enterprise": 2, + "scheduler": 2, + "class": 2, + "fields": 2, + "commercial": 2, + "infra": 2, + "terraform": 2, + "figure": 2, + "layout": 2, + "specification": 2, + "vector": 2, + "greenkeeper": 2, + "tdd": 2, + "raster": 2, + "mishap": 2, + "sketch": 2, + "released": 2, + "font": 2, + "deployment": 2, + "e-nightwatch": 2, + "engine": 2, + "vulns": 2, + "syntax": 2, + "deliverable": 2, + "manual": 2, + "osx": 2, + "axe": 2, + "sendgrid": 2, + "operating": 2, + "system": 2, + "advance": 2, + "workflow": 2, + "safety": 2, + "phonetic": 2, + "concept": 2, + "lerna": 2, + "readme": 2, + "music": 2, + "failing": 2, + "customer": 2, + "extension": 2, + "lint": 2, + "optimizing": 2, + "compiler": 2, + "css-select": 2, + "figma": 2, + "finance": 2, + "closed": 2, + "due": 2, + "inactivity": 2, + "jira": 2, + "survey": 2, + "behavioral": 2, + "multi": 2, + "module": 2, + "mixing": 2, + "backlog": 2, + "update": 2, + "present": 2, + "modules": 2, + "lang-julia": 2, + "vuln": 2, + "demo": 2, + "corporate": 2, + "spam": 2, + "handshakes": 2, + "platform": 2, + "wave": 2, + "ansible": 2, + "lang-convert": 2, + "gdpr": 2, + "classes": 2, + "websocket": 2, + "speach": 2, + "b": 2, + "chef": 2, + "patreon": 2, + "reviewed-changes-requested": 2, + "youtube": 2, + "(legacy)": 2, + "mentorship": 2, + "typescript": 2, + "didactic": 2, + "story": 2, + "academia": 2 + }, + "negative_weights": { + "type": 0.52734375, + "question": 0.015625000000000003, + "grey": 0.140625, + "bias": 6.14577157501417, + "cmty": 0.6666666666666667, + "kind": 0.6666666666666667, + "inquiry": 0.015625, + "raising": 1, + "hand": 1, + "enquire": 0.015625, + "query": 0.015625, + "speech": 1, + "balloon": 1, + "component": 1.875, + "developer": 1.875, + "tools": 1.875, + "inspiration": 2.25, + "business": 2, + "process": 2, + "sustain": 2.25, + "confirmed": 2.25, + "need-info": 2.25, + "sustenance": 2.25, + "good": 1.875, + "first": 1.875, + "issue": 1.875, + "discussion": 2, + "palette": 2.25, + "azure": 2, + "ad": 2, + "data": 2, + "collection": 2, + "external-bugs": 2.25, + "deal": 2.25, + "hacking": 2.25, + "video": 1, + "test": 1, + "utils": 1, + "hsv": 1, + "thesis": 1, + "pentesting": 1, + "design": 2, + "website": 2, + "copy": 2, + "bug": 2, + "guide": 1, + "next": 2, + "meetup!": 2, + "feat": 1.875, + "ui": 1, + "mastering": 1, + "steps": 1, + "abandoned": 1, + "badges": 1, + "sponsor": 1, + "assess": 1, + "pr": 1.75, + "merged": 1.75, + "vlog": 1, + "acceptance": 1, + "testing": 1.7999999999999998, + "hot": 1, + "tv": 1, + "soundtrack": 1, + "(category)": 2, + "ci": 2, + "cd": 2, + "multi-cloud": 1, + "funding": 1, + "finder": 1, + "difficulty": 1, + "hard": 1, + "documentation": 1, + "book": 1, + "diary": 1, + "standard": 1, + "colour": 1, + "computer": 1, + "desktop": 1, + "flaw": 1, + "reliability": 1, + "cli-service": 1.875, + "build": 1.875, + "blocked": 1, + "maintenance": 1.875, + "construction": 1.875, + "ios": 1, + "planned": 1, + "feature": 1.75, + "feature-request": 2, + "rfc": 1, + "image": 1, + "stock": 1, + "reminder": 1, + "status": 1, + "review": 1, + "needed": 1, + "in": 1, + "lang-crystal": 1, + "breaking": 1, + "change": 1, + "phone": 1, + "refactor": 1, + "monologue": 1, + "reviewed-approved": 1, + "new": 1, + "best": 1, + "practice": 1, + "lecture": 1, + "backing": 1, + "browser": 1, + "aws": 1, + "polish": 1, + "nail": 1, + "care": 1, + "article": 1, + "peer-review": 1, + "writer-needed": 1, + "eventstorming": 1, + "freemasonry": 1, + "icons": 1, + "lean": 1, + "cannot": 1, + "reproduce": 1, + "paas": 1, + "net": 1, + "core": 1, + "wiretap": 1, + "unit-jest": 1, + "instruction": 1, + "infrastructure": 1, + "rgb": 1, + "ideas": 1, + "target": 1, + "windows": 1, + "call": 1, + "iconography": 1, + "promote": 1, + "template": 1, + "support": 1, + "first-timers-only": 1, + "java": 1, + "cdn": 1, + "dependency": 1, + "ready": 1.75, + "for": 1, + "deploy": 1, + "troubleshooting": 1, + "spec": 1, + "bigint": 1, + "async": 1, + "generators": 1, + "proposal": 1, + "e": 1, + "approachability": 1, + "investment": 1, + "conflicts": 1, + "optimisation": 1, + "kotlin": 1, + "release": 1, + "unconfirmed": 1, + "duplicate": 1, + "repeat": 1, + "devops": 1, + "defend": 1, + "blogging": 1, + "friendliness": 1, + "i": 1, + "n": 1, + "cla": 1, + "signed": 1, + "icebox": 1, + "meetup": 1, + "examination": 1, + "mobile": 1, + "device": 1, + "api": 1, + "decorators": 1, + "addon": 1, + "cracking": 1, + "sparkles": 1, + "enhancement": 1, + "hooks": 1, + "improved": 1, + "error": 1, + "handling": 1, + "needs": 1, + "repro": 1, + "upkeep": 1, + "reactis": 1, + "to": 1.75, + "be": 1.75, + "sample": 1, + "white": 1.7999999999999998, + "check": 1.7999999999999998, + "mark": 1.7999999999999998, + "external": 1, + "hacktoberfest": 1, + "lang-dart": 1, + "framework": 1, + "icon": 1, + "grant": 1, + "needs-research": 1, + "cybersec": 1, + "biz": 1, + "internationalization": 1, + "utility-lib": 1, + "qa": 1, + "do": 1, + "not": 1, + "merge": 1, + "hacked": 1, + "how-to": 1, + "beginner-friendly": 1, + "trello": 1, + "os": 1, + "sound": 1, + "docs": 1, + "improvement": 1, + "heavy": 1.75, + "plus": 1.75, + "sign": 1.75, + "request": 1.75, + "glitch": 1, + "cx": 1, + "dependencies": 1, + "deno": 1, + "area": 1, + "crash": 1, + "camera": 1, + "wip": 1, + "configure": 1, + "dom": 1, + "programming": 1, + "font-face": 1, + "rgba": 1, + "parser-specific": 1, + "wikipedia": 1, + "shell": 1, + "contributions": 1, + "tryout": 1, + "thought": 1, + "analysis": 1, + "contenu": 1, + "cli": 1, + "fund": 1, + "investigation": 1, + "basecamp": 1, + "literature": 1, + "socket": 1, + "io": 1, + "client": 1, + "fiscal": 1, + "user": 1, + "debug": 1, + "information": 1, + "frontend": 1, + "upstream": 1, + "style": 1, + "clean": 1, + "up": 1, + "motif": 1, + "event": 1, + "help": 1, + "wanted": 1, + "priority": 1, + "medium": 1, + "financial": 1, + "ruby": 1, + "es": 1, + "warrant": 1, + "cancelled": 1, + "plan": 1, + "hackathon": 1, + "beginner": 1, + "typography": 1, + "counsel": 1, + "recording": 1, + "crowdin": 1, + "eslint": 1, + "rules": 1, + "easy": 1, + "repare": 1, + "conference": 1, + "great": 1, + "insight": 1, + "phd": 1, + "orange": 1, + "invalid": 1, + "x": 1, + "changelog": 1, + "e-cypress": 1, + "lipstick": 1, + "-": 1, + "backdoor": 1, + "approved": 1, + "talk": 1, + "subtitle": 1, + "research": 1, + "todo": 1, + "spiral": 1, + "notepad": 1, + "interface": 1, + "critical": 1, + "privacy": 1, + "tests": 1, + "boom": 1, + "web": 1, + "app": 1, + "television": 1, + "uat": 1, + "backer": 1, + "exploit": 1, + "requires": 1, + "travis-yml": 1, + "node": 1, + "dev": 1, + "experience": 1, + "fix": 1, + "backend": 1, + "cleaning": 1, + "internal": 1, + "house": 1, + "technical": 1, + "debt": 1, + "weekly-digest": 1, + "shallow": 1, + "renderer": 1, + "commerce": 1, + "ie": 1, + "hsl": 1, + "left": 1, + "out": 1, + "welcome": 1, + "opinions": 1, + "documents": 1, + "legacy": 1, + "grafana": 1, + "react": 1, + "native": 1, + "lang-go": 1, + "tutorial": 1, + "plugin": 1, + "logo": 1, + "refactoring": 1, + "safari": 1, + "saltstack": 1, + "available": 1, + "server": 1, + "rendering": 1, + "htmlfile": 1, + "theorem": 1, + "social": 1, + "internationalisation": 1, + "definition": 1, + "packaging": 1, + "lang-r": 1, + "regression": 1, + "container": 1, + "opencollective": 1, + "report": 1, + "performance": 1, + "clickup": 1, + "installer": 1, + "statement": 1, + "gcp": 1, + "opinion": 1, + "accepted": 1, + "html": 1, + "a": 1, + "y": 1, + "general": 1, + "js": 1, + "unit": 1, + "speak": 1, + "brainstorming": 1, + "backup": 1, + "language": 1, + "bugfix": 1, + "k": 1, + "s": 1, + "scrum": 1, + "paper": 1, + "library": 1, + "stale": 1, + "optimization": 1, + "show": 1, + "apple": 1, + "low": 1, + "functions": 1, + "gnu": 1, + "linux": 1, + "focus": 1, + "groups": 1, + "dependency-update": 1, + "related": 1, + "bootstrap": 1, + "usability": 1, + "*nix": 1, + "externs": 1, + "critique": 1, + "prince": 1, + "demonstration": 1, + "⬆️": 1, + "memo": 1, + "revisitinfuture": 1, + "tips": 1, + "reference": 1, + "high": 1, + "bug-report": 1, + "babel": 1, + "flashsocket": 1, + "unix": 1, + "npm": 1, + "site": 1, + "chore": 1, + "adapter": 1, + "slides": 1, + "chat": 1, + "major": 1, + "alpha": 1, + "lock": 1, + "security": 1, + "newsletter": 1, + "verification": 1, + "color": 1, + "containerd": 1, + "doughnut": 1, + "sentry": 1, + "dissertation": 1, + "mentoring": 1, + "confer": 1, + "utilities": 1, + "infosec": 1, + "vulnerability": 1, + "has": 1, + "code": 1, + "teaching": 1, + "protection": 1, + "robot": 1, + "android": 1, + "webaim": 1, + "wontfix": 1, + "triage": 1, + "contribution": 1, + "macos": 1, + "assertion": 1, + "blog": 1, + "progress": 1, + "future": 1, + "architecture": 1, + "enhancements": 1, + "pmi": 1, + "promotion": 1, + "validation": 1, + "art": 1, + "film": 1, + "bitbucket": 1, + "cloud": 1, + "labour": 1, + "python": 1, + "suggestion": 1, + "crypto": 1, + "attitudinal": 1, + "electron": 1, + "trial": 1, + "example": 1, + "resolution": 1, + "redirect": 1, + "assessment": 1, + "monitor": 1, + "css": 1, + "hack": 1, + "translation": 1, + "opportunity": 1, + "vultr": 1, + "kubernetes": 1, + "wiki": 1, + "parser": 1, + "pwa": 1, + "iphone": 1, + "program": 1, + "finding": 1, + "digital": 1, + "ocean": 1, + "safeguard": 1, + "iac": 1, + "javascript": 1, + "integration": 1, + "glo": 1, + "porting": 1, + "on": 1, + "hold": 1, + "evaluation": 1, + "go": 1, + "must-triage": 1, + "gradle": 1, + "accessibility": 1, + "work": 1, + "other": 1, + "wrangling": 1, + "sast": 1, + "tech-debt": 1, + "entry": 1, + "fault": 1, + "problem": 1, + "brand": 1, + "internal-issue-created": 1, + "pmp": 1, + "bdd": 1, + "checkpoint": 1, + "csharp": 1, + "unreviewed": 1, + "idea": 1, + "feedback": 1, + "requested": 1, + "wcag": 1, + "bugs": 1, + "mentor": 1, + "economics": 1, + "lib": 1, + "puppet": 1, + "c": 1, + "c++": 1, + "bulb": 1, + "prometheus": 1, + "rocket": 1, + "discuss": 1, + "doc": 1, + "blogs": 1, + "unit-mocha": 1, + "enterprise": 1, + "scheduler": 1, + "class": 1, + "fields": 1, + "commercial": 1, + "infra": 1, + "terraform": 1, + "figure": 1, + "layout": 1, + "specification": 1, + "vector": 1, + "greenkeeper": 1, + "tdd": 1, + "raster": 1, + "mishap": 1, + "sketch": 1, + "released": 1, + "font": 1, + "deployment": 1, + "e-nightwatch": 1, + "engine": 1, + "vulns": 1, + "syntax": 1, + "deliverable": 1, + "manual": 1, + "osx": 1, + "axe": 1, + "sendgrid": 1, + "operating": 1, + "system": 1, + "advance": 1, + "workflow": 1, + "safety": 1, + "phonetic": 1, + "concept": 1, + "lerna": 1, + "readme": 1, + "music": 1, + "failing": 1, + "customer": 1, + "extension": 1, + "lint": 1, + "optimizing": 1, + "compiler": 1, + "css-select": 1, + "figma": 1, + "finance": 1, + "closed": 1, + "due": 1, + "inactivity": 1, + "jira": 1, + "survey": 1, + "behavioral": 1, + "multi": 1, + "module": 1, + "mixing": 1, + "backlog": 1, + "update": 1, + "present": 1, + "modules": 1, + "lang-julia": 1, + "vuln": 1, + "demo": 1, + "corporate": 1, + "spam": 1, + "handshakes": 1, + "platform": 1, + "wave": 1, + "ansible": 1, + "lang-convert": 1, + "gdpr": 1, + "classes": 1, + "websocket": 1, + "speach": 1, + "b": 1, + "chef": 1, + "patreon": 1, + "reviewed-changes-requested": 1, + "youtube": 1, + "(legacy)": 1, + "mentorship": 1, + "typescript": 1, + "didactic": 1, + "story": 1, + "academia": 1 + }, + "positive_weights_sum": {}, + "negative_weights_sum": {} + }, + "design": { + "positive_weights": { + "palette": 22.78125, + "bias": 4.4616977473112154e-39, + "hsv": 22.78125, + "design": 20.25, + "feat": 0.3750000000000001, + "ui": 9.481481481481485, + "(category)": 1.3333333333333335, + "colour": 22.78125, + "image": 20.25, + "freemasonry": 8, + "icons": 8, + "rgb": 10.125, + "iconography": 10.125, + "icon": 20.25, + "cx": 10.125, + "font-face": 10.125, + "rgba": 10.125, + "style": 10.125, + "motif": 10.125, + "typography": 10.125, + "lipstick": 8, + "user": 3, + "interface": 8, + "dev": 4, + "experience": 16, + "hsl": 10.125, + "logo": 10.125, + "developer": 0.421875, + "color": 10.125, + "art": 10.125, + "brand": 4, + "component": 0.28125, + "tools": 0.28125, + "inspiration": 0.125, + "business": 0.6666666666666667, + "process": 0.6666666666666667, + "sustain": 0.5, + "confirmed": 0.5, + "type": 0.28125, + "question": 0.25, + "grey": 0.75, + "cmty": 0.6666666666666667, + "need-info": 0.5, + "sustenance": 0.5, + "good": 0.75, + "first": 0.75, + "issue": 0.75, + "kind": 0.6666666666666667, + "discussion": 0.6666666666666667, + "azure": 0.6666666666666667, + "ad": 0.6666666666666667, + "data": 0.6666666666666667, + "collection": 0.6666666666666667, + "external-bugs": 0.5, + "deal": 0.5, + "hacking": 0.5, + "video": 0.5, + "test": 0.0740740740740741, + "utils": 2, + "thesis": 0.5, + "pentesting": 0.5, + "website": 0.6666666666666667, + "copy": 0.6666666666666667, + "bug": 2, + "guide": 0.5, + "next": 0.6666666666666667, + "meetup!": 0.6666666666666667, + "mastering": 0.5, + "steps": 0.5, + "abandoned": 0.5, + "badges": 0.5, + "sponsor": 0.5, + "assess": 0.5, + "pr": 0.30000000000000004, + "merged": 2, + "vlog": 0.5, + "acceptance": 0.6666666666666667, + "testing": 0.25, + "hot": 2, + "tv": 0.5, + "soundtrack": 0.5, + "ci": 0.6666666666666667, + "cd": 0.6666666666666667, + "multi-cloud": 0.5, + "funding": 0.6666666666666667, + "finder": 0.6666666666666667, + "difficulty": 0.6666666666666667, + "hard": 0.6666666666666667, + "documentation": 0.6666666666666667, + "book": 0.6666666666666667, + "diary": 0.5, + "standard": 0.5, + "computer": 0.6666666666666667, + "desktop": 0.6666666666666667, + "flaw": 0.5, + "reliability": 0.5, + "cli-service": 0.28125, + "build": 0.28125, + "blocked": 0.5, + "maintenance": 0.75, + "construction": 0.75, + "ios": 0.5, + "planned": 0.6666666666666667, + "feature": 0.6666666666666667, + "feature-request": 2, + "rfc": 0.5, + "stock": 0.5, + "reminder": 0.5, + "status": 0.30000000000000004, + "review": 0.75, + "needed": 0.75, + "in": 2, + "lang-crystal": 0.5, + "breaking": 0.75, + "change": 0.75, + "phone": 0.5, + "refactor": 0.5, + "monologue": 0.5, + "reviewed-approved": 2, + "new": 0.75, + "best": 0.75, + "practice": 0.75, + "lecture": 0.5, + "backing": 0.5, + "browser": 2, + "aws": 0.5, + "polish": 0.8, + "nail": 0.8, + "care": 0.8, + "article": 0.5, + "peer-review": 0.5, + "writer-needed": 0.5, + "eventstorming": 0.5, + "lean": 0.5, + "cannot": 0.6666666666666667, + "reproduce": 0.6666666666666667, + "paas": 0.5, + "net": 0.6666666666666667, + "core": 0.6666666666666667, + "wiretap": 0.5, + "unit-jest": 0.6666666666666667, + "instruction": 0.5, + "infrastructure": 0.5, + "ideas": 0.5, + "target": 0.6666666666666667, + "windows": 0.6666666666666667, + "call": 2, + "promote": 0.5, + "template": 0.5, + "support": 0.75, + "first-timers-only": 0.5, + "java": 0.5, + "cdn": 2, + "dependency": 2, + "ready": 0.8, + "for": 0.8, + "deploy": 0.8, + "troubleshooting": 2, + "spec": 0.75, + "bigint": 2, + "async": 0.75, + "generators": 0.75, + "proposal": 2, + "e": 0.75, + "approachability": 2, + "investment": 2, + "conflicts": 2, + "optimisation": 2, + "kotlin": 2, + "release": 0.8, + "unconfirmed": 2, + "duplicate": 2, + "repeat": 2, + "devops": 0.6666666666666667, + "defend": 0.6666666666666667, + "blogging": 2, + "friendliness": 2, + "i": 2, + "n": 2, + "cla": 2, + "signed": 2, + "icebox": 2, + "meetup": 2, + "examination": 2, + "mobile": 0.75, + "device": 0.75, + "api": 2, + "decorators": 2, + "addon": 2, + "cracking": 2, + "sparkles": 2, + "enhancement": 2, + "hooks": 2, + "improved": 0.75, + "error": 0.75, + "handling": 0.75, + "needs": 0.8, + "repro": 2, + "upkeep": 2, + "reactis": 2, + "to": 0.8, + "be": 2, + "sample": 2, + "white": 2, + "check": 2, + "mark": 2, + "external": 2, + "hacktoberfest": 2, + "lang-dart": 2, + "framework": 2, + "grant": 2, + "needs-research": 2, + "cybersec": 2, + "biz": 2, + "internationalization": 2, + "utility-lib": 2, + "qa": 2, + "do": 0.75, + "not": 0.75, + "merge": 0.75, + "hacked": 2, + "how-to": 2, + "beginner-friendly": 2, + "trello": 2, + "os": 2, + "sound": 2, + "docs": 2, + "improvement": 2, + "heavy": 2, + "plus": 2, + "sign": 2, + "request": 2, + "glitch": 2, + "dependencies": 2, + "inquiry": 2, + "deno": 2, + "area": 2, + "crash": 2, + "camera": 2, + "wip": 2, + "configure": 2, + "dom": 2, + "programming": 2, + "parser-specific": 2, + "wikipedia": 2, + "shell": 2, + "contributions": 2, + "tryout": 2, + "thought": 2, + "analysis": 2, + "contenu": 2, + "cli": 2, + "fund": 2, + "investigation": 2, + "basecamp": 2, + "literature": 2, + "socket": 2, + "io": 2, + "client": 0.8, + "fiscal": 2, + "debug": 2, + "information": 2, + "frontend": 2, + "upstream": 2, + "raising": 2, + "hand": 2, + "clean": 2, + "up": 2, + "event": 0.6666666666666667, + "help": 2, + "wanted": 2, + "priority": 2, + "medium": 2, + "financial": 2, + "ruby": 2, + "es": 2, + "warrant": 2, + "cancelled": 2, + "plan": 2, + "hackathon": 2, + "beginner": 2, + "counsel": 2, + "recording": 2, + "crowdin": 2, + "eslint": 2, + "rules": 2, + "easy": 2, + "repare": 2, + "conference": 2, + "great": 2, + "insight": 2, + "phd": 2, + "orange": 2, + "invalid": 2, + "x": 2, + "changelog": 2, + "e-cypress": 0.75, + "-": 0.6666666666666667, + "backdoor": 2, + "approved": 2, + "talk": 2, + "subtitle": 2, + "research": 2, + "todo": 2, + "spiral": 2, + "notepad": 2, + "critical": 2, + "privacy": 2, + "tests": 2, + "boom": 2, + "web": 2, + "app": 0.8, + "television": 2, + "uat": 2, + "backer": 2, + "exploit": 2, + "requires": 2, + "travis-yml": 2, + "node": 2, + "fix": 2, + "backend": 2, + "cleaning": 2, + "internal": 0.8, + "house": 2, + "technical": 2, + "debt": 2, + "weekly-digest": 2, + "shallow": 2, + "renderer": 2, + "commerce": 2, + "ie": 0.5, + "left": 2, + "out": 2, + "welcome": 2, + "opinions": 2, + "documents": 2, + "legacy": 2, + "grafana": 2, + "react": 2, + "native": 2, + "lang-go": 2, + "tutorial": 2, + "plugin": 2, + "refactoring": 2, + "safari": 2, + "saltstack": 2, + "available": 2, + "server": 2, + "rendering": 2, + "htmlfile": 2, + "theorem": 2, + "social": 2, + "internationalisation": 2, + "definition": 2, + "enquire": 2, + "packaging": 2, + "lang-r": 2, + "regression": 2, + "container": 2, + "opencollective": 2, + "report": 2, + "performance": 2, + "clickup": 2, + "installer": 2, + "statement": 2, + "gcp": 2, + "opinion": 2, + "accepted": 2, + "html": 2, + "a": 0.8, + "y": 2, + "general": 2, + "js": 2, + "unit": 2, + "speak": 2, + "brainstorming": 2, + "backup": 2, + "language": 2, + "bugfix": 2, + "k": 2, + "s": 2, + "scrum": 2, + "paper": 2, + "library": 2, + "stale": 2, + "optimization": 2, + "show": 2, + "apple": 2, + "low": 2, + "functions": 2, + "gnu": 2, + "linux": 2, + "focus": 2, + "groups": 2, + "dependency-update": 2, + "related": 2, + "bootstrap": 2, + "usability": 2, + "*nix": 2, + "externs": 2, + "critique": 2, + "prince": 2, + "demonstration": 2, + "⬆️": 2, + "memo": 2, + "revisitinfuture": 2, + "tips": 2, + "reference": 2, + "high": 2, + "bug-report": 2, + "babel": 2, + "flashsocket": 2, + "unix": 2, + "npm": 2, + "site": 2, + "chore": 2, + "adapter": 2, + "slides": 2, + "query": 2, + "chat": 0.6666666666666667, + "major": 2, + "alpha": 2, + "lock": 2, + "security": 2, + "newsletter": 2, + "verification": 2, + "containerd": 2, + "doughnut": 2, + "sentry": 2, + "dissertation": 2, + "mentoring": 2, + "confer": 2, + "utilities": 2, + "infosec": 2, + "vulnerability": 2, + "has": 2, + "code": 2, + "teaching": 2, + "protection": 2, + "robot": 2, + "android": 2, + "webaim": 2, + "wontfix": 2, + "triage": 0.5, + "contribution": 2, + "macos": 2, + "assertion": 2, + "blog": 2, + "progress": 2, + "future": 0.75, + "architecture": 0.75, + "enhancements": 0.75, + "pmi": 2, + "promotion": 2, + "validation": 2, + "film": 2, + "bitbucket": 2, + "cloud": 2, + "labour": 2, + "python": 2, + "suggestion": 2, + "crypto": 2, + "attitudinal": 0.75, + "electron": 2, + "trial": 2, + "example": 0.8, + "resolution": 2, + "redirect": 2, + "assessment": 2, + "monitor": 2, + "css": 2, + "hack": 2, + "translation": 2, + "opportunity": 2, + "vultr": 2, + "kubernetes": 2, + "wiki": 2, + "parser": 2, + "pwa": 2, + "iphone": 2, + "program": 2, + "finding": 2, + "digital": 2, + "ocean": 2, + "safeguard": 2, + "iac": 2, + "javascript": 2, + "integration": 2, + "glo": 2, + "porting": 2, + "on": 2, + "hold": 2, + "evaluation": 2, + "go": 0.8, + "must-triage": 2, + "gradle": 2, + "accessibility": 2, + "work": 2, + "other": 2, + "wrangling": 2, + "sast": 2, + "tech-debt": 2, + "entry": 2, + "fault": 2, + "problem": 2, + "internal-issue-created": 2, + "pmp": 2, + "bdd": 2, + "checkpoint": 2, + "csharp": 2, + "unreviewed": 2, + "idea": 2, + "feedback": 2, + "requested": 2, + "wcag": 2, + "bugs": 2, + "mentor": 2, + "economics": 2, + "lib": 2, + "puppet": 2, + "speech": 2, + "balloon": 2, + "figure": 22.78125, + "layout": 10.125, + "vector": 4, + "raster": 2, + "sketch": 10.125, + "font": 2, + "customer": 2, + "c": 0.6666666666666667, + "c++": 0.6666666666666667, + "bulb": 2, + "prometheus": 0.5, + "rocket": 0.6666666666666667, + "discuss": 2, + "doc": 0.5, + "blogs": 0.5, + "unit-mocha": 0.6666666666666667, + "enterprise": 0.5, + "scheduler": 2, + "class": 2, + "fields": 2, + "commercial": 2, + "infra": 2, + "terraform": 2, + "specification": 2, + "greenkeeper": 2, + "tdd": 2, + "mishap": 2, + "released": 2, + "deployment": 0.6666666666666667, + "e-nightwatch": 2, + "engine": 0.6666666666666667, + "vulns": 0.6666666666666667, + "syntax": 2, + "deliverable": 2, + "manual": 2, + "osx": 2, + "axe": 2, + "sendgrid": 2, + "operating": 0.6666666666666667, + "system": 0.6666666666666667, + "advance": 0.75, + "workflow": 0.75, + "safety": 2, + "phonetic": 2, + "concept": 2, + "lerna": 2, + "readme": 2, + "music": 2, + "failing": 2, + "extension": 2, + "lint": 2, + "optimizing": 2, + "compiler": 2, + "css-select": 2, + "figma": 2, + "finance": 2, + "closed": 0.8, + "due": 0.8, + "inactivity": 0.8, + "jira": 2, + "survey": 2, + "behavioral": 2, + "multi": 0.6666666666666667, + "module": 0.6666666666666667, + "mixing": 2, + "backlog": 0.6666666666666667, + "update": 2, + "present": 2, + "modules": 2, + "lang-julia": 2, + "vuln": 2, + "demo": 2, + "corporate": 0.6666666666666667, + "spam": 2, + "handshakes": 2, + "platform": 2, + "wave": 2, + "ansible": 2, + "lang-convert": 2, + "gdpr": 2, + "classes": 2, + "websocket": 2, + "speach": 2, + "b": 2, + "chef": 2, + "patreon": 2, + "reviewed-changes-requested": 2, + "youtube": 2, + "(legacy)": 2, + "mentorship": 2, + "typescript": 2, + "didactic": 2, + "story": 2, + "academia": 2 + }, + "negative_weights": { + "palette": 0.015625, + "bias": 3.127972494613266, + "hsv": 0.015625, + "design": 0.020833333333333336, + "feat": 0.10850694444444453, + "ui": 0.0036579789666209444, + "(category)": 0.6666666666666667, + "colour": 0.015625, + "image": 0.020833333333333336, + "freemasonry": 0.11111111111111113, + "icons": 0.11111111111111113, + "rgb": 0.0625, + "iconography": 0.0625, + "icon": 0.020833333333333336, + "cx": 0.0625, + "font-face": 0.0625, + "rgba": 0.0625, + "style": 0.0625, + "motif": 0.0625, + "typography": 0.0625, + "lipstick": 0.11111111111111113, + "user": 0.2083333333333334, + "interface": 0.11111111111111113, + "dev": 0.33333333333333337, + "experience": 0.03703703703703705, + "hsl": 0.0625, + "logo": 0.0625, + "developer": 0.7324218750000002, + "color": 0.0625, + "art": 0.0625, + "brand": 0.33333333333333337, + "component": 3.515625, + "tools": 3.515625, + "inspiration": 5.0625, + "business": 2, + "process": 2, + "sustain": 2.25, + "confirmed": 2.25, + "type": 3.515625, + "question": 3.75, + "grey": 1.875, + "cmty": 2, + "need-info": 2.25, + "sustenance": 2.25, + "good": 1.875, + "first": 1.875, + "issue": 1.875, + "kind": 2, + "discussion": 2, + "azure": 2, + "ad": 2, + "data": 2, + "collection": 2, + "external-bugs": 2.25, + "deal": 2.25, + "hacking": 2.25, + "video": 2.25, + "test": 8, + "utils": 1, + "thesis": 2.25, + "pentesting": 2.25, + "website": 2, + "copy": 2, + "bug": 1, + "guide": 2.25, + "next": 2, + "meetup!": 2, + "mastering": 2.25, + "steps": 2.25, + "abandoned": 2.25, + "badges": 2.25, + "sponsor": 2.25, + "assess": 2.25, + "pr": 3.3749999999999996, + "merged": 1, + "vlog": 2.25, + "acceptance": 2, + "testing": 3.75, + "hot": 1, + "tv": 2.25, + "soundtrack": 2.25, + "ci": 2, + "cd": 2, + "multi-cloud": 2.25, + "funding": 2, + "finder": 2, + "difficulty": 2, + "hard": 2, + "documentation": 2, + "book": 2, + "diary": 2.25, + "standard": 2.25, + "computer": 2, + "desktop": 2, + "flaw": 2.25, + "reliability": 2.25, + "cli-service": 3.515625, + "build": 3.515625, + "blocked": 2.25, + "maintenance": 1.875, + "construction": 1.875, + "ios": 2.25, + "planned": 2, + "feature": 2, + "feature-request": 1, + "rfc": 2.25, + "stock": 2.25, + "reminder": 2.25, + "status": 3.3749999999999996, + "review": 1.875, + "needed": 1.875, + "in": 1, + "lang-crystal": 2.25, + "breaking": 1.875, + "change": 1.875, + "phone": 2.25, + "refactor": 2.25, + "monologue": 2.25, + "reviewed-approved": 1, + "new": 1.875, + "best": 1.875, + "practice": 1.875, + "lecture": 2.25, + "backing": 2.25, + "browser": 1, + "aws": 2.25, + "polish": 1.7999999999999998, + "nail": 1.7999999999999998, + "care": 1.7999999999999998, + "article": 2.25, + "peer-review": 2.25, + "writer-needed": 2.25, + "eventstorming": 2.25, + "lean": 2.25, + "cannot": 2, + "reproduce": 2, + "paas": 2.25, + "net": 2, + "core": 2, + "wiretap": 2.25, + "unit-jest": 2, + "instruction": 2.25, + "infrastructure": 2.25, + "ideas": 2.25, + "target": 2, + "windows": 2, + "call": 1, + "promote": 2.25, + "template": 2.25, + "support": 1.875, + "first-timers-only": 2.25, + "java": 2.25, + "cdn": 1, + "dependency": 1, + "ready": 1.7999999999999998, + "for": 1.7999999999999998, + "deploy": 1.7999999999999998, + "troubleshooting": 1, + "spec": 1.875, + "bigint": 1, + "async": 1.875, + "generators": 1.875, + "proposal": 1, + "e": 1.875, + "approachability": 1, + "investment": 1, + "conflicts": 1, + "optimisation": 1, + "kotlin": 1, + "release": 1.7999999999999998, + "unconfirmed": 1, + "duplicate": 1, + "repeat": 1, + "devops": 2, + "defend": 2, + "blogging": 1, + "friendliness": 1, + "i": 1, + "n": 1, + "cla": 1, + "signed": 1, + "icebox": 1, + "meetup": 1, + "examination": 1, + "mobile": 1.875, + "device": 1.875, + "api": 1, + "decorators": 1, + "addon": 1, + "cracking": 1, + "sparkles": 1, + "enhancement": 1, + "hooks": 1, + "improved": 1.875, + "error": 1.875, + "handling": 1.875, + "needs": 1.7999999999999998, + "repro": 1, + "upkeep": 1, + "reactis": 1, + "to": 1.7999999999999998, + "be": 1, + "sample": 1, + "white": 1, + "check": 1, + "mark": 1, + "external": 1, + "hacktoberfest": 1, + "lang-dart": 1, + "framework": 1, + "grant": 1, + "needs-research": 1, + "cybersec": 1, + "biz": 1, + "internationalization": 1, + "utility-lib": 1, + "qa": 1, + "do": 1.875, + "not": 1.875, + "merge": 1.875, + "hacked": 1, + "how-to": 1, + "beginner-friendly": 1, + "trello": 1, + "os": 1, + "sound": 1, + "docs": 1, + "improvement": 1, + "heavy": 1, + "plus": 1, + "sign": 1, + "request": 1, + "glitch": 1, + "dependencies": 1, + "inquiry": 1, + "deno": 1, + "area": 1, + "crash": 1, + "camera": 1, + "wip": 1, + "configure": 1, + "dom": 1, + "programming": 1, + "parser-specific": 1, + "wikipedia": 1, + "shell": 1, + "contributions": 1, + "tryout": 1, + "thought": 1, + "analysis": 1, + "contenu": 1, + "cli": 1, + "fund": 1, + "investigation": 1, + "basecamp": 1, + "literature": 1, + "socket": 1, + "io": 1, + "client": 1.7999999999999998, + "fiscal": 1, + "debug": 1, + "information": 1, + "frontend": 1, + "upstream": 1, + "raising": 1, + "hand": 1, + "clean": 1, + "up": 1, + "event": 2, + "help": 1, + "wanted": 1, + "priority": 1, + "medium": 1, + "financial": 1, + "ruby": 1, + "es": 1, + "warrant": 1, + "cancelled": 1, + "plan": 1, + "hackathon": 1, + "beginner": 1, + "counsel": 1, + "recording": 1, + "crowdin": 1, + "eslint": 1, + "rules": 1, + "easy": 1, + "repare": 1, + "conference": 1, + "great": 1, + "insight": 1, + "phd": 1, + "orange": 1, + "invalid": 1, + "x": 1, + "changelog": 1, + "e-cypress": 1.875, + "-": 2, + "backdoor": 1, + "approved": 1, + "talk": 1, + "subtitle": 1, + "research": 1, + "todo": 1, + "spiral": 1, + "notepad": 1, + "critical": 1, + "privacy": 1, + "tests": 1, + "boom": 1, + "web": 1, + "app": 1.7999999999999998, + "television": 1, + "uat": 1, + "backer": 1, + "exploit": 1, + "requires": 1, + "travis-yml": 1, + "node": 1, + "fix": 1, + "backend": 1, + "cleaning": 1, + "internal": 1.7999999999999998, + "house": 1, + "technical": 1, + "debt": 1, + "weekly-digest": 1, + "shallow": 1, + "renderer": 1, + "commerce": 1, + "ie": 2.25, + "left": 1, + "out": 1, + "welcome": 1, + "opinions": 1, + "documents": 1, + "legacy": 1, + "grafana": 1, + "react": 1, + "native": 1, + "lang-go": 1, + "tutorial": 1, + "plugin": 1, + "refactoring": 1, + "safari": 1, + "saltstack": 1, + "available": 1, + "server": 1, + "rendering": 1, + "htmlfile": 1, + "theorem": 1, + "social": 1, + "internationalisation": 1, + "definition": 1, + "enquire": 1, + "packaging": 1, + "lang-r": 1, + "regression": 1, + "container": 1, + "opencollective": 1, + "report": 1, + "performance": 1, + "clickup": 1, + "installer": 1, + "statement": 1, + "gcp": 1, + "opinion": 1, + "accepted": 1, + "html": 1, + "a": 1.7999999999999998, + "y": 1, + "general": 1, + "js": 1, + "unit": 1, + "speak": 1, + "brainstorming": 1, + "backup": 1, + "language": 1, + "bugfix": 1, + "k": 1, + "s": 1, + "scrum": 1, + "paper": 1, + "library": 1, + "stale": 1, + "optimization": 1, + "show": 1, + "apple": 1, + "low": 1, + "functions": 1, + "gnu": 1, + "linux": 1, + "focus": 1, + "groups": 1, + "dependency-update": 1, + "related": 1, + "bootstrap": 1, + "usability": 1, + "*nix": 1, + "externs": 1, + "critique": 1, + "prince": 1, + "demonstration": 1, + "⬆️": 1, + "memo": 1, + "revisitinfuture": 1, + "tips": 1, + "reference": 1, + "high": 1, + "bug-report": 1, + "babel": 1, + "flashsocket": 1, + "unix": 1, + "npm": 1, + "site": 1, + "chore": 1, + "adapter": 1, + "slides": 1, + "query": 1, + "chat": 2, + "major": 1, + "alpha": 1, + "lock": 1, + "security": 1, + "newsletter": 1, + "verification": 1, + "containerd": 1, + "doughnut": 1, + "sentry": 1, + "dissertation": 1, + "mentoring": 1, + "confer": 1, + "utilities": 1, + "infosec": 1, + "vulnerability": 1, + "has": 1, + "code": 1, + "teaching": 1, + "protection": 1, + "robot": 1, + "android": 1, + "webaim": 1, + "wontfix": 1, + "triage": 2.25, + "contribution": 1, + "macos": 1, + "assertion": 1, + "blog": 1, + "progress": 1, + "future": 1.875, + "architecture": 1.875, + "enhancements": 1.875, + "pmi": 1, + "promotion": 1, + "validation": 1, + "film": 1, + "bitbucket": 1, + "cloud": 1, + "labour": 1, + "python": 1, + "suggestion": 1, + "crypto": 1, + "attitudinal": 1.875, + "electron": 1, + "trial": 1, + "example": 1.7999999999999998, + "resolution": 1, + "redirect": 1, + "assessment": 1, + "monitor": 1, + "css": 1, + "hack": 1, + "translation": 1, + "opportunity": 1, + "vultr": 1, + "kubernetes": 1, + "wiki": 1, + "parser": 1, + "pwa": 1, + "iphone": 1, + "program": 1, + "finding": 1, + "digital": 1, + "ocean": 1, + "safeguard": 1, + "iac": 1, + "javascript": 1, + "integration": 1, + "glo": 1, + "porting": 1, + "on": 1, + "hold": 1, + "evaluation": 1, + "go": 1.7999999999999998, + "must-triage": 1, + "gradle": 1, + "accessibility": 1, + "work": 1, + "other": 1, + "wrangling": 1, + "sast": 1, + "tech-debt": 1, + "entry": 1, + "fault": 1, + "problem": 1, + "internal-issue-created": 1, + "pmp": 1, + "bdd": 1, + "checkpoint": 1, + "csharp": 1, + "unreviewed": 1, + "idea": 1, + "feedback": 1, + "requested": 1, + "wcag": 1, + "bugs": 1, + "mentor": 1, + "economics": 1, + "lib": 1, + "puppet": 1, + "speech": 1, + "balloon": 1, + "figure": 0.015625, + "layout": 0.0625, + "vector": 0.33333333333333337, + "raster": 1, + "sketch": 0.0625, + "font": 1, + "customer": 1, + "c": 2, + "c++": 2, + "bulb": 1, + "prometheus": 2.25, + "rocket": 2, + "discuss": 1, + "doc": 2.25, + "blogs": 2.25, + "unit-mocha": 2, + "enterprise": 2.25, + "scheduler": 1, + "class": 1, + "fields": 1, + "commercial": 1, + "infra": 1, + "terraform": 1, + "specification": 1, + "greenkeeper": 1, + "tdd": 1, + "mishap": 1, + "released": 1, + "deployment": 2, + "e-nightwatch": 1, + "engine": 2, + "vulns": 2, + "syntax": 1, + "deliverable": 1, + "manual": 1, + "osx": 1, + "axe": 1, + "sendgrid": 1, + "operating": 2, + "system": 2, + "advance": 1.875, + "workflow": 1.875, + "safety": 1, + "phonetic": 1, + "concept": 1, + "lerna": 1, + "readme": 1, + "music": 1, + "failing": 1, + "extension": 1, + "lint": 1, + "optimizing": 1, + "compiler": 1, + "css-select": 1, + "figma": 1, + "finance": 1, + "closed": 1.7999999999999998, + "due": 1.7999999999999998, + "inactivity": 1.7999999999999998, + "jira": 1, + "survey": 1, + "behavioral": 1, + "multi": 2, + "module": 2, + "mixing": 1, + "backlog": 2, + "update": 1, + "present": 1, + "modules": 1, + "lang-julia": 1, + "vuln": 1, + "demo": 1, + "corporate": 2, + "spam": 1, + "handshakes": 1, + "platform": 1, + "wave": 1, + "ansible": 1, + "lang-convert": 1, + "gdpr": 1, + "classes": 1, + "websocket": 1, + "speach": 1, + "b": 1, + "chef": 1, + "patreon": 1, + "reviewed-changes-requested": 1, + "youtube": 1, + "(legacy)": 1, + "mentorship": 1, + "typescript": 1, + "didactic": 1, + "story": 1, + "academia": 1 + }, + "positive_weights_sum": {}, + "negative_weights_sum": {} + }, + "infra": { + "positive_weights": { + "azure": 16, + "ad": 16, + "bias": 2.671410808263399e-52, + "ci": 8, + "cd": 8, + "multi-cloud": 22.78125, + "stock": 22.78125, + "aws": 22.78125, + "infrastructure": 22.78125, + "devops": 16, + "defend": 8, + "configure": 4, + "area": 9.481481481481485, + "cli": 1.7777777777777781, + "travis-yml": 10.125, + "grafana": 10.125, + "saltstack": 10.125, + "container": 10.125, + "gcp": 10.125, + "k": 8, + "s": 8, + "npm": 10.125, + "containerd": 10.125, + "sentry": 10.125, + "bitbucket": 4, + "cloud": 9, + "vultr": 10.125, + "kubernetes": 10.125, + "digital": 8, + "ocean": 8, + "iac": 10.125, + "go": 0.5904899999999996, + "client": 5.314409999999998, + "internal": 4.723919999999998, + "release": 4.199039999999998, + "gradle": 10.125, + "puppet": 10.125, + "component": 0.28125, + "developer": 0.98876953125, + "tools": 0.28125, + "inspiration": 0.125, + "business": 0.6666666666666667, + "process": 0.6666666666666667, + "sustain": 0.5, + "confirmed": 0.5, + "type": 0.28125, + "question": 0.25, + "grey": 0.75, + "cmty": 0.6666666666666667, + "need-info": 0.5, + "sustenance": 0.5, + "good": 0.75, + "first": 0.75, + "issue": 0.75, + "kind": 0.6666666666666667, + "discussion": 0.6666666666666667, + "palette": 0.5, + "data": 0.6666666666666667, + "collection": 0.6666666666666667, + "external-bugs": 0.5, + "deal": 0.5, + "hacking": 0.5, + "video": 0.5, + "test": 0.2666666666666667, + "utils": 2, + "hsv": 0.5, + "thesis": 0.5, + "pentesting": 0.5, + "design": 0.5, + "website": 0.6666666666666667, + "copy": 0.6666666666666667, + "bug": 0.5, + "guide": 0.5, + "next": 0.6666666666666667, + "meetup!": 0.6666666666666667, + "feat": 0.08333333333333334, + "ui": 2, + "mastering": 0.5, + "steps": 0.5, + "abandoned": 0.5, + "badges": 0.5, + "sponsor": 0.5, + "assess": 0.5, + "pr": 0.03750000000000001, + "merged": 2, + "vlog": 0.5, + "acceptance": 0.6666666666666667, + "testing": 0.6666666666666667, + "hot": 2, + "tv": 0.5, + "soundtrack": 0.5, + "(category)": 2, + "funding": 0.6666666666666667, + "finder": 0.6666666666666667, + "difficulty": 0.6666666666666667, + "hard": 0.6666666666666667, + "documentation": 0.6666666666666667, + "book": 0.6666666666666667, + "diary": 0.5, + "standard": 0.5, + "colour": 0.5, + "computer": 0.6666666666666667, + "desktop": 0.6666666666666667, + "flaw": 0.5, + "reliability": 0.5, + "cli-service": 0.75, + "build": 0.75, + "blocked": 0.5, + "maintenance": 0.75, + "construction": 0.75, + "ios": 0.5, + "planned": 0.6666666666666667, + "feature": 0.25, + "feature-request": 2, + "rfc": 0.5, + "image": 0.5, + "reminder": 0.5, + "status": 0.8, + "review": 0.6666666666666667, + "needed": 2, + "in": 0.6666666666666667, + "lang-crystal": 0.5, + "breaking": 0.75, + "change": 0.75, + "phone": 0.5, + "refactor": 0.5, + "monologue": 0.5, + "reviewed-approved": 2, + "new": 0.75, + "best": 0.75, + "practice": 0.75, + "lecture": 0.5, + "backing": 0.5, + "browser": 2, + "polish": 0.8, + "nail": 0.8, + "care": 0.8, + "article": 0.5, + "peer-review": 0.5, + "writer-needed": 0.5, + "eventstorming": 0.5, + "freemasonry": 0.6666666666666667, + "icons": 0.6666666666666667, + "lean": 0.5, + "cannot": 0.6666666666666667, + "reproduce": 0.6666666666666667, + "paas": 0.5, + "net": 0.6666666666666667, + "core": 0.6666666666666667, + "wiretap": 0.5, + "unit-jest": 2, + "instruction": 0.5, + "rgb": 0.5, + "ideas": 0.5, + "target": 0.6666666666666667, + "windows": 0.6666666666666667, + "call": 2, + "iconography": 0.5, + "promote": 0.5, + "template": 0.5, + "support": 0.75, + "first-timers-only": 0.5, + "java": 0.5, + "cdn": 0.5, + "dependency": 2, + "ready": 0.8, + "for": 0.8, + "deploy": 0.8, + "troubleshooting": 0.5, + "spec": 0.28125, + "bigint": 2, + "async": 0.75, + "generators": 0.75, + "proposal": 2, + "e": 0.6666666666666667, + "approachability": 0.5, + "investment": 0.5, + "conflicts": 0.5, + "optimisation": 0.5, + "kotlin": 2, + "unconfirmed": 2, + "duplicate": 2, + "repeat": 2, + "blogging": 2, + "friendliness": 2, + "i": 0.6666666666666667, + "n": 0.6666666666666667, + "cla": 2, + "signed": 2, + "icebox": 2, + "meetup": 2, + "examination": 2, + "mobile": 0.75, + "device": 0.75, + "api": 2, + "decorators": 2, + "addon": 2, + "cracking": 2, + "sparkles": 2, + "enhancement": 2, + "hooks": 2, + "improved": 0.75, + "error": 0.75, + "handling": 0.75, + "needs": 0.8, + "repro": 2, + "upkeep": 2, + "reactis": 2, + "to": 0.8, + "be": 2, + "sample": 2, + "white": 2, + "check": 2, + "mark": 2, + "external": 2, + "hacktoberfest": 2, + "lang-dart": 2, + "framework": 2, + "icon": 2, + "grant": 2, + "needs-research": 2, + "cybersec": 2, + "biz": 2, + "internationalization": 2, + "utility-lib": 2, + "qa": 2, + "do": 0.75, + "not": 0.75, + "merge": 0.75, + "hacked": 2, + "how-to": 2, + "beginner-friendly": 2, + "trello": 2, + "os": 2, + "sound": 2, + "docs": 2, + "improvement": 2, + "heavy": 2, + "plus": 2, + "sign": 2, + "request": 0.75, + "glitch": 2, + "cx": 2, + "dependencies": 2, + "inquiry": 2, + "deno": 2, + "crash": 0.0740740740740741, + "camera": 2, + "wip": 2, + "dom": 2, + "programming": 2, + "font-face": 2, + "rgba": 2, + "parser-specific": 2, + "wikipedia": 2, + "shell": 2, + "contributions": 2, + "tryout": 2, + "thought": 2, + "analysis": 2, + "contenu": 2, + "fund": 2, + "investigation": 2, + "basecamp": 2, + "literature": 2, + "socket": 0.28125, + "io": 0.28125, + "fiscal": 2, + "user": 2, + "debug": 2, + "information": 2, + "frontend": 2, + "upstream": 2, + "raising": 2, + "hand": 2, + "style": 2, + "clean": 2, + "up": 2, + "motif": 2, + "event": 2, + "help": 2, + "wanted": 2, + "priority": 2, + "medium": 2, + "financial": 2, + "ruby": 2, + "es": 2, + "warrant": 2, + "cancelled": 2, + "plan": 2, + "hackathon": 2, + "beginner": 2, + "typography": 2, + "counsel": 2, + "recording": 2, + "crowdin": 2, + "eslint": 2, + "rules": 2, + "easy": 2, + "repare": 2, + "conference": 2, + "great": 2, + "insight": 2, + "phd": 2, + "orange": 2, + "invalid": 2, + "x": 2, + "changelog": 2, + "e-cypress": 2, + "lipstick": 2, + "-": 0.6666666666666667, + "backdoor": 2, + "approved": 2, + "talk": 2, + "subtitle": 2, + "research": 2, + "todo": 0.75, + "spiral": 0.75, + "notepad": 0.75, + "interface": 2, + "critical": 2, + "privacy": 2, + "tests": 2, + "boom": 2, + "web": 2, + "app": 2, + "television": 2, + "uat": 2, + "backer": 2, + "exploit": 2, + "requires": 2, + "node": 2, + "dev": 2, + "experience": 0.6666666666666667, + "fix": 2, + "backend": 2, + "cleaning": 2, + "house": 0.75, + "technical": 2, + "debt": 2, + "weekly-digest": 2, + "shallow": 2, + "renderer": 2, + "commerce": 2, + "ie": 0.5, + "hsl": 2, + "left": 2, + "out": 2, + "welcome": 2, + "opinions": 2, + "documents": 2, + "legacy": 2, + "react": 2, + "native": 2, + "lang-go": 2, + "tutorial": 2, + "plugin": 2, + "logo": 2, + "refactoring": 2, + "safari": 2, + "available": 2, + "server": 2, + "rendering": 2, + "htmlfile": 2, + "theorem": 2, + "social": 2, + "internationalisation": 2, + "definition": 2, + "enquire": 2, + "packaging": 2, + "lang-r": 2, + "regression": 0.5, + "opencollective": 2, + "report": 2, + "performance": 0.5, + "clickup": 2, + "installer": 2, + "statement": 2, + "opinion": 2, + "accepted": 2, + "html": 2, + "a": 0.8, + "y": 2, + "general": 2, + "js": 2, + "unit": 2, + "speak": 2, + "brainstorming": 2, + "backup": 2, + "language": 2, + "bugfix": 2, + "scrum": 2, + "paper": 2, + "library": 2, + "stale": 2, + "optimization": 2, + "show": 2, + "apple": 2, + "low": 2, + "functions": 2, + "gnu": 2, + "linux": 0.5, + "focus": 2, + "groups": 2, + "dependency-update": 2, + "related": 2, + "bootstrap": 2, + "usability": 2, + "*nix": 2, + "externs": 2, + "critique": 2, + "prince": 2, + "demonstration": 2, + "⬆️": 2, + "memo": 2, + "revisitinfuture": 2, + "tips": 2, + "reference": 2, + "high": 2, + "bug-report": 2, + "babel": 2, + "flashsocket": 2, + "unix": 2, + "site": 2, + "chore": 2, + "adapter": 2, + "slides": 2, + "query": 2, + "chat": 2, + "major": 2, + "alpha": 0.22222222222222227, + "lock": 2, + "security": 0.5, + "newsletter": 2, + "verification": 2, + "color": 2, + "doughnut": 2, + "dissertation": 2, + "mentoring": 2, + "confer": 2, + "utilities": 2, + "infosec": 2, + "vulnerability": 2, + "has": 2, + "code": 2, + "teaching": 2, + "protection": 2, + "robot": 2, + "android": 2, + "webaim": 2, + "wontfix": 2, + "triage": 0.5, + "contribution": 2, + "macos": 2, + "assertion": 2, + "blog": 2, + "progress": 2, + "future": 2, + "architecture": 2, + "enhancements": 2, + "pmi": 2, + "promotion": 2, + "validation": 2, + "art": 2, + "film": 2, + "labour": 2, + "python": 2, + "suggestion": 2, + "crypto": 2, + "attitudinal": 2, + "electron": 2, + "trial": 2, + "example": 2, + "resolution": 2, + "redirect": 2, + "assessment": 2, + "monitor": 2, + "css": 2, + "hack": 2, + "translation": 2, + "opportunity": 2, + "wiki": 2, + "parser": 2, + "pwa": 2, + "iphone": 2, + "program": 2, + "finding": 2, + "safeguard": 2, + "javascript": 2, + "integration": 2, + "glo": 2, + "porting": 2, + "on": 2, + "hold": 2, + "evaluation": 2, + "must-triage": 2, + "accessibility": 2, + "work": 2, + "other": 2, + "wrangling": 2, + "sast": 2, + "tech-debt": 2, + "entry": 2, + "fault": 2, + "problem": 2, + "brand": 2, + "internal-issue-created": 2, + "pmp": 2, + "bdd": 2, + "checkpoint": 2, + "csharp": 2, + "unreviewed": 2, + "idea": 2, + "feedback": 2, + "requested": 2, + "wcag": 2, + "bugs": 2, + "mentor": 2, + "economics": 2, + "lib": 2, + "speech": 2, + "balloon": 2, + "prometheus": 22.78125, + "infra": 22.78125, + "terraform": 22.78125, + "greenkeeper": 10.125, + "rocket": 3, + "deployment": 18, + "advance": 7.03125, + "workflow": 7.03125, + "lerna": 10.125, + "ansible": 10.125, + "chef": 10.125, + "c": 0.6666666666666667, + "c++": 0.6666666666666667, + "bulb": 2, + "discuss": 2, + "doc": 0.5, + "blogs": 0.5, + "unit-mocha": 2, + "enterprise": 0.5, + "scheduler": 2, + "class": 0.75, + "fields": 0.75, + "commercial": 0.5, + "figure": 0.5, + "layout": 0.5, + "specification": 0.5, + "vector": 2, + "tdd": 0.5, + "raster": 2, + "mishap": 0.5, + "sketch": 0.5, + "released": 0.5, + "font": 2, + "e-nightwatch": 2, + "engine": 0.6666666666666667, + "vulns": 0.6666666666666667, + "syntax": 2, + "deliverable": 0.5, + "manual": 0.5, + "osx": 2, + "axe": 0.5, + "sendgrid": 2, + "operating": 0.6666666666666667, + "system": 0.6666666666666667, + "safety": 0.5, + "phonetic": 0.5, + "concept": 0.5, + "readme": 0.5, + "music": 2, + "failing": 0.8, + "customer": 0.6666666666666667, + "extension": 2, + "lint": 2, + "optimizing": 2, + "compiler": 2, + "css-select": 2, + "figma": 2, + "finance": 2, + "closed": 0.8, + "due": 0.8, + "inactivity": 0.8, + "jira": 2, + "survey": 2, + "behavioral": 2, + "multi": 0.6666666666666667, + "module": 0.6666666666666667, + "mixing": 2, + "backlog": 0.6666666666666667, + "update": 2, + "present": 2, + "modules": 2, + "lang-julia": 2, + "vuln": 2, + "demo": 2, + "corporate": 2, + "spam": 2, + "handshakes": 2, + "platform": 2, + "wave": 2, + "lang-convert": 2, + "gdpr": 2, + "classes": 2, + "websocket": 2, + "speach": 2, + "b": 2, + "patreon": 2, + "reviewed-changes-requested": 2, + "youtube": 2, + "(legacy)": 2, + "mentorship": 2, + "typescript": 2, + "didactic": 2, + "story": 2, + "academia": 2 + }, + "negative_weights": { + "azure": 0.03703703703703705, + "ad": 0.03703703703703705, + "bias": 4.113105254731708, + "ci": 0.11111111111111113, + "cd": 0.11111111111111113, + "multi-cloud": 0.015625, + "stock": 0.015625, + "aws": 0.015625, + "infrastructure": 0.015625, + "devops": 0.03703703703703705, + "defend": 0.11111111111111113, + "configure": 0.33333333333333337, + "area": 0.0036579789666209444, + "cli": 0.009259259259259267, + "travis-yml": 0.0625, + "grafana": 0.0625, + "saltstack": 0.0625, + "container": 0.0625, + "gcp": 0.0625, + "k": 0.11111111111111113, + "s": 0.11111111111111113, + "npm": 0.0625, + "containerd": 0.0625, + "sentry": 0.0625, + "bitbucket": 0.33333333333333337, + "cloud": 0.08333333333333334, + "vultr": 0.0625, + "kubernetes": 0.0625, + "digital": 0.11111111111111113, + "ocean": 0.11111111111111113, + "iac": 0.0625, + "go": 0.11664000000000006, + "client": 0.03600000000000001, + "internal": 0.03840000000000002, + "release": 0.04096000000000002, + "gradle": 0.0625, + "puppet": 0.0625, + "component": 3.515625, + "developer": 0.494384765625, + "tools": 3.515625, + "inspiration": 5.0625, + "business": 2, + "process": 2, + "sustain": 2.25, + "confirmed": 2.25, + "type": 3.515625, + "question": 3.75, + "grey": 1.875, + "cmty": 2, + "need-info": 2.25, + "sustenance": 2.25, + "good": 1.875, + "first": 1.875, + "issue": 1.875, + "kind": 2, + "discussion": 2, + "palette": 2.25, + "data": 2, + "collection": 2, + "external-bugs": 2.25, + "deal": 2.25, + "hacking": 2.25, + "video": 2.25, + "test": 3.5999999999999996, + "utils": 1, + "hsv": 2.25, + "thesis": 2.25, + "pentesting": 2.25, + "design": 2.25, + "website": 2, + "copy": 2, + "bug": 2.25, + "guide": 2.25, + "next": 2, + "meetup!": 2, + "feat": 7.5, + "ui": 1, + "mastering": 2.25, + "steps": 2.25, + "abandoned": 2.25, + "badges": 2.25, + "sponsor": 2.25, + "assess": 2.25, + "pr": 12.656249999999998, + "merged": 1, + "vlog": 2.25, + "acceptance": 2, + "testing": 2, + "hot": 1, + "tv": 2.25, + "soundtrack": 2.25, + "(category)": 1, + "funding": 2, + "finder": 2, + "difficulty": 2, + "hard": 2, + "documentation": 2, + "book": 2, + "diary": 2.25, + "standard": 2.25, + "colour": 2.25, + "computer": 2, + "desktop": 2, + "flaw": 2.25, + "reliability": 2.25, + "cli-service": 1.875, + "build": 1.875, + "blocked": 2.25, + "maintenance": 1.875, + "construction": 1.875, + "ios": 2.25, + "planned": 2, + "feature": 3.75, + "feature-request": 1, + "rfc": 2.25, + "image": 2.25, + "reminder": 2.25, + "status": 1.7999999999999998, + "review": 2, + "needed": 1, + "in": 2, + "lang-crystal": 2.25, + "breaking": 1.875, + "change": 1.875, + "phone": 2.25, + "refactor": 2.25, + "monologue": 2.25, + "reviewed-approved": 1, + "new": 1.875, + "best": 1.875, + "practice": 1.875, + "lecture": 2.25, + "backing": 2.25, + "browser": 1, + "polish": 1.7999999999999998, + "nail": 1.7999999999999998, + "care": 1.7999999999999998, + "article": 2.25, + "peer-review": 2.25, + "writer-needed": 2.25, + "eventstorming": 2.25, + "freemasonry": 2, + "icons": 2, + "lean": 2.25, + "cannot": 2, + "reproduce": 2, + "paas": 2.25, + "net": 2, + "core": 2, + "wiretap": 2.25, + "unit-jest": 1, + "instruction": 2.25, + "rgb": 2.25, + "ideas": 2.25, + "target": 2, + "windows": 2, + "call": 1, + "iconography": 2.25, + "promote": 2.25, + "template": 2.25, + "support": 1.875, + "first-timers-only": 2.25, + "java": 2.25, + "cdn": 2.25, + "dependency": 1, + "ready": 1.7999999999999998, + "for": 1.7999999999999998, + "deploy": 1.7999999999999998, + "troubleshooting": 2.25, + "spec": 3.515625, + "bigint": 1, + "async": 1.875, + "generators": 1.875, + "proposal": 1, + "e": 2, + "approachability": 2.25, + "investment": 2.25, + "conflicts": 2.25, + "optimisation": 2.25, + "kotlin": 1, + "unconfirmed": 1, + "duplicate": 1, + "repeat": 1, + "blogging": 1, + "friendliness": 1, + "i": 2, + "n": 2, + "cla": 1, + "signed": 1, + "icebox": 1, + "meetup": 1, + "examination": 1, + "mobile": 1.875, + "device": 1.875, + "api": 1, + "decorators": 1, + "addon": 1, + "cracking": 1, + "sparkles": 1, + "enhancement": 1, + "hooks": 1, + "improved": 1.875, + "error": 1.875, + "handling": 1.875, + "needs": 1.7999999999999998, + "repro": 1, + "upkeep": 1, + "reactis": 1, + "to": 1.7999999999999998, + "be": 1, + "sample": 1, + "white": 1, + "check": 1, + "mark": 1, + "external": 1, + "hacktoberfest": 1, + "lang-dart": 1, + "framework": 1, + "icon": 1, + "grant": 1, + "needs-research": 1, + "cybersec": 1, + "biz": 1, + "internationalization": 1, + "utility-lib": 1, + "qa": 1, + "do": 1.875, + "not": 1.875, + "merge": 1.875, + "hacked": 1, + "how-to": 1, + "beginner-friendly": 1, + "trello": 1, + "os": 1, + "sound": 1, + "docs": 1, + "improvement": 1, + "heavy": 1, + "plus": 1, + "sign": 1, + "request": 1.875, + "glitch": 1, + "cx": 1, + "dependencies": 1, + "inquiry": 1, + "deno": 1, + "crash": 8, + "camera": 1, + "wip": 1, + "dom": 1, + "programming": 1, + "font-face": 1, + "rgba": 1, + "parser-specific": 1, + "wikipedia": 1, + "shell": 1, + "contributions": 1, + "tryout": 1, + "thought": 1, + "analysis": 1, + "contenu": 1, + "fund": 1, + "investigation": 1, + "basecamp": 1, + "literature": 1, + "socket": 3.515625, + "io": 3.515625, + "fiscal": 1, + "user": 1, + "debug": 1, + "information": 1, + "frontend": 1, + "upstream": 1, + "raising": 1, + "hand": 1, + "style": 1, + "clean": 1, + "up": 1, + "motif": 1, + "event": 1, + "help": 1, + "wanted": 1, + "priority": 1, + "medium": 1, + "financial": 1, + "ruby": 1, + "es": 1, + "warrant": 1, + "cancelled": 1, + "plan": 1, + "hackathon": 1, + "beginner": 1, + "typography": 1, + "counsel": 1, + "recording": 1, + "crowdin": 1, + "eslint": 1, + "rules": 1, + "easy": 1, + "repare": 1, + "conference": 1, + "great": 1, + "insight": 1, + "phd": 1, + "orange": 1, + "invalid": 1, + "x": 1, + "changelog": 1, + "e-cypress": 1, + "lipstick": 1, + "-": 2, + "backdoor": 1, + "approved": 1, + "talk": 1, + "subtitle": 1, + "research": 1, + "todo": 1.875, + "spiral": 1.875, + "notepad": 1.875, + "interface": 1, + "critical": 1, + "privacy": 1, + "tests": 1, + "boom": 1, + "web": 1, + "app": 1, + "television": 1, + "uat": 1, + "backer": 1, + "exploit": 1, + "requires": 1, + "node": 1, + "dev": 1, + "experience": 2, + "fix": 1, + "backend": 1, + "cleaning": 1, + "house": 1.875, + "technical": 1, + "debt": 1, + "weekly-digest": 1, + "shallow": 1, + "renderer": 1, + "commerce": 1, + "ie": 2.25, + "hsl": 1, + "left": 1, + "out": 1, + "welcome": 1, + "opinions": 1, + "documents": 1, + "legacy": 1, + "react": 1, + "native": 1, + "lang-go": 1, + "tutorial": 1, + "plugin": 1, + "logo": 1, + "refactoring": 1, + "safari": 1, + "available": 1, + "server": 1, + "rendering": 1, + "htmlfile": 1, + "theorem": 1, + "social": 1, + "internationalisation": 1, + "definition": 1, + "enquire": 1, + "packaging": 1, + "lang-r": 1, + "regression": 2.25, + "opencollective": 1, + "report": 1, + "performance": 2.25, + "clickup": 1, + "installer": 1, + "statement": 1, + "opinion": 1, + "accepted": 1, + "html": 1, + "a": 1.7999999999999998, + "y": 1, + "general": 1, + "js": 1, + "unit": 1, + "speak": 1, + "brainstorming": 1, + "backup": 1, + "language": 1, + "bugfix": 1, + "scrum": 1, + "paper": 1, + "library": 1, + "stale": 1, + "optimization": 1, + "show": 1, + "apple": 1, + "low": 1, + "functions": 1, + "gnu": 1, + "linux": 2.25, + "focus": 1, + "groups": 1, + "dependency-update": 1, + "related": 1, + "bootstrap": 1, + "usability": 1, + "*nix": 1, + "externs": 1, + "critique": 1, + "prince": 1, + "demonstration": 1, + "⬆️": 1, + "memo": 1, + "revisitinfuture": 1, + "tips": 1, + "reference": 1, + "high": 1, + "bug-report": 1, + "babel": 1, + "flashsocket": 1, + "unix": 1, + "site": 1, + "chore": 1, + "adapter": 1, + "slides": 1, + "query": 1, + "chat": 1, + "major": 1, + "alpha": 4, + "lock": 1, + "security": 2.25, + "newsletter": 1, + "verification": 1, + "color": 1, + "doughnut": 1, + "dissertation": 1, + "mentoring": 1, + "confer": 1, + "utilities": 1, + "infosec": 1, + "vulnerability": 1, + "has": 1, + "code": 1, + "teaching": 1, + "protection": 1, + "robot": 1, + "android": 1, + "webaim": 1, + "wontfix": 1, + "triage": 2.25, + "contribution": 1, + "macos": 1, + "assertion": 1, + "blog": 1, + "progress": 1, + "future": 1, + "architecture": 1, + "enhancements": 1, + "pmi": 1, + "promotion": 1, + "validation": 1, + "art": 1, + "film": 1, + "labour": 1, + "python": 1, + "suggestion": 1, + "crypto": 1, + "attitudinal": 1, + "electron": 1, + "trial": 1, + "example": 1, + "resolution": 1, + "redirect": 1, + "assessment": 1, + "monitor": 1, + "css": 1, + "hack": 1, + "translation": 1, + "opportunity": 1, + "wiki": 1, + "parser": 1, + "pwa": 1, + "iphone": 1, + "program": 1, + "finding": 1, + "safeguard": 1, + "javascript": 1, + "integration": 1, + "glo": 1, + "porting": 1, + "on": 1, + "hold": 1, + "evaluation": 1, + "must-triage": 1, + "accessibility": 1, + "work": 1, + "other": 1, + "wrangling": 1, + "sast": 1, + "tech-debt": 1, + "entry": 1, + "fault": 1, + "problem": 1, + "brand": 1, + "internal-issue-created": 1, + "pmp": 1, + "bdd": 1, + "checkpoint": 1, + "csharp": 1, + "unreviewed": 1, + "idea": 1, + "feedback": 1, + "requested": 1, + "wcag": 1, + "bugs": 1, + "mentor": 1, + "economics": 1, + "lib": 1, + "speech": 1, + "balloon": 1, + "prometheus": 0.015625, + "infra": 0.015625, + "terraform": 0.015625, + "greenkeeper": 0.0625, + "rocket": 0.2083333333333334, + "deployment": 0.027777777777777783, + "advance": 0.140625, + "workflow": 0.140625, + "lerna": 0.0625, + "ansible": 0.0625, + "chef": 0.0625, + "c": 2, + "c++": 2, + "bulb": 1, + "discuss": 1, + "doc": 2.25, + "blogs": 2.25, + "unit-mocha": 1, + "enterprise": 2.25, + "scheduler": 1, + "class": 1.875, + "fields": 1.875, + "commercial": 2.25, + "figure": 2.25, + "layout": 2.25, + "specification": 2.25, + "vector": 1, + "tdd": 2.25, + "raster": 1, + "mishap": 2.25, + "sketch": 2.25, + "released": 2.25, + "font": 1, + "e-nightwatch": 1, + "engine": 2, + "vulns": 2, + "syntax": 1, + "deliverable": 2.25, + "manual": 2.25, + "osx": 1, + "axe": 2.25, + "sendgrid": 1, + "operating": 2, + "system": 2, + "safety": 2.25, + "phonetic": 2.25, + "concept": 2.25, + "readme": 2.25, + "music": 1, + "failing": 1.7999999999999998, + "customer": 2, + "extension": 1, + "lint": 1, + "optimizing": 1, + "compiler": 1, + "css-select": 1, + "figma": 1, + "finance": 1, + "closed": 1.7999999999999998, + "due": 1.7999999999999998, + "inactivity": 1.7999999999999998, + "jira": 1, + "survey": 1, + "behavioral": 1, + "multi": 2, + "module": 2, + "mixing": 1, + "backlog": 2, + "update": 1, + "present": 1, + "modules": 1, + "lang-julia": 1, + "vuln": 1, + "demo": 1, + "corporate": 1, + "spam": 1, + "handshakes": 1, + "platform": 1, + "wave": 1, + "lang-convert": 1, + "gdpr": 1, + "classes": 1, + "websocket": 1, + "speach": 1, + "b": 1, + "patreon": 1, + "reviewed-changes-requested": 1, + "youtube": 1, + "(legacy)": 1, + "mentorship": 1, + "typescript": 1, + "didactic": 1, + "story": 1, + "academia": 1 + }, + "positive_weights_sum": {}, + "negative_weights_sum": {} + }, + "data": { + "positive_weights": { + "data": 16.000000000000007, + "collection": 9.481481481481485, + "bias": 0.000003906250000000005, + "analysis": 2, + "cleaning": 2, + "wrangling": 2, + "entry": 2, + "component": 0.75, + "developer": 0.75, + "tools": 0.75, + "inspiration": 0.5, + "business": 0.6666666666666667, + "process": 0.6666666666666667, + "sustain": 2, + "confirmed": 2, + "type": 0.75, + "question": 0.75, + "grey": 0.75, + "cmty": 2, + "need-info": 2, + "sustenance": 2, + "good": 0.75, + "first": 0.75, + "issue": 0.75, + "kind": 2, + "discussion": 2, + "palette": 2, + "azure": 2, + "ad": 2, + "external-bugs": 2, + "deal": 2, + "hacking": 2, + "video": 2, + "test": 2, + "utils": 2, + "hsv": 2, + "thesis": 2, + "pentesting": 2, + "design": 2, + "website": 2, + "copy": 2, + "bug": 2, + "guide": 2, + "next": 2, + "meetup!": 2, + "feat": 0.75, + "ui": 2, + "mastering": 2, + "steps": 2, + "abandoned": 2, + "badges": 2, + "sponsor": 2, + "assess": 2, + "pr": 0.8, + "merged": 2, + "vlog": 2, + "acceptance": 2, + "testing": 0.8, + "hot": 2, + "tv": 2, + "soundtrack": 2, + "(category)": 2, + "ci": 2, + "cd": 2, + "multi-cloud": 2, + "funding": 2, + "finder": 2, + "difficulty": 2, + "hard": 2, + "documentation": 2, + "book": 2, + "diary": 2, + "standard": 2, + "colour": 2, + "computer": 2, + "desktop": 2, + "flaw": 2, + "reliability": 2, + "cli-service": 0.75, + "build": 0.75, + "blocked": 2, + "maintenance": 2, + "construction": 2, + "ios": 2, + "planned": 2, + "feature": 0.8333333333333334, + "feature-request": 2, + "rfc": 2, + "image": 2, + "stock": 2, + "reminder": 2, + "status": 0.8, + "review": 2, + "needed": 2, + "in": 2, + "lang-crystal": 2, + "breaking": 2, + "change": 2, + "phone": 2, + "refactor": 2, + "monologue": 2, + "reviewed-approved": 2, + "new": 0.75, + "best": 0.75, + "practice": 0.75, + "lecture": 2, + "backing": 2, + "browser": 2, + "aws": 2, + "polish": 0.8, + "nail": 0.8, + "care": 0.8, + "article": 2, + "peer-review": 2, + "writer-needed": 2, + "eventstorming": 2, + "freemasonry": 2, + "icons": 2, + "lean": 2, + "cannot": 2, + "reproduce": 2, + "paas": 2, + "net": 2, + "core": 2, + "wiretap": 2, + "unit-jest": 2, + "instruction": 2, + "infrastructure": 2, + "rgb": 2, + "ideas": 2, + "target": 2, + "windows": 2, + "call": 2, + "iconography": 2, + "promote": 2, + "template": 2, + "support": 2, + "first-timers-only": 2, + "java": 2, + "cdn": 2, + "dependency": 2, + "ready": 0.8, + "for": 0.8, + "deploy": 0.8, + "troubleshooting": 2, + "spec": 2, + "bigint": 2, + "async": 2, + "generators": 2, + "proposal": 2, + "e": 2, + "approachability": 2, + "investment": 2, + "conflicts": 2, + "optimisation": 2, + "kotlin": 2, + "release": 2, + "unconfirmed": 2, + "duplicate": 2, + "repeat": 2, + "devops": 2, + "defend": 2, + "blogging": 2, + "friendliness": 2, + "i": 2, + "n": 2, + "cla": 2, + "signed": 2, + "icebox": 2, + "meetup": 2, + "examination": 2, + "mobile": 2, + "device": 2, + "api": 2, + "decorators": 2, + "addon": 2, + "cracking": 2, + "sparkles": 2, + "enhancement": 2, + "hooks": 2, + "improved": 2, + "error": 2, + "handling": 2, + "needs": 0.8, + "repro": 2, + "upkeep": 2, + "reactis": 2, + "to": 2, + "be": 2, + "sample": 2, + "white": 0.8, + "check": 0.8, + "mark": 0.8, + "external": 2, + "hacktoberfest": 2, + "lang-dart": 2, + "framework": 2, + "icon": 2, + "grant": 2, + "needs-research": 2, + "cybersec": 2, + "biz": 2, + "internationalization": 2, + "utility-lib": 2, + "qa": 2, + "do": 2, + "not": 2, + "merge": 2, + "hacked": 2, + "how-to": 2, + "beginner-friendly": 2, + "trello": 2, + "os": 2, + "sound": 2, + "docs": 2, + "improvement": 2, + "heavy": 0.8333333333333334, + "plus": 0.8333333333333334, + "sign": 0.8333333333333334, + "request": 0.8333333333333334, + "glitch": 2, + "cx": 2, + "dependencies": 2, + "inquiry": 2, + "deno": 2, + "area": 2, + "crash": 2, + "camera": 2, + "wip": 2, + "configure": 2, + "dom": 2, + "programming": 2, + "font-face": 2, + "rgba": 2, + "parser-specific": 2, + "wikipedia": 2, + "shell": 2, + "contributions": 2, + "tryout": 2, + "thought": 2, + "contenu": 2, + "cli": 2, + "fund": 0.0740740740740741, + "investigation": 2, + "basecamp": 2, + "literature": 2, + "socket": 2, + "io": 2, + "client": 2, + "fiscal": 2, + "user": 2, + "debug": 2, + "information": 2, + "frontend": 2, + "upstream": 2, + "raising": 2, + "hand": 2, + "style": 2, + "clean": 2, + "up": 2, + "motif": 2, + "event": 2, + "help": 2, + "wanted": 2, + "priority": 2, + "medium": 2, + "financial": 2, + "ruby": 2, + "es": 2, + "warrant": 2, + "cancelled": 2, + "plan": 2, + "hackathon": 2, + "beginner": 2, + "typography": 2, + "counsel": 2, + "recording": 2, + "crowdin": 2, + "eslint": 2, + "rules": 2, + "easy": 2, + "repare": 2, + "conference": 2, + "great": 2, + "insight": 2, + "phd": 2, + "orange": 2, + "invalid": 2, + "x": 2, + "changelog": 2, + "e-cypress": 2, + "lipstick": 2, + "-": 2, + "backdoor": 2, + "approved": 2, + "talk": 2, + "subtitle": 2, + "research": 2, + "todo": 2, + "spiral": 2, + "notepad": 2, + "interface": 2, + "critical": 2, + "privacy": 2, + "tests": 2, + "boom": 2, + "web": 2, + "app": 0.8, + "television": 2, + "uat": 2, + "backer": 2, + "exploit": 2, + "requires": 2, + "travis-yml": 2, + "node": 2, + "dev": 2, + "experience": 2, + "fix": 2, + "backend": 2, + "internal": 2, + "house": 2, + "technical": 2, + "debt": 2, + "weekly-digest": 2, + "shallow": 2, + "renderer": 2, + "commerce": 2, + "ie": 2, + "hsl": 2, + "left": 2, + "out": 2, + "welcome": 2, + "opinions": 2, + "documents": 2, + "legacy": 2, + "grafana": 2, + "react": 2, + "native": 2, + "lang-go": 2, + "tutorial": 2, + "plugin": 2, + "logo": 2, + "refactoring": 2, + "safari": 2, + "saltstack": 2, + "available": 2, + "server": 2, + "rendering": 2, + "htmlfile": 2, + "theorem": 2, + "social": 2, + "internationalisation": 2, + "definition": 2, + "enquire": 2, + "packaging": 2, + "lang-r": 2, + "regression": 2, + "container": 2, + "opencollective": 2, + "report": 2, + "performance": 2, + "clickup": 2, + "installer": 2, + "statement": 2, + "gcp": 2, + "opinion": 2, + "accepted": 2, + "html": 2, + "a": 0.8, + "y": 2, + "general": 2, + "js": 2, + "unit": 2, + "speak": 2, + "brainstorming": 2, + "backup": 2, + "language": 2, + "bugfix": 2, + "k": 2, + "s": 2, + "scrum": 2, + "paper": 2, + "library": 2, + "stale": 2, + "optimization": 2, + "show": 2, + "apple": 2, + "low": 2, + "functions": 2, + "gnu": 2, + "linux": 2, + "focus": 2, + "groups": 2, + "dependency-update": 2, + "related": 2, + "bootstrap": 2, + "usability": 2, + "*nix": 2, + "externs": 2, + "critique": 2, + "prince": 2, + "demonstration": 2, + "⬆️": 2, + "memo": 2, + "revisitinfuture": 2, + "tips": 2, + "reference": 2, + "high": 2, + "bug-report": 2, + "babel": 2, + "flashsocket": 2, + "unix": 2, + "npm": 2, + "site": 2, + "chore": 2, + "adapter": 2, + "slides": 2, + "query": 2, + "chat": 2, + "major": 2, + "alpha": 2, + "lock": 2, + "security": 2, + "newsletter": 2, + "verification": 2, + "color": 2, + "containerd": 2, + "doughnut": 2, + "sentry": 2, + "dissertation": 2, + "mentoring": 2, + "confer": 2, + "utilities": 2, + "infosec": 2, + "vulnerability": 2, + "has": 2, + "code": 2, + "teaching": 2, + "protection": 0.024691358024691367, + "robot": 2, + "android": 2, + "webaim": 2, + "wontfix": 2, + "triage": 2, + "contribution": 2, + "macos": 2, + "assertion": 2, + "blog": 2, + "progress": 2, + "future": 2, + "architecture": 2, + "enhancements": 2, + "pmi": 2, + "promotion": 2, + "validation": 2, + "art": 2, + "film": 2, + "bitbucket": 2, + "cloud": 2, + "labour": 2, + "python": 2, + "suggestion": 2, + "crypto": 2, + "attitudinal": 2, + "electron": 2, + "trial": 2, + "example": 0.8, + "resolution": 2, + "redirect": 2, + "assessment": 2, + "monitor": 2, + "css": 2, + "hack": 2, + "translation": 2, + "opportunity": 2, + "vultr": 2, + "kubernetes": 2, + "wiki": 2, + "parser": 2, + "pwa": 2, + "iphone": 2, + "program": 2, + "finding": 2, + "digital": 2, + "ocean": 2, + "safeguard": 2, + "iac": 2, + "javascript": 2, + "integration": 2, + "glo": 2, + "porting": 2, + "on": 2, + "hold": 2, + "evaluation": 2, + "go": 2, + "must-triage": 2, + "gradle": 2, + "accessibility": 2, + "work": 2, + "other": 2, + "sast": 2, + "tech-debt": 2, + "fault": 2, + "problem": 2, + "brand": 2, + "internal-issue-created": 2, + "pmp": 2, + "bdd": 2, + "checkpoint": 2, + "csharp": 2, + "unreviewed": 2, + "idea": 2, + "feedback": 2, + "requested": 2, + "wcag": 2, + "bugs": 2, + "mentor": 2, + "economics": 2, + "lib": 2, + "puppet": 2, + "speech": 2, + "balloon": 2, + "c": 2, + "c++": 2, + "bulb": 2, + "prometheus": 2, + "rocket": 2, + "discuss": 2, + "doc": 2, + "blogs": 2, + "unit-mocha": 2, + "enterprise": 2, + "scheduler": 2, + "class": 2, + "fields": 2, + "commercial": 2, + "infra": 2, + "terraform": 2, + "figure": 2, + "layout": 2, + "specification": 2, + "vector": 2, + "greenkeeper": 2, + "tdd": 2, + "raster": 2, + "mishap": 2, + "sketch": 2, + "released": 2, + "font": 2, + "deployment": 2, + "e-nightwatch": 2, + "engine": 2, + "vulns": 2, + "syntax": 2, + "deliverable": 2, + "manual": 2, + "osx": 2, + "axe": 2, + "sendgrid": 2, + "operating": 2, + "system": 2, + "advance": 2, + "workflow": 2, + "safety": 2, + "phonetic": 2, + "concept": 2, + "lerna": 2, + "readme": 2, + "music": 2, + "failing": 2, + "customer": 2, + "extension": 2, + "lint": 2, + "optimizing": 2, + "compiler": 2, + "css-select": 2, + "figma": 2, + "finance": 2, + "closed": 2, + "due": 2, + "inactivity": 2, + "jira": 2, + "survey": 2, + "behavioral": 2, + "multi": 2, + "module": 2, + "mixing": 2, + "backlog": 2, + "update": 2, + "present": 2, + "modules": 2, + "lang-julia": 2, + "vuln": 2, + "demo": 2, + "corporate": 2, + "spam": 2, + "handshakes": 2, + "platform": 2, + "wave": 2, + "ansible": 2, + "lang-convert": 2, + "gdpr": 2, + "classes": 2, + "websocket": 2, + "speach": 2, + "b": 2, + "chef": 2, + "patreon": 2, + "reviewed-changes-requested": 2, + "youtube": 2, + "(legacy)": 2, + "mentorship": 2, + "typescript": 2, + "didactic": 2, + "story": 2, + "academia": 2 + }, + "negative_weights": { + "data": 0.00045724737082761805, + "collection": 0.0036579789666209444, + "bias": 7.007904052734379, + "analysis": 1, + "cleaning": 1, + "wrangling": 1, + "entry": 1, + "component": 1.875, + "developer": 1.875, + "tools": 1.875, + "inspiration": 2.25, + "business": 2, + "process": 2, + "sustain": 1, + "confirmed": 1, + "type": 1.875, + "question": 1.875, + "grey": 1.875, + "cmty": 1, + "need-info": 1, + "sustenance": 1, + "good": 1.875, + "first": 1.875, + "issue": 1.875, + "kind": 1, + "discussion": 1, + "palette": 1, + "azure": 1, + "ad": 1, + "external-bugs": 1, + "deal": 1, + "hacking": 1, + "video": 1, + "test": 1, + "utils": 1, + "hsv": 1, + "thesis": 1, + "pentesting": 1, + "design": 1, + "website": 1, + "copy": 1, + "bug": 1, + "guide": 1, + "next": 1, + "meetup!": 1, + "feat": 1.875, + "ui": 1, + "mastering": 1, + "steps": 1, + "abandoned": 1, + "badges": 1, + "sponsor": 1, + "assess": 1, + "pr": 1.7999999999999998, + "merged": 1, + "vlog": 1, + "acceptance": 1, + "testing": 1.7999999999999998, + "hot": 1, + "tv": 1, + "soundtrack": 1, + "(category)": 1, + "ci": 1, + "cd": 1, + "multi-cloud": 1, + "funding": 1, + "finder": 1, + "difficulty": 1, + "hard": 1, + "documentation": 1, + "book": 1, + "diary": 1, + "standard": 1, + "colour": 1, + "computer": 1, + "desktop": 1, + "flaw": 1, + "reliability": 1, + "cli-service": 1.875, + "build": 1.875, + "blocked": 1, + "maintenance": 1, + "construction": 1, + "ios": 1, + "planned": 1, + "feature": 1.75, + "feature-request": 1, + "rfc": 1, + "image": 1, + "stock": 1, + "reminder": 1, + "status": 1.7999999999999998, + "review": 1, + "needed": 1, + "in": 1, + "lang-crystal": 1, + "breaking": 1, + "change": 1, + "phone": 1, + "refactor": 1, + "monologue": 1, + "reviewed-approved": 1, + "new": 1.875, + "best": 1.875, + "practice": 1.875, + "lecture": 1, + "backing": 1, + "browser": 1, + "aws": 1, + "polish": 1.7999999999999998, + "nail": 1.7999999999999998, + "care": 1.7999999999999998, + "article": 1, + "peer-review": 1, + "writer-needed": 1, + "eventstorming": 1, + "freemasonry": 1, + "icons": 1, + "lean": 1, + "cannot": 1, + "reproduce": 1, + "paas": 1, + "net": 1, + "core": 1, + "wiretap": 1, + "unit-jest": 1, + "instruction": 1, + "infrastructure": 1, + "rgb": 1, + "ideas": 1, + "target": 1, + "windows": 1, + "call": 1, + "iconography": 1, + "promote": 1, + "template": 1, + "support": 1, + "first-timers-only": 1, + "java": 1, + "cdn": 1, + "dependency": 1, + "ready": 1.7999999999999998, + "for": 1.7999999999999998, + "deploy": 1.7999999999999998, + "troubleshooting": 1, + "spec": 1, + "bigint": 1, + "async": 1, + "generators": 1, + "proposal": 1, + "e": 1, + "approachability": 1, + "investment": 1, + "conflicts": 1, + "optimisation": 1, + "kotlin": 1, + "release": 1, + "unconfirmed": 1, + "duplicate": 1, + "repeat": 1, + "devops": 1, + "defend": 1, + "blogging": 1, + "friendliness": 1, + "i": 1, + "n": 1, + "cla": 1, + "signed": 1, + "icebox": 1, + "meetup": 1, + "examination": 1, + "mobile": 1, + "device": 1, + "api": 1, + "decorators": 1, + "addon": 1, + "cracking": 1, + "sparkles": 1, + "enhancement": 1, + "hooks": 1, + "improved": 1, + "error": 1, + "handling": 1, + "needs": 1.7999999999999998, + "repro": 1, + "upkeep": 1, + "reactis": 1, + "to": 1, + "be": 1, + "sample": 1, + "white": 1.7999999999999998, + "check": 1.7999999999999998, + "mark": 1.7999999999999998, + "external": 1, + "hacktoberfest": 1, + "lang-dart": 1, + "framework": 1, + "icon": 1, + "grant": 1, + "needs-research": 1, + "cybersec": 1, + "biz": 1, + "internationalization": 1, + "utility-lib": 1, + "qa": 1, + "do": 1, + "not": 1, + "merge": 1, + "hacked": 1, + "how-to": 1, + "beginner-friendly": 1, + "trello": 1, + "os": 1, + "sound": 1, + "docs": 1, + "improvement": 1, + "heavy": 1.75, + "plus": 1.75, + "sign": 1.75, + "request": 1.75, + "glitch": 1, + "cx": 1, + "dependencies": 1, + "inquiry": 1, + "deno": 1, + "area": 1, + "crash": 1, + "camera": 1, + "wip": 1, + "configure": 1, + "dom": 1, + "programming": 1, + "font-face": 1, + "rgba": 1, + "parser-specific": 1, + "wikipedia": 1, + "shell": 1, + "contributions": 1, + "tryout": 1, + "thought": 1, + "contenu": 1, + "cli": 1, + "fund": 8, + "investigation": 1, + "basecamp": 1, + "literature": 1, + "socket": 1, + "io": 1, + "client": 1, + "fiscal": 1, + "user": 1, + "debug": 1, + "information": 1, + "frontend": 1, + "upstream": 1, + "raising": 1, + "hand": 1, + "style": 1, + "clean": 1, + "up": 1, + "motif": 1, + "event": 1, + "help": 1, + "wanted": 1, + "priority": 1, + "medium": 1, + "financial": 1, + "ruby": 1, + "es": 1, + "warrant": 1, + "cancelled": 1, + "plan": 1, + "hackathon": 1, + "beginner": 1, + "typography": 1, + "counsel": 1, + "recording": 1, + "crowdin": 1, + "eslint": 1, + "rules": 1, + "easy": 1, + "repare": 1, + "conference": 1, + "great": 1, + "insight": 1, + "phd": 1, + "orange": 1, + "invalid": 1, + "x": 1, + "changelog": 1, + "e-cypress": 1, + "lipstick": 1, + "-": 1, + "backdoor": 1, + "approved": 1, + "talk": 1, + "subtitle": 1, + "research": 1, + "todo": 1, + "spiral": 1, + "notepad": 1, + "interface": 1, + "critical": 1, + "privacy": 1, + "tests": 1, + "boom": 1, + "web": 1, + "app": 1.7999999999999998, + "television": 1, + "uat": 1, + "backer": 1, + "exploit": 1, + "requires": 1, + "travis-yml": 1, + "node": 1, + "dev": 1, + "experience": 1, + "fix": 1, + "backend": 1, + "internal": 1, + "house": 1, + "technical": 1, + "debt": 1, + "weekly-digest": 1, + "shallow": 1, + "renderer": 1, + "commerce": 1, + "ie": 1, + "hsl": 1, + "left": 1, + "out": 1, + "welcome": 1, + "opinions": 1, + "documents": 1, + "legacy": 1, + "grafana": 1, + "react": 1, + "native": 1, + "lang-go": 1, + "tutorial": 1, + "plugin": 1, + "logo": 1, + "refactoring": 1, + "safari": 1, + "saltstack": 1, + "available": 1, + "server": 1, + "rendering": 1, + "htmlfile": 1, + "theorem": 1, + "social": 1, + "internationalisation": 1, + "definition": 1, + "enquire": 1, + "packaging": 1, + "lang-r": 1, + "regression": 1, + "container": 1, + "opencollective": 1, + "report": 1, + "performance": 1, + "clickup": 1, + "installer": 1, + "statement": 1, + "gcp": 1, + "opinion": 1, + "accepted": 1, + "html": 1, + "a": 1.7999999999999998, + "y": 1, + "general": 1, + "js": 1, + "unit": 1, + "speak": 1, + "brainstorming": 1, + "backup": 1, + "language": 1, + "bugfix": 1, + "k": 1, + "s": 1, + "scrum": 1, + "paper": 1, + "library": 1, + "stale": 1, + "optimization": 1, + "show": 1, + "apple": 1, + "low": 1, + "functions": 1, + "gnu": 1, + "linux": 1, + "focus": 1, + "groups": 1, + "dependency-update": 1, + "related": 1, + "bootstrap": 1, + "usability": 1, + "*nix": 1, + "externs": 1, + "critique": 1, + "prince": 1, + "demonstration": 1, + "⬆️": 1, + "memo": 1, + "revisitinfuture": 1, + "tips": 1, + "reference": 1, + "high": 1, + "bug-report": 1, + "babel": 1, + "flashsocket": 1, + "unix": 1, + "npm": 1, + "site": 1, + "chore": 1, + "adapter": 1, + "slides": 1, + "query": 1, + "chat": 1, + "major": 1, + "alpha": 1, + "lock": 1, + "security": 1, + "newsletter": 1, + "verification": 1, + "color": 1, + "containerd": 1, + "doughnut": 1, + "sentry": 1, + "dissertation": 1, + "mentoring": 1, + "confer": 1, + "utilities": 1, + "infosec": 1, + "vulnerability": 1, + "has": 1, + "code": 1, + "teaching": 1, + "protection": 16, + "robot": 1, + "android": 1, + "webaim": 1, + "wontfix": 1, + "triage": 1, + "contribution": 1, + "macos": 1, + "assertion": 1, + "blog": 1, + "progress": 1, + "future": 1, + "architecture": 1, + "enhancements": 1, + "pmi": 1, + "promotion": 1, + "validation": 1, + "art": 1, + "film": 1, + "bitbucket": 1, + "cloud": 1, + "labour": 1, + "python": 1, + "suggestion": 1, + "crypto": 1, + "attitudinal": 1, + "electron": 1, + "trial": 1, + "example": 1.7999999999999998, + "resolution": 1, + "redirect": 1, + "assessment": 1, + "monitor": 1, + "css": 1, + "hack": 1, + "translation": 1, + "opportunity": 1, + "vultr": 1, + "kubernetes": 1, + "wiki": 1, + "parser": 1, + "pwa": 1, + "iphone": 1, + "program": 1, + "finding": 1, + "digital": 1, + "ocean": 1, + "safeguard": 1, + "iac": 1, + "javascript": 1, + "integration": 1, + "glo": 1, + "porting": 1, + "on": 1, + "hold": 1, + "evaluation": 1, + "go": 1, + "must-triage": 1, + "gradle": 1, + "accessibility": 1, + "work": 1, + "other": 1, + "sast": 1, + "tech-debt": 1, + "fault": 1, + "problem": 1, + "brand": 1, + "internal-issue-created": 1, + "pmp": 1, + "bdd": 1, + "checkpoint": 1, + "csharp": 1, + "unreviewed": 1, + "idea": 1, + "feedback": 1, + "requested": 1, + "wcag": 1, + "bugs": 1, + "mentor": 1, + "economics": 1, + "lib": 1, + "puppet": 1, + "speech": 1, + "balloon": 1, + "c": 1, + "c++": 1, + "bulb": 1, + "prometheus": 1, + "rocket": 1, + "discuss": 1, + "doc": 1, + "blogs": 1, + "unit-mocha": 1, + "enterprise": 1, + "scheduler": 1, + "class": 1, + "fields": 1, + "commercial": 1, + "infra": 1, + "terraform": 1, + "figure": 1, + "layout": 1, + "specification": 1, + "vector": 1, + "greenkeeper": 1, + "tdd": 1, + "raster": 1, + "mishap": 1, + "sketch": 1, + "released": 1, + "font": 1, + "deployment": 1, + "e-nightwatch": 1, + "engine": 1, + "vulns": 1, + "syntax": 1, + "deliverable": 1, + "manual": 1, + "osx": 1, + "axe": 1, + "sendgrid": 1, + "operating": 1, + "system": 1, + "advance": 1, + "workflow": 1, + "safety": 1, + "phonetic": 1, + "concept": 1, + "lerna": 1, + "readme": 1, + "music": 1, + "failing": 1, + "customer": 1, + "extension": 1, + "lint": 1, + "optimizing": 1, + "compiler": 1, + "css-select": 1, + "figma": 1, + "finance": 1, + "closed": 1, + "due": 1, + "inactivity": 1, + "jira": 1, + "survey": 1, + "behavioral": 1, + "multi": 1, + "module": 1, + "mixing": 1, + "backlog": 1, + "update": 1, + "present": 1, + "modules": 1, + "lang-julia": 1, + "vuln": 1, + "demo": 1, + "corporate": 1, + "spam": 1, + "handshakes": 1, + "platform": 1, + "wave": 1, + "ansible": 1, + "lang-convert": 1, + "gdpr": 1, + "classes": 1, + "websocket": 1, + "speach": 1, + "b": 1, + "chef": 1, + "patreon": 1, + "reviewed-changes-requested": 1, + "youtube": 1, + "(legacy)": 1, + "mentorship": 1, + "typescript": 1, + "didactic": 1, + "story": 1, + "academia": 1 + }, + "positive_weights_sum": {}, + "negative_weights_sum": {} + }, + "bug": { + "positive_weights": { + "external-bugs": 22.78125, + "bias": 8.984101256130625e-30, + "type": 0.2932995557785034, + "bug": 30, + "flaw": 22.78125, + "browser": 1.0534979423868318, + "issue": 13.5, + "troubleshooting": 22.78125, + "glitch": 22.78125, + "area": 1.7777777777777781, + "crash": 16, + "kind": 0.44444444444444453, + "debug": 8, + "information": 8, + "pr": 0.08000000000000003, + "fix": 3.75, + "regression": 17.597973346710212, + "boom": 3.955078125, + "report": 2, + "bugfix": 10.125, + "upstream": 2, + "cmty": 2.666666666666667, + "bug-report": 8, + "fault": 10.125, + "problem": 10.125, + "internal-issue-created": 10.125, + "bugs": 10.125, + "component": 0.28125, + "developer": 0.28125, + "tools": 0.28125, + "inspiration": 0.125, + "business": 0.6666666666666667, + "process": 0.6666666666666667, + "sustain": 0.5, + "confirmed": 0.5, + "question": 0.09375000000000001, + "grey": 0.28125, + "need-info": 0.5, + "sustenance": 0.5, + "good": 0.10546875, + "first": 0.10546875, + "discussion": 0.6666666666666667, + "palette": 0.5, + "azure": 0.6666666666666667, + "ad": 0.6666666666666667, + "data": 0.6666666666666667, + "collection": 0.6666666666666667, + "deal": 0.5, + "hacking": 0.5, + "video": 0.5, + "test": 0.024691358024691367, + "utils": 2, + "hsv": 0.5, + "thesis": 0.5, + "pentesting": 0.5, + "design": 0.5, + "website": 0.6666666666666667, + "copy": 0.6666666666666667, + "guide": 0.5, + "next": 0.6666666666666667, + "meetup!": 0.6666666666666667, + "feat": 0.25, + "ui": 0.6666666666666667, + "mastering": 0.5, + "steps": 0.5, + "abandoned": 0.5, + "badges": 0.5, + "sponsor": 0.5, + "assess": 0.5, + "merged": 0.6666666666666667, + "vlog": 0.5, + "acceptance": 0.6666666666666667, + "testing": 0.6666666666666667, + "hot": 2, + "tv": 0.5, + "soundtrack": 0.5, + "(category)": 2, + "ci": 0.6666666666666667, + "cd": 0.6666666666666667, + "multi-cloud": 0.5, + "funding": 0.6666666666666667, + "finder": 0.6666666666666667, + "difficulty": 0.6666666666666667, + "hard": 0.6666666666666667, + "documentation": 0.6666666666666667, + "book": 0.6666666666666667, + "diary": 0.5, + "standard": 0.5, + "colour": 0.5, + "computer": 0.6666666666666667, + "desktop": 0.6666666666666667, + "reliability": 0.5, + "cli-service": 0.75, + "build": 0.75, + "blocked": 0.5, + "maintenance": 0.75, + "construction": 0.75, + "ios": 0.5, + "planned": 2, + "feature": 0.8333333333333333, + "feature-request": 0.6666666666666667, + "rfc": 0.5, + "image": 0.6666666666666667, + "stock": 2, + "reminder": 2, + "status": 0.8, + "review": 0.6666666666666667, + "needed": 2, + "in": 0.6666666666666667, + "lang-crystal": 2, + "breaking": 0.32000000000000006, + "change": 0.32000000000000006, + "phone": 2, + "refactor": 2, + "monologue": 2, + "reviewed-approved": 2, + "new": 0.75, + "best": 0.75, + "practice": 0.75, + "lecture": 2, + "backing": 2, + "aws": 2, + "polish": 0.8, + "nail": 0.8, + "care": 0.8, + "article": 2, + "peer-review": 2, + "writer-needed": 2, + "eventstorming": 2, + "freemasonry": 0.6666666666666667, + "icons": 0.6666666666666667, + "lean": 2, + "cannot": 0.6666666666666667, + "reproduce": 0.6666666666666667, + "paas": 2, + "net": 2, + "core": 2, + "wiretap": 2, + "unit-jest": 2, + "instruction": 2, + "infrastructure": 2, + "rgb": 2, + "ideas": 2, + "target": 0.6666666666666667, + "windows": 2, + "call": 2, + "iconography": 2, + "promote": 2, + "template": 2, + "support": 0.75, + "first-timers-only": 2, + "java": 2, + "cdn": 2, + "dependency": 2, + "ready": 0.8, + "for": 0.8, + "deploy": 0.8, + "spec": 0.75, + "bigint": 2, + "async": 0.75, + "generators": 0.75, + "proposal": 2, + "e": 2, + "approachability": 2, + "investment": 2, + "conflicts": 2, + "optimisation": 2, + "kotlin": 2, + "release": 0.8, + "unconfirmed": 2, + "duplicate": 0.75, + "repeat": 0.75, + "devops": 2, + "defend": 2, + "blogging": 2, + "friendliness": 2, + "i": 2, + "n": 2, + "cla": 2, + "signed": 2, + "icebox": 2, + "meetup": 2, + "examination": 2, + "mobile": 0.75, + "device": 0.75, + "api": 2, + "decorators": 2, + "addon": 2, + "cracking": 2, + "sparkles": 2, + "enhancement": 0.75, + "hooks": 2, + "improved": 0.75, + "error": 0.75, + "handling": 0.75, + "needs": 0.8, + "repro": 2, + "upkeep": 2, + "reactis": 2, + "to": 0.8, + "be": 2, + "sample": 2, + "white": 2, + "check": 2, + "mark": 2, + "external": 2, + "hacktoberfest": 2, + "lang-dart": 2, + "framework": 2, + "icon": 2, + "grant": 2, + "needs-research": 2, + "cybersec": 2, + "biz": 2, + "internationalization": 2, + "utility-lib": 2, + "qa": 2, + "do": 2, + "not": 2, + "merge": 2, + "hacked": 2, + "how-to": 2, + "beginner-friendly": 2, + "trello": 2, + "os": 2, + "sound": 2, + "docs": 2, + "improvement": 2, + "heavy": 0.8333333333333333, + "plus": 0.8333333333333333, + "sign": 0.8333333333333333, + "request": 0.8333333333333333, + "cx": 2, + "dependencies": 2, + "inquiry": 2, + "deno": 2, + "camera": 2, + "wip": 2, + "configure": 2, + "dom": 2, + "programming": 2, + "font-face": 2, + "rgba": 2, + "parser-specific": 2, + "wikipedia": 2, + "shell": 2, + "contributions": 2, + "tryout": 2, + "thought": 2, + "analysis": 2, + "contenu": 2, + "cli": 0.22222222222222227, + "fund": 2, + "investigation": 2, + "basecamp": 2, + "literature": 2, + "socket": 2, + "io": 2, + "client": 0.8, + "fiscal": 2, + "user": 2, + "frontend": 2, + "raising": 2, + "hand": 2, + "style": 2, + "clean": 2, + "up": 2, + "motif": 2, + "event": 2, + "help": 2, + "wanted": 2, + "priority": 2, + "medium": 2, + "financial": 2, + "ruby": 2, + "es": 2, + "warrant": 2, + "cancelled": 2, + "plan": 2, + "hackathon": 2, + "beginner": 2, + "typography": 2, + "counsel": 2, + "recording": 2, + "crowdin": 2, + "eslint": 2, + "rules": 2, + "easy": 2, + "repare": 2, + "conference": 2, + "great": 2, + "insight": 2, + "phd": 2, + "orange": 2, + "invalid": 2, + "x": 2, + "changelog": 2, + "e-cypress": 2, + "lipstick": 2, + "-": 2, + "backdoor": 2, + "approved": 2, + "talk": 2, + "subtitle": 2, + "research": 2, + "todo": 2, + "spiral": 2, + "notepad": 2, + "interface": 2, + "critical": 2, + "privacy": 2, + "tests": 2, + "web": 2, + "app": 0.8, + "television": 2, + "uat": 2, + "backer": 2, + "exploit": 2, + "requires": 2, + "travis-yml": 2, + "node": 2, + "dev": 2, + "experience": 2, + "backend": 2, + "cleaning": 2, + "internal": 0.8, + "house": 2, + "technical": 2, + "debt": 2, + "weekly-digest": 2, + "shallow": 2, + "renderer": 2, + "commerce": 2, + "ie": 0.0740740740740741, + "hsl": 2, + "left": 2, + "out": 2, + "welcome": 2, + "opinions": 2, + "documents": 2, + "legacy": 2, + "grafana": 2, + "react": 2, + "native": 2, + "lang-go": 2, + "tutorial": 2, + "plugin": 2, + "logo": 2, + "refactoring": 2, + "safari": 0.6666666666666667, + "saltstack": 2, + "available": 2, + "server": 2, + "rendering": 2, + "htmlfile": 2, + "theorem": 2, + "social": 2, + "internationalisation": 2, + "definition": 2, + "enquire": 2, + "packaging": 2, + "lang-r": 2, + "container": 2, + "opencollective": 2, + "performance": 2, + "clickup": 2, + "installer": 2, + "statement": 2, + "gcp": 2, + "opinion": 2, + "accepted": 2, + "html": 2, + "a": 0.8, + "y": 2, + "general": 2, + "js": 2, + "unit": 2, + "speak": 2, + "brainstorming": 2, + "backup": 2, + "language": 2, + "k": 2, + "s": 2, + "scrum": 2, + "paper": 2, + "library": 2, + "stale": 2, + "optimization": 2, + "show": 2, + "apple": 2, + "low": 2, + "functions": 2, + "gnu": 2, + "linux": 2, + "focus": 2, + "groups": 2, + "dependency-update": 2, + "related": 2, + "bootstrap": 2, + "usability": 2, + "*nix": 2, + "externs": 2, + "critique": 2, + "prince": 2, + "demonstration": 2, + "⬆️": 2, + "memo": 2, + "revisitinfuture": 2, + "tips": 2, + "reference": 2, + "high": 2, + "babel": 2, + "flashsocket": 2, + "unix": 2, + "npm": 2, + "site": 2, + "chore": 2, + "adapter": 2, + "slides": 2, + "query": 2, + "chat": 2, + "major": 2, + "alpha": 2, + "lock": 2, + "security": 2, + "newsletter": 2, + "verification": 2, + "color": 2, + "containerd": 2, + "doughnut": 2, + "sentry": 2, + "dissertation": 2, + "mentoring": 2, + "confer": 2, + "utilities": 2, + "infosec": 2, + "vulnerability": 2, + "has": 2, + "code": 2, + "teaching": 2, + "protection": 2, + "robot": 2, + "android": 2, + "webaim": 2, + "wontfix": 2, + "triage": 2, + "contribution": 2, + "macos": 2, + "assertion": 2, + "blog": 2, + "progress": 2, + "future": 2, + "architecture": 2, + "enhancements": 2, + "pmi": 2, + "promotion": 2, + "validation": 2, + "art": 2, + "film": 2, + "bitbucket": 2, + "cloud": 2, + "labour": 2, + "python": 2, + "suggestion": 2, + "crypto": 2, + "attitudinal": 2, + "electron": 2, + "trial": 2, + "example": 0.8, + "resolution": 2, + "redirect": 2, + "assessment": 2, + "monitor": 2, + "css": 2, + "hack": 2, + "translation": 2, + "opportunity": 2, + "vultr": 2, + "kubernetes": 2, + "wiki": 2, + "parser": 2, + "pwa": 2, + "iphone": 2, + "program": 2, + "finding": 2, + "digital": 2, + "ocean": 2, + "safeguard": 2, + "iac": 2, + "javascript": 2, + "integration": 2, + "glo": 2, + "porting": 2, + "on": 2, + "hold": 2, + "evaluation": 2, + "go": 0.8, + "must-triage": 2, + "gradle": 2, + "accessibility": 2, + "work": 2, + "other": 2, + "wrangling": 2, + "sast": 2, + "tech-debt": 2, + "entry": 2, + "brand": 2, + "pmp": 2, + "bdd": 2, + "checkpoint": 2, + "csharp": 2, + "unreviewed": 2, + "idea": 2, + "feedback": 2, + "requested": 2, + "wcag": 2, + "mentor": 2, + "economics": 2, + "lib": 2, + "puppet": 2, + "speech": 0.8, + "balloon": 0.8, + "mishap": 10.125, + "c": 0.6666666666666667, + "c++": 0.6666666666666667, + "bulb": 0.75, + "prometheus": 0.5, + "rocket": 0.6666666666666667, + "discuss": 0.8, + "doc": 2, + "blogs": 2, + "unit-mocha": 2, + "enterprise": 2, + "scheduler": 2, + "class": 2, + "fields": 2, + "commercial": 2, + "infra": 2, + "terraform": 2, + "figure": 2, + "layout": 2, + "specification": 2, + "vector": 0.6666666666666667, + "greenkeeper": 2, + "tdd": 2, + "raster": 2, + "sketch": 2, + "released": 2, + "font": 2, + "deployment": 0.6666666666666667, + "e-nightwatch": 2, + "engine": 0.6666666666666667, + "vulns": 0.6666666666666667, + "syntax": 2, + "deliverable": 2, + "manual": 2, + "osx": 2, + "axe": 2, + "sendgrid": 2, + "operating": 2, + "system": 2, + "advance": 2, + "workflow": 2, + "safety": 2, + "phonetic": 2, + "concept": 2, + "lerna": 2, + "readme": 2, + "music": 2, + "failing": 2, + "customer": 2, + "extension": 2, + "lint": 2, + "optimizing": 2, + "compiler": 2, + "css-select": 2, + "figma": 2, + "finance": 2, + "closed": 0.8, + "due": 0.8, + "inactivity": 0.8, + "jira": 2, + "survey": 2, + "behavioral": 2, + "multi": 2, + "module": 2, + "mixing": 2, + "backlog": 2, + "update": 2, + "present": 2, + "modules": 2, + "lang-julia": 2, + "vuln": 2, + "demo": 2, + "corporate": 2, + "spam": 2, + "handshakes": 2, + "platform": 2, + "wave": 2, + "ansible": 2, + "lang-convert": 2, + "gdpr": 2, + "classes": 2, + "websocket": 2, + "speach": 2, + "b": 2, + "chef": 2, + "patreon": 2, + "reviewed-changes-requested": 2, + "youtube": 2, + "(legacy)": 2, + "mentorship": 2, + "typescript": 2, + "didactic": 2, + "story": 2, + "academia": 2 + }, + "negative_weights": { + "external-bugs": 0.015625, + "bias": 3.4406094719533624, + "type": 0.09165611118078235, + "bug": 0.013888888888888892, + "flaw": 0.015625, + "browser": 0.014631915866483778, + "issue": 0.0030140817901234593, + "troubleshooting": 0.015625, + "glitch": 0.015625, + "area": 0.1481481481481482, + "crash": 0.03703703703703705, + "kind": 1.3333333333333335, + "debug": 0.11111111111111113, + "information": 0.11111111111111113, + "pr": 4.373999999999999, + "fix": 0.375, + "regression": 0.000308990478515625, + "boom": 0.06407226562499999, + "report": 1, + "bugfix": 0.0625, + "upstream": 1, + "cmty": 0.22222222222222227, + "bug-report": 0.11111111111111113, + "fault": 0.0625, + "problem": 0.0625, + "internal-issue-created": 0.0625, + "bugs": 0.0625, + "component": 3.515625, + "developer": 3.515625, + "tools": 3.515625, + "inspiration": 5.0625, + "business": 2, + "process": 2, + "sustain": 2.25, + "confirmed": 2.25, + "question": 7.03125, + "grey": 3.515625, + "need-info": 2.25, + "sustenance": 2.25, + "good": 6.591796875, + "first": 6.591796875, + "discussion": 2, + "palette": 2.25, + "azure": 2, + "ad": 2, + "data": 2, + "collection": 2, + "deal": 2.25, + "hacking": 2.25, + "video": 2.25, + "test": 16, + "utils": 1, + "hsv": 2.25, + "thesis": 2.25, + "pentesting": 2.25, + "design": 2.25, + "website": 2, + "copy": 2, + "guide": 2.25, + "next": 2, + "meetup!": 2, + "feat": 3.75, + "ui": 2, + "mastering": 2.25, + "steps": 2.25, + "abandoned": 2.25, + "badges": 2.25, + "sponsor": 2.25, + "assess": 2.25, + "merged": 2, + "vlog": 2.25, + "acceptance": 2, + "testing": 2, + "hot": 1, + "tv": 2.25, + "soundtrack": 2.25, + "(category)": 1, + "ci": 2, + "cd": 2, + "multi-cloud": 2.25, + "funding": 2, + "finder": 2, + "difficulty": 2, + "hard": 2, + "documentation": 2, + "book": 2, + "diary": 2.25, + "standard": 2.25, + "colour": 2.25, + "computer": 2, + "desktop": 2, + "reliability": 2.25, + "cli-service": 1.875, + "build": 1.875, + "blocked": 2.25, + "maintenance": 1.875, + "construction": 1.875, + "ios": 2.25, + "planned": 1, + "feature": 1.75, + "feature-request": 2, + "rfc": 2.25, + "image": 2, + "stock": 1, + "reminder": 1, + "status": 1.7999999999999998, + "review": 2, + "needed": 1, + "in": 2, + "lang-crystal": 1, + "breaking": 3.2399999999999993, + "change": 3.2399999999999993, + "phone": 1, + "refactor": 1, + "monologue": 1, + "reviewed-approved": 1, + "new": 1.875, + "best": 1.875, + "practice": 1.875, + "lecture": 1, + "backing": 1, + "aws": 1, + "polish": 1.7999999999999998, + "nail": 1.7999999999999998, + "care": 1.7999999999999998, + "article": 1, + "peer-review": 1, + "writer-needed": 1, + "eventstorming": 1, + "freemasonry": 2, + "icons": 2, + "lean": 1, + "cannot": 2, + "reproduce": 2, + "paas": 1, + "net": 1, + "core": 1, + "wiretap": 1, + "unit-jest": 1, + "instruction": 1, + "infrastructure": 1, + "rgb": 1, + "ideas": 1, + "target": 2, + "windows": 1, + "call": 1, + "iconography": 1, + "promote": 1, + "template": 1, + "support": 1.875, + "first-timers-only": 1, + "java": 1, + "cdn": 1, + "dependency": 1, + "ready": 1.7999999999999998, + "for": 1.7999999999999998, + "deploy": 1.7999999999999998, + "spec": 1.875, + "bigint": 1, + "async": 1.875, + "generators": 1.875, + "proposal": 1, + "e": 1, + "approachability": 1, + "investment": 1, + "conflicts": 1, + "optimisation": 1, + "kotlin": 1, + "release": 1.7999999999999998, + "unconfirmed": 1, + "duplicate": 1.875, + "repeat": 1.875, + "devops": 1, + "defend": 1, + "blogging": 1, + "friendliness": 1, + "i": 1, + "n": 1, + "cla": 1, + "signed": 1, + "icebox": 1, + "meetup": 1, + "examination": 1, + "mobile": 1.875, + "device": 1.875, + "api": 1, + "decorators": 1, + "addon": 1, + "cracking": 1, + "sparkles": 1, + "enhancement": 1.875, + "hooks": 1, + "improved": 1.875, + "error": 1.875, + "handling": 1.875, + "needs": 1.7999999999999998, + "repro": 1, + "upkeep": 1, + "reactis": 1, + "to": 1.7999999999999998, + "be": 1, + "sample": 1, + "white": 1, + "check": 1, + "mark": 1, + "external": 1, + "hacktoberfest": 1, + "lang-dart": 1, + "framework": 1, + "icon": 1, + "grant": 1, + "needs-research": 1, + "cybersec": 1, + "biz": 1, + "internationalization": 1, + "utility-lib": 1, + "qa": 1, + "do": 1, + "not": 1, + "merge": 1, + "hacked": 1, + "how-to": 1, + "beginner-friendly": 1, + "trello": 1, + "os": 1, + "sound": 1, + "docs": 1, + "improvement": 1, + "heavy": 1.75, + "plus": 1.75, + "sign": 1.75, + "request": 1.75, + "cx": 1, + "dependencies": 1, + "inquiry": 1, + "deno": 1, + "camera": 1, + "wip": 1, + "configure": 1, + "dom": 1, + "programming": 1, + "font-face": 1, + "rgba": 1, + "parser-specific": 1, + "wikipedia": 1, + "shell": 1, + "contributions": 1, + "tryout": 1, + "thought": 1, + "analysis": 1, + "contenu": 1, + "cli": 4, + "fund": 1, + "investigation": 1, + "basecamp": 1, + "literature": 1, + "socket": 1, + "io": 1, + "client": 1.7999999999999998, + "fiscal": 1, + "user": 1, + "frontend": 1, + "raising": 1, + "hand": 1, + "style": 1, + "clean": 1, + "up": 1, + "motif": 1, + "event": 1, + "help": 1, + "wanted": 1, + "priority": 1, + "medium": 1, + "financial": 1, + "ruby": 1, + "es": 1, + "warrant": 1, + "cancelled": 1, + "plan": 1, + "hackathon": 1, + "beginner": 1, + "typography": 1, + "counsel": 1, + "recording": 1, + "crowdin": 1, + "eslint": 1, + "rules": 1, + "easy": 1, + "repare": 1, + "conference": 1, + "great": 1, + "insight": 1, + "phd": 1, + "orange": 1, + "invalid": 1, + "x": 1, + "changelog": 1, + "e-cypress": 1, + "lipstick": 1, + "-": 1, + "backdoor": 1, + "approved": 1, + "talk": 1, + "subtitle": 1, + "research": 1, + "todo": 1, + "spiral": 1, + "notepad": 1, + "interface": 1, + "critical": 1, + "privacy": 1, + "tests": 1, + "web": 1, + "app": 1.7999999999999998, + "television": 1, + "uat": 1, + "backer": 1, + "exploit": 1, + "requires": 1, + "travis-yml": 1, + "node": 1, + "dev": 1, + "experience": 1, + "backend": 1, + "cleaning": 1, + "internal": 1.7999999999999998, + "house": 1, + "technical": 1, + "debt": 1, + "weekly-digest": 1, + "shallow": 1, + "renderer": 1, + "commerce": 1, + "ie": 8, + "hsl": 1, + "left": 1, + "out": 1, + "welcome": 1, + "opinions": 1, + "documents": 1, + "legacy": 1, + "grafana": 1, + "react": 1, + "native": 1, + "lang-go": 1, + "tutorial": 1, + "plugin": 1, + "logo": 1, + "refactoring": 1, + "safari": 2, + "saltstack": 1, + "available": 1, + "server": 1, + "rendering": 1, + "htmlfile": 1, + "theorem": 1, + "social": 1, + "internationalisation": 1, + "definition": 1, + "enquire": 1, + "packaging": 1, + "lang-r": 1, + "container": 1, + "opencollective": 1, + "performance": 1, + "clickup": 1, + "installer": 1, + "statement": 1, + "gcp": 1, + "opinion": 1, + "accepted": 1, + "html": 1, + "a": 1.7999999999999998, + "y": 1, + "general": 1, + "js": 1, + "unit": 1, + "speak": 1, + "brainstorming": 1, + "backup": 1, + "language": 1, + "k": 1, + "s": 1, + "scrum": 1, + "paper": 1, + "library": 1, + "stale": 1, + "optimization": 1, + "show": 1, + "apple": 1, + "low": 1, + "functions": 1, + "gnu": 1, + "linux": 1, + "focus": 1, + "groups": 1, + "dependency-update": 1, + "related": 1, + "bootstrap": 1, + "usability": 1, + "*nix": 1, + "externs": 1, + "critique": 1, + "prince": 1, + "demonstration": 1, + "⬆️": 1, + "memo": 1, + "revisitinfuture": 1, + "tips": 1, + "reference": 1, + "high": 1, + "babel": 1, + "flashsocket": 1, + "unix": 1, + "npm": 1, + "site": 1, + "chore": 1, + "adapter": 1, + "slides": 1, + "query": 1, + "chat": 1, + "major": 1, + "alpha": 1, + "lock": 1, + "security": 1, + "newsletter": 1, + "verification": 1, + "color": 1, + "containerd": 1, + "doughnut": 1, + "sentry": 1, + "dissertation": 1, + "mentoring": 1, + "confer": 1, + "utilities": 1, + "infosec": 1, + "vulnerability": 1, + "has": 1, + "code": 1, + "teaching": 1, + "protection": 1, + "robot": 1, + "android": 1, + "webaim": 1, + "wontfix": 1, + "triage": 1, + "contribution": 1, + "macos": 1, + "assertion": 1, + "blog": 1, + "progress": 1, + "future": 1, + "architecture": 1, + "enhancements": 1, + "pmi": 1, + "promotion": 1, + "validation": 1, + "art": 1, + "film": 1, + "bitbucket": 1, + "cloud": 1, + "labour": 1, + "python": 1, + "suggestion": 1, + "crypto": 1, + "attitudinal": 1, + "electron": 1, + "trial": 1, + "example": 1.7999999999999998, + "resolution": 1, + "redirect": 1, + "assessment": 1, + "monitor": 1, + "css": 1, + "hack": 1, + "translation": 1, + "opportunity": 1, + "vultr": 1, + "kubernetes": 1, + "wiki": 1, + "parser": 1, + "pwa": 1, + "iphone": 1, + "program": 1, + "finding": 1, + "digital": 1, + "ocean": 1, + "safeguard": 1, + "iac": 1, + "javascript": 1, + "integration": 1, + "glo": 1, + "porting": 1, + "on": 1, + "hold": 1, + "evaluation": 1, + "go": 1.7999999999999998, + "must-triage": 1, + "gradle": 1, + "accessibility": 1, + "work": 1, + "other": 1, + "wrangling": 1, + "sast": 1, + "tech-debt": 1, + "entry": 1, + "brand": 1, + "pmp": 1, + "bdd": 1, + "checkpoint": 1, + "csharp": 1, + "unreviewed": 1, + "idea": 1, + "feedback": 1, + "requested": 1, + "wcag": 1, + "mentor": 1, + "economics": 1, + "lib": 1, + "puppet": 1, + "speech": 1.7999999999999998, + "balloon": 1.7999999999999998, + "mishap": 0.0625, + "c": 2, + "c++": 2, + "bulb": 1.875, + "prometheus": 2.25, + "rocket": 2, + "discuss": 1.7999999999999998, + "doc": 1, + "blogs": 1, + "unit-mocha": 1, + "enterprise": 1, + "scheduler": 1, + "class": 1, + "fields": 1, + "commercial": 1, + "infra": 1, + "terraform": 1, + "figure": 1, + "layout": 1, + "specification": 1, + "vector": 2, + "greenkeeper": 1, + "tdd": 1, + "raster": 1, + "sketch": 1, + "released": 1, + "font": 1, + "deployment": 2, + "e-nightwatch": 1, + "engine": 2, + "vulns": 2, + "syntax": 1, + "deliverable": 1, + "manual": 1, + "osx": 1, + "axe": 1, + "sendgrid": 1, + "operating": 1, + "system": 1, + "advance": 1, + "workflow": 1, + "safety": 1, + "phonetic": 1, + "concept": 1, + "lerna": 1, + "readme": 1, + "music": 1, + "failing": 1, + "customer": 1, + "extension": 1, + "lint": 1, + "optimizing": 1, + "compiler": 1, + "css-select": 1, + "figma": 1, + "finance": 1, + "closed": 1.7999999999999998, + "due": 1.7999999999999998, + "inactivity": 1.7999999999999998, + "jira": 1, + "survey": 1, + "behavioral": 1, + "multi": 1, + "module": 1, + "mixing": 1, + "backlog": 1, + "update": 1, + "present": 1, + "modules": 1, + "lang-julia": 1, + "vuln": 1, + "demo": 1, + "corporate": 1, + "spam": 1, + "handshakes": 1, + "platform": 1, + "wave": 1, + "ansible": 1, + "lang-convert": 1, + "gdpr": 1, + "classes": 1, + "websocket": 1, + "speach": 1, + "b": 1, + "chef": 1, + "patreon": 1, + "reviewed-changes-requested": 1, + "youtube": 1, + "(legacy)": 1, + "mentorship": 1, + "typescript": 1, + "didactic": 1, + "story": 1, + "academia": 1 + }, + "positive_weights_sum": {}, + "negative_weights_sum": {} + }, + "security": { + "positive_weights": { + "hacking": 22.78125, + "bias": 5.041312284206032e-28, + "pentesting": 10.125, + "wiretap": 10.125, + "cracking": 10.125, + "cybersec": 10.125, + "hacked": 10.125, + "warrant": 10.125, + "backdoor": 10.125, + "privacy": 10.125, + "exploit": 10.125, + "lock": 8, + "security": 16, + "infosec": 10.125, + "vulnerability": 10.125, + "protection": 20.25, + "data": 1.3333333333333335, + "safeguard": 10.125, + "sast": 10.125, + "component": 0.28125, + "developer": 0.28125, + "tools": 0.28125, + "inspiration": 0.125, + "business": 0.6666666666666667, + "process": 0.6666666666666667, + "sustain": 0.5, + "confirmed": 0.5, + "type": 0.084375, + "question": 0.75, + "grey": 0.75, + "cmty": 2, + "need-info": 0.5, + "sustenance": 0.5, + "good": 0.75, + "first": 0.75, + "issue": 0.75, + "kind": 0.6666666666666667, + "discussion": 0.6666666666666667, + "palette": 0.5, + "azure": 0.6666666666666667, + "ad": 0.6666666666666667, + "collection": 0.6666666666666667, + "external-bugs": 0.5, + "deal": 0.5, + "video": 0.5, + "test": 0.8, + "utils": 2, + "hsv": 0.5, + "thesis": 0.5, + "design": 0.5, + "website": 0.6666666666666667, + "copy": 0.6666666666666667, + "bug": 2, + "guide": 0.5, + "next": 0.6666666666666667, + "meetup!": 0.6666666666666667, + "feat": 0.25, + "ui": 0.6666666666666667, + "mastering": 0.5, + "steps": 0.5, + "abandoned": 0.5, + "badges": 0.5, + "sponsor": 0.5, + "assess": 0.5, + "pr": 0.8, + "merged": 2, + "vlog": 0.5, + "acceptance": 0.6666666666666667, + "testing": 0.6666666666666667, + "hot": 2, + "tv": 0.5, + "soundtrack": 0.5, + "(category)": 2, + "ci": 0.6666666666666667, + "cd": 0.6666666666666667, + "multi-cloud": 0.5, + "funding": 0.6666666666666667, + "finder": 0.6666666666666667, + "difficulty": 0.6666666666666667, + "hard": 0.6666666666666667, + "documentation": 0.6666666666666667, + "book": 0.6666666666666667, + "diary": 0.5, + "standard": 0.5, + "colour": 0.5, + "computer": 0.6666666666666667, + "desktop": 0.6666666666666667, + "flaw": 0.5, + "reliability": 0.5, + "cli-service": 0.75, + "build": 0.75, + "blocked": 0.5, + "maintenance": 0.75, + "construction": 0.75, + "ios": 0.5, + "planned": 2, + "feature": 0.8333333333333334, + "feature-request": 2, + "rfc": 0.5, + "image": 0.5, + "stock": 2, + "reminder": 2, + "status": 0.8, + "review": 0.6666666666666667, + "needed": 2, + "in": 0.6666666666666667, + "lang-crystal": 2, + "breaking": 2, + "change": 2, + "phone": 2, + "refactor": 2, + "monologue": 2, + "reviewed-approved": 2, + "new": 0.75, + "best": 0.75, + "practice": 0.75, + "lecture": 2, + "backing": 2, + "browser": 2, + "aws": 2, + "polish": 0.8, + "nail": 0.8, + "care": 0.8, + "article": 2, + "peer-review": 2, + "writer-needed": 2, + "eventstorming": 2, + "freemasonry": 0.6666666666666667, + "icons": 0.6666666666666667, + "lean": 2, + "cannot": 0.6666666666666667, + "reproduce": 0.6666666666666667, + "paas": 2, + "net": 0.6666666666666667, + "core": 0.6666666666666667, + "unit-jest": 2, + "instruction": 2, + "infrastructure": 2, + "rgb": 2, + "ideas": 2, + "target": 0.6666666666666667, + "windows": 2, + "call": 2, + "iconography": 2, + "promote": 2, + "template": 2, + "support": 0.75, + "first-timers-only": 2, + "java": 2, + "cdn": 2, + "dependency": 2, + "ready": 0.8, + "for": 0.8, + "deploy": 0.8, + "troubleshooting": 2, + "spec": 0.75, + "bigint": 2, + "async": 0.75, + "generators": 0.75, + "proposal": 2, + "e": 2, + "approachability": 2, + "investment": 2, + "conflicts": 2, + "optimisation": 2, + "kotlin": 2, + "release": 2, + "unconfirmed": 2, + "duplicate": 2, + "repeat": 2, + "devops": 2, + "defend": 2, + "blogging": 2, + "friendliness": 2, + "i": 2, + "n": 2, + "cla": 2, + "signed": 2, + "icebox": 2, + "meetup": 2, + "examination": 2, + "mobile": 0.75, + "device": 0.75, + "api": 2, + "decorators": 2, + "addon": 2, + "sparkles": 2, + "enhancement": 0.75, + "hooks": 2, + "improved": 0.75, + "error": 0.75, + "handling": 0.75, + "needs": 0.8, + "repro": 2, + "upkeep": 2, + "reactis": 2, + "to": 0.8, + "be": 2, + "sample": 2, + "white": 2, + "check": 2, + "mark": 2, + "external": 2, + "hacktoberfest": 2, + "lang-dart": 2, + "framework": 2, + "icon": 2, + "grant": 2, + "needs-research": 2, + "biz": 2, + "internationalization": 2, + "utility-lib": 2, + "qa": 2, + "do": 0.75, + "not": 0.75, + "merge": 0.75, + "how-to": 2, + "beginner-friendly": 2, + "trello": 2, + "os": 2, + "sound": 2, + "docs": 2, + "improvement": 2, + "heavy": 0.8333333333333334, + "plus": 0.8333333333333334, + "sign": 0.8333333333333334, + "request": 0.8333333333333334, + "glitch": 2, + "cx": 2, + "dependencies": 2, + "inquiry": 2, + "deno": 2, + "area": 2, + "crash": 2, + "camera": 2, + "wip": 2, + "configure": 2, + "dom": 2, + "programming": 2, + "font-face": 2, + "rgba": 2, + "parser-specific": 2, + "wikipedia": 2, + "shell": 2, + "contributions": 2, + "tryout": 2, + "thought": 2, + "analysis": 2, + "contenu": 2, + "cli": 2, + "fund": 2, + "investigation": 2, + "basecamp": 2, + "literature": 2, + "socket": 0.75, + "io": 0.75, + "client": 0.75, + "fiscal": 2, + "user": 2, + "debug": 2, + "information": 2, + "frontend": 2, + "upstream": 2, + "raising": 2, + "hand": 2, + "style": 2, + "clean": 2, + "up": 2, + "motif": 2, + "event": 2, + "help": 2, + "wanted": 2, + "priority": 2, + "medium": 2, + "financial": 2, + "ruby": 2, + "es": 2, + "cancelled": 2, + "plan": 2, + "hackathon": 2, + "beginner": 2, + "typography": 2, + "counsel": 2, + "recording": 2, + "crowdin": 2, + "eslint": 2, + "rules": 2, + "easy": 2, + "repare": 2, + "conference": 2, + "great": 2, + "insight": 2, + "phd": 2, + "orange": 2, + "invalid": 2, + "x": 2, + "changelog": 2, + "e-cypress": 2, + "lipstick": 2, + "-": 2, + "approved": 2, + "talk": 2, + "subtitle": 2, + "research": 2, + "todo": 0.75, + "spiral": 0.75, + "notepad": 0.75, + "interface": 2, + "critical": 2, + "tests": 2, + "boom": 2, + "web": 2, + "app": 2, + "television": 2, + "uat": 2, + "backer": 2, + "requires": 2, + "travis-yml": 2, + "node": 2, + "dev": 2, + "experience": 2, + "fix": 2, + "backend": 2, + "cleaning": 2, + "internal": 2, + "house": 2, + "technical": 2, + "debt": 2, + "weekly-digest": 2, + "shallow": 2, + "renderer": 2, + "commerce": 2, + "ie": 0.5, + "hsl": 2, + "left": 2, + "out": 2, + "welcome": 2, + "opinions": 2, + "documents": 2, + "legacy": 2, + "grafana": 2, + "react": 2, + "native": 2, + "lang-go": 2, + "tutorial": 2, + "plugin": 2, + "logo": 2, + "refactoring": 2, + "safari": 2, + "saltstack": 2, + "available": 2, + "server": 2, + "rendering": 2, + "htmlfile": 2, + "theorem": 2, + "social": 2, + "internationalisation": 2, + "definition": 2, + "enquire": 2, + "packaging": 2, + "lang-r": 2, + "regression": 0.5, + "container": 2, + "opencollective": 2, + "report": 2, + "performance": 2, + "clickup": 2, + "installer": 2, + "statement": 2, + "gcp": 2, + "opinion": 2, + "accepted": 2, + "html": 2, + "a": 0.8, + "y": 2, + "general": 2, + "js": 2, + "unit": 2, + "speak": 2, + "brainstorming": 2, + "backup": 2, + "language": 2, + "bugfix": 2, + "k": 2, + "s": 2, + "scrum": 2, + "paper": 2, + "library": 2, + "stale": 2, + "optimization": 2, + "show": 2, + "apple": 2, + "low": 2, + "functions": 2, + "gnu": 2, + "linux": 2, + "focus": 2, + "groups": 2, + "dependency-update": 2, + "related": 2, + "bootstrap": 2, + "usability": 2, + "*nix": 2, + "externs": 2, + "critique": 2, + "prince": 2, + "demonstration": 2, + "⬆️": 2, + "memo": 2, + "revisitinfuture": 2, + "tips": 2, + "reference": 2, + "high": 2, + "bug-report": 2, + "babel": 2, + "flashsocket": 2, + "unix": 2, + "npm": 2, + "site": 2, + "chore": 2, + "adapter": 2, + "slides": 2, + "query": 2, + "chat": 2, + "major": 2, + "alpha": 2, + "newsletter": 2, + "verification": 2, + "color": 2, + "containerd": 2, + "doughnut": 2, + "sentry": 2, + "dissertation": 2, + "mentoring": 2, + "confer": 2, + "utilities": 2, + "has": 2, + "code": 2, + "teaching": 2, + "robot": 2, + "android": 2, + "webaim": 2, + "wontfix": 2, + "triage": 0.5, + "contribution": 2, + "macos": 2, + "assertion": 2, + "blog": 2, + "progress": 2, + "future": 2, + "architecture": 2, + "enhancements": 2, + "pmi": 2, + "promotion": 2, + "validation": 2, + "art": 2, + "film": 2, + "bitbucket": 2, + "cloud": 2, + "labour": 2, + "python": 2, + "suggestion": 2, + "crypto": 2, + "attitudinal": 2, + "electron": 2, + "trial": 2, + "example": 2, + "resolution": 2, + "redirect": 2, + "assessment": 2, + "monitor": 2, + "css": 2, + "hack": 2, + "translation": 2, + "opportunity": 2, + "vultr": 2, + "kubernetes": 2, + "wiki": 2, + "parser": 2, + "pwa": 2, + "iphone": 2, + "program": 2, + "finding": 2, + "digital": 2, + "ocean": 2, + "iac": 2, + "javascript": 2, + "integration": 2, + "glo": 2, + "porting": 2, + "on": 2, + "hold": 2, + "evaluation": 2, + "go": 2, + "must-triage": 2, + "gradle": 2, + "accessibility": 2, + "work": 2, + "other": 2, + "wrangling": 2, + "tech-debt": 2, + "entry": 2, + "fault": 2, + "problem": 2, + "brand": 2, + "internal-issue-created": 2, + "pmp": 2, + "bdd": 2, + "checkpoint": 2, + "csharp": 2, + "unreviewed": 2, + "idea": 2, + "feedback": 2, + "requested": 2, + "wcag": 2, + "bugs": 2, + "mentor": 2, + "economics": 2, + "lib": 2, + "puppet": 2, + "speech": 0.8, + "balloon": 0.8, + "engine": 8, + "vulns": 8, + "safety": 10.125, + "vuln": 10.125, + "gdpr": 10.125, + "c": 0.6666666666666667, + "c++": 0.6666666666666667, + "bulb": 0.75, + "prometheus": 0.5, + "rocket": 0.6666666666666667, + "discuss": 0.8, + "doc": 0.5, + "blogs": 0.5, + "unit-mocha": 2, + "enterprise": 0.5, + "scheduler": 2, + "class": 2, + "fields": 2, + "commercial": 2, + "infra": 2, + "terraform": 2, + "figure": 2, + "layout": 2, + "specification": 2, + "vector": 2, + "greenkeeper": 2, + "tdd": 2, + "raster": 2, + "mishap": 2, + "sketch": 2, + "released": 2, + "font": 2, + "deployment": 0.6666666666666667, + "e-nightwatch": 2, + "syntax": 2, + "deliverable": 2, + "manual": 2, + "osx": 0.6666666666666667, + "axe": 2, + "sendgrid": 2, + "operating": 0.6666666666666667, + "system": 0.6666666666666667, + "advance": 2, + "workflow": 2, + "phonetic": 2, + "concept": 2, + "lerna": 2, + "readme": 2, + "music": 2, + "failing": 0.8, + "customer": 2, + "extension": 2, + "lint": 2, + "optimizing": 2, + "compiler": 2, + "css-select": 2, + "figma": 2, + "finance": 2, + "closed": 0.8, + "due": 0.8, + "inactivity": 0.8, + "jira": 2, + "survey": 2, + "behavioral": 2, + "multi": 2, + "module": 2, + "mixing": 2, + "backlog": 2, + "update": 2, + "present": 2, + "modules": 2, + "lang-julia": 2, + "demo": 2, + "corporate": 2, + "spam": 2, + "handshakes": 2, + "platform": 2, + "wave": 2, + "ansible": 2, + "lang-convert": 2, + "classes": 2, + "websocket": 2, + "speach": 2, + "b": 2, + "chef": 2, + "patreon": 2, + "reviewed-changes-requested": 2, + "youtube": 2, + "(legacy)": 2, + "mentorship": 2, + "typescript": 2, + "didactic": 2, + "story": 2, + "academia": 2 + }, + "negative_weights": { + "hacking": 0.015625, + "bias": 4.086973380411488, + "pentesting": 0.0625, + "wiretap": 0.0625, + "cracking": 0.0625, + "cybersec": 0.0625, + "hacked": 0.0625, + "warrant": 0.0625, + "backdoor": 0.0625, + "privacy": 0.0625, + "exploit": 0.0625, + "lock": 0.11111111111111113, + "security": 0.03703703703703705, + "infosec": 0.0625, + "vulnerability": 0.0625, + "protection": 0.020833333333333336, + "data": 0.6666666666666667, + "safeguard": 0.0625, + "sast": 0.0625, + "component": 3.515625, + "developer": 3.515625, + "tools": 3.515625, + "inspiration": 5.0625, + "business": 2, + "process": 2, + "sustain": 2.25, + "confirmed": 2.25, + "type": 3.9550781250000004, + "question": 1.875, + "grey": 1.875, + "cmty": 1, + "need-info": 2.25, + "sustenance": 2.25, + "good": 1.875, + "first": 1.875, + "issue": 1.875, + "kind": 2, + "discussion": 2, + "palette": 2.25, + "azure": 2, + "ad": 2, + "collection": 2, + "external-bugs": 2.25, + "deal": 2.25, + "video": 2.25, + "test": 1.7999999999999998, + "utils": 1, + "hsv": 2.25, + "thesis": 2.25, + "design": 2.25, + "website": 2, + "copy": 2, + "bug": 1, + "guide": 2.25, + "next": 2, + "meetup!": 2, + "feat": 3.75, + "ui": 2, + "mastering": 2.25, + "steps": 2.25, + "abandoned": 2.25, + "badges": 2.25, + "sponsor": 2.25, + "assess": 2.25, + "pr": 1.7999999999999998, + "merged": 1, + "vlog": 2.25, + "acceptance": 2, + "testing": 2, + "hot": 1, + "tv": 2.25, + "soundtrack": 2.25, + "(category)": 1, + "ci": 2, + "cd": 2, + "multi-cloud": 2.25, + "funding": 2, + "finder": 2, + "difficulty": 2, + "hard": 2, + "documentation": 2, + "book": 2, + "diary": 2.25, + "standard": 2.25, + "colour": 2.25, + "computer": 2, + "desktop": 2, + "flaw": 2.25, + "reliability": 2.25, + "cli-service": 1.875, + "build": 1.875, + "blocked": 2.25, + "maintenance": 1.875, + "construction": 1.875, + "ios": 2.25, + "planned": 1, + "feature": 1.75, + "feature-request": 1, + "rfc": 2.25, + "image": 2.25, + "stock": 1, + "reminder": 1, + "status": 1.7999999999999998, + "review": 2, + "needed": 1, + "in": 2, + "lang-crystal": 1, + "breaking": 1, + "change": 1, + "phone": 1, + "refactor": 1, + "monologue": 1, + "reviewed-approved": 1, + "new": 1.875, + "best": 1.875, + "practice": 1.875, + "lecture": 1, + "backing": 1, + "browser": 1, + "aws": 1, + "polish": 1.7999999999999998, + "nail": 1.7999999999999998, + "care": 1.7999999999999998, + "article": 1, + "peer-review": 1, + "writer-needed": 1, + "eventstorming": 1, + "freemasonry": 2, + "icons": 2, + "lean": 1, + "cannot": 2, + "reproduce": 2, + "paas": 1, + "net": 2, + "core": 2, + "unit-jest": 1, + "instruction": 1, + "infrastructure": 1, + "rgb": 1, + "ideas": 1, + "target": 2, + "windows": 1, + "call": 1, + "iconography": 1, + "promote": 1, + "template": 1, + "support": 1.875, + "first-timers-only": 1, + "java": 1, + "cdn": 1, + "dependency": 1, + "ready": 1.7999999999999998, + "for": 1.7999999999999998, + "deploy": 1.7999999999999998, + "troubleshooting": 1, + "spec": 1.875, + "bigint": 1, + "async": 1.875, + "generators": 1.875, + "proposal": 1, + "e": 1, + "approachability": 1, + "investment": 1, + "conflicts": 1, + "optimisation": 1, + "kotlin": 1, + "release": 1, + "unconfirmed": 1, + "duplicate": 1, + "repeat": 1, + "devops": 1, + "defend": 1, + "blogging": 1, + "friendliness": 1, + "i": 1, + "n": 1, + "cla": 1, + "signed": 1, + "icebox": 1, + "meetup": 1, + "examination": 1, + "mobile": 1.875, + "device": 1.875, + "api": 1, + "decorators": 1, + "addon": 1, + "sparkles": 1, + "enhancement": 1.875, + "hooks": 1, + "improved": 1.875, + "error": 1.875, + "handling": 1.875, + "needs": 1.7999999999999998, + "repro": 1, + "upkeep": 1, + "reactis": 1, + "to": 1.7999999999999998, + "be": 1, + "sample": 1, + "white": 1, + "check": 1, + "mark": 1, + "external": 1, + "hacktoberfest": 1, + "lang-dart": 1, + "framework": 1, + "icon": 1, + "grant": 1, + "needs-research": 1, + "biz": 1, + "internationalization": 1, + "utility-lib": 1, + "qa": 1, + "do": 1.875, + "not": 1.875, + "merge": 1.875, + "how-to": 1, + "beginner-friendly": 1, + "trello": 1, + "os": 1, + "sound": 1, + "docs": 1, + "improvement": 1, + "heavy": 1.75, + "plus": 1.75, + "sign": 1.75, + "request": 1.75, + "glitch": 1, + "cx": 1, + "dependencies": 1, + "inquiry": 1, + "deno": 1, + "area": 1, + "crash": 1, + "camera": 1, + "wip": 1, + "configure": 1, + "dom": 1, + "programming": 1, + "font-face": 1, + "rgba": 1, + "parser-specific": 1, + "wikipedia": 1, + "shell": 1, + "contributions": 1, + "tryout": 1, + "thought": 1, + "analysis": 1, + "contenu": 1, + "cli": 1, + "fund": 1, + "investigation": 1, + "basecamp": 1, + "literature": 1, + "socket": 1.875, + "io": 1.875, + "client": 1.875, + "fiscal": 1, + "user": 1, + "debug": 1, + "information": 1, + "frontend": 1, + "upstream": 1, + "raising": 1, + "hand": 1, + "style": 1, + "clean": 1, + "up": 1, + "motif": 1, + "event": 1, + "help": 1, + "wanted": 1, + "priority": 1, + "medium": 1, + "financial": 1, + "ruby": 1, + "es": 1, + "cancelled": 1, + "plan": 1, + "hackathon": 1, + "beginner": 1, + "typography": 1, + "counsel": 1, + "recording": 1, + "crowdin": 1, + "eslint": 1, + "rules": 1, + "easy": 1, + "repare": 1, + "conference": 1, + "great": 1, + "insight": 1, + "phd": 1, + "orange": 1, + "invalid": 1, + "x": 1, + "changelog": 1, + "e-cypress": 1, + "lipstick": 1, + "-": 1, + "approved": 1, + "talk": 1, + "subtitle": 1, + "research": 1, + "todo": 1.875, + "spiral": 1.875, + "notepad": 1.875, + "interface": 1, + "critical": 1, + "tests": 1, + "boom": 1, + "web": 1, + "app": 1, + "television": 1, + "uat": 1, + "backer": 1, + "requires": 1, + "travis-yml": 1, + "node": 1, + "dev": 1, + "experience": 1, + "fix": 1, + "backend": 1, + "cleaning": 1, + "internal": 1, + "house": 1, + "technical": 1, + "debt": 1, + "weekly-digest": 1, + "shallow": 1, + "renderer": 1, + "commerce": 1, + "ie": 2.25, + "hsl": 1, + "left": 1, + "out": 1, + "welcome": 1, + "opinions": 1, + "documents": 1, + "legacy": 1, + "grafana": 1, + "react": 1, + "native": 1, + "lang-go": 1, + "tutorial": 1, + "plugin": 1, + "logo": 1, + "refactoring": 1, + "safari": 1, + "saltstack": 1, + "available": 1, + "server": 1, + "rendering": 1, + "htmlfile": 1, + "theorem": 1, + "social": 1, + "internationalisation": 1, + "definition": 1, + "enquire": 1, + "packaging": 1, + "lang-r": 1, + "regression": 2.25, + "container": 1, + "opencollective": 1, + "report": 1, + "performance": 1, + "clickup": 1, + "installer": 1, + "statement": 1, + "gcp": 1, + "opinion": 1, + "accepted": 1, + "html": 1, + "a": 1.7999999999999998, + "y": 1, + "general": 1, + "js": 1, + "unit": 1, + "speak": 1, + "brainstorming": 1, + "backup": 1, + "language": 1, + "bugfix": 1, + "k": 1, + "s": 1, + "scrum": 1, + "paper": 1, + "library": 1, + "stale": 1, + "optimization": 1, + "show": 1, + "apple": 1, + "low": 1, + "functions": 1, + "gnu": 1, + "linux": 1, + "focus": 1, + "groups": 1, + "dependency-update": 1, + "related": 1, + "bootstrap": 1, + "usability": 1, + "*nix": 1, + "externs": 1, + "critique": 1, + "prince": 1, + "demonstration": 1, + "⬆️": 1, + "memo": 1, + "revisitinfuture": 1, + "tips": 1, + "reference": 1, + "high": 1, + "bug-report": 1, + "babel": 1, + "flashsocket": 1, + "unix": 1, + "npm": 1, + "site": 1, + "chore": 1, + "adapter": 1, + "slides": 1, + "query": 1, + "chat": 1, + "major": 1, + "alpha": 1, + "newsletter": 1, + "verification": 1, + "color": 1, + "containerd": 1, + "doughnut": 1, + "sentry": 1, + "dissertation": 1, + "mentoring": 1, + "confer": 1, + "utilities": 1, + "has": 1, + "code": 1, + "teaching": 1, + "robot": 1, + "android": 1, + "webaim": 1, + "wontfix": 1, + "triage": 2.25, + "contribution": 1, + "macos": 1, + "assertion": 1, + "blog": 1, + "progress": 1, + "future": 1, + "architecture": 1, + "enhancements": 1, + "pmi": 1, + "promotion": 1, + "validation": 1, + "art": 1, + "film": 1, + "bitbucket": 1, + "cloud": 1, + "labour": 1, + "python": 1, + "suggestion": 1, + "crypto": 1, + "attitudinal": 1, + "electron": 1, + "trial": 1, + "example": 1, + "resolution": 1, + "redirect": 1, + "assessment": 1, + "monitor": 1, + "css": 1, + "hack": 1, + "translation": 1, + "opportunity": 1, + "vultr": 1, + "kubernetes": 1, + "wiki": 1, + "parser": 1, + "pwa": 1, + "iphone": 1, + "program": 1, + "finding": 1, + "digital": 1, + "ocean": 1, + "iac": 1, + "javascript": 1, + "integration": 1, + "glo": 1, + "porting": 1, + "on": 1, + "hold": 1, + "evaluation": 1, + "go": 1, + "must-triage": 1, + "gradle": 1, + "accessibility": 1, + "work": 1, + "other": 1, + "wrangling": 1, + "tech-debt": 1, + "entry": 1, + "fault": 1, + "problem": 1, + "brand": 1, + "internal-issue-created": 1, + "pmp": 1, + "bdd": 1, + "checkpoint": 1, + "csharp": 1, + "unreviewed": 1, + "idea": 1, + "feedback": 1, + "requested": 1, + "wcag": 1, + "bugs": 1, + "mentor": 1, + "economics": 1, + "lib": 1, + "puppet": 1, + "speech": 1.7999999999999998, + "balloon": 1.7999999999999998, + "engine": 0.11111111111111113, + "vulns": 0.11111111111111113, + "safety": 0.0625, + "vuln": 0.0625, + "gdpr": 0.0625, + "c": 2, + "c++": 2, + "bulb": 1.875, + "prometheus": 2.25, + "rocket": 2, + "discuss": 1.7999999999999998, + "doc": 2.25, + "blogs": 2.25, + "unit-mocha": 1, + "enterprise": 2.25, + "scheduler": 1, + "class": 1, + "fields": 1, + "commercial": 1, + "infra": 1, + "terraform": 1, + "figure": 1, + "layout": 1, + "specification": 1, + "vector": 1, + "greenkeeper": 1, + "tdd": 1, + "raster": 1, + "mishap": 1, + "sketch": 1, + "released": 1, + "font": 1, + "deployment": 2, + "e-nightwatch": 1, + "syntax": 1, + "deliverable": 1, + "manual": 1, + "osx": 2, + "axe": 1, + "sendgrid": 1, + "operating": 2, + "system": 2, + "advance": 1, + "workflow": 1, + "phonetic": 1, + "concept": 1, + "lerna": 1, + "readme": 1, + "music": 1, + "failing": 1.7999999999999998, + "customer": 1, + "extension": 1, + "lint": 1, + "optimizing": 1, + "compiler": 1, + "css-select": 1, + "figma": 1, + "finance": 1, + "closed": 1.7999999999999998, + "due": 1.7999999999999998, + "inactivity": 1.7999999999999998, + "jira": 1, + "survey": 1, + "behavioral": 1, + "multi": 1, + "module": 1, + "mixing": 1, + "backlog": 1, + "update": 1, + "present": 1, + "modules": 1, + "lang-julia": 1, + "demo": 1, + "corporate": 1, + "spam": 1, + "handshakes": 1, + "platform": 1, + "wave": 1, + "ansible": 1, + "lang-convert": 1, + "classes": 1, + "websocket": 1, + "speach": 1, + "b": 1, + "chef": 1, + "patreon": 1, + "reviewed-changes-requested": 1, + "youtube": 1, + "(legacy)": 1, + "mentorship": 1, + "typescript": 1, + "didactic": 1, + "story": 1, + "academia": 1 + }, + "positive_weights_sum": {}, + "negative_weights_sum": {} + }, + "video": { + "positive_weights": { + "video": 22.78125, + "bias": 2.2072066198381377e-13, + "vlog": 22.78125, + "tv": 22.78125, + "camera": 22.78125, + "television": 22.78125, + "show": 2, + "film": 10.125, + "component": 0.28125, + "developer": 0.75, + "tools": 0.75, + "inspiration": 0.125, + "business": 0.6666666666666667, + "process": 0.6666666666666667, + "sustain": 0.5, + "confirmed": 0.5, + "type": 0.30000000000000004, + "question": 0.75, + "grey": 0.75, + "cmty": 2, + "need-info": 0.5, + "sustenance": 0.5, + "good": 0.75, + "first": 0.75, + "issue": 0.75, + "kind": 0.6666666666666667, + "discussion": 0.6666666666666667, + "palette": 0.5, + "azure": 0.6666666666666667, + "ad": 0.6666666666666667, + "data": 0.6666666666666667, + "collection": 0.6666666666666667, + "external-bugs": 0.5, + "deal": 0.5, + "hacking": 0.5, + "test": 0.75, + "utils": 0.75, + "hsv": 0.5, + "thesis": 0.5, + "pentesting": 0.5, + "design": 0.6666666666666667, + "website": 0.6666666666666667, + "copy": 0.6666666666666667, + "bug": 2, + "guide": 2, + "next": 0.6666666666666667, + "meetup!": 0.6666666666666667, + "feat": 0.75, + "ui": 2, + "mastering": 2, + "steps": 2, + "abandoned": 2, + "badges": 2, + "sponsor": 2, + "assess": 2, + "pr": 0.8, + "merged": 2, + "acceptance": 2, + "testing": 0.8, + "hot": 2, + "soundtrack": 2, + "(category)": 0.6666666666666667, + "ci": 0.6666666666666667, + "cd": 0.6666666666666667, + "multi-cloud": 2, + "funding": 0.6666666666666667, + "finder": 0.6666666666666667, + "difficulty": 2, + "hard": 2, + "documentation": 2, + "book": 2, + "diary": 2, + "standard": 2, + "colour": 2, + "computer": 2, + "desktop": 2, + "flaw": 2, + "reliability": 2, + "cli-service": 0.75, + "build": 0.75, + "blocked": 2, + "maintenance": 2, + "construction": 2, + "ios": 2, + "planned": 2, + "feature": 0.8333333333333333, + "feature-request": 2, + "rfc": 2, + "image": 0.6666666666666667, + "stock": 2, + "reminder": 2, + "status": 0.8, + "review": 2, + "needed": 2, + "in": 2, + "lang-crystal": 2, + "breaking": 2, + "change": 2, + "phone": 2, + "refactor": 2, + "monologue": 2, + "reviewed-approved": 2, + "new": 0.75, + "best": 0.75, + "practice": 0.75, + "lecture": 2, + "backing": 2, + "browser": 2, + "aws": 2, + "polish": 0.8, + "nail": 0.8, + "care": 0.8, + "article": 2, + "peer-review": 2, + "writer-needed": 2, + "eventstorming": 2, + "freemasonry": 2, + "icons": 2, + "lean": 2, + "cannot": 2, + "reproduce": 2, + "paas": 2, + "net": 2, + "core": 2, + "wiretap": 2, + "unit-jest": 2, + "instruction": 2, + "infrastructure": 2, + "rgb": 2, + "ideas": 2, + "target": 2, + "windows": 2, + "call": 2, + "iconography": 2, + "promote": 2, + "template": 2, + "support": 0.75, + "first-timers-only": 2, + "java": 2, + "cdn": 2, + "dependency": 2, + "ready": 0.8, + "for": 0.8, + "deploy": 0.8, + "troubleshooting": 2, + "spec": 0.75, + "bigint": 2, + "async": 0.75, + "generators": 0.75, + "proposal": 2, + "e": 2, + "approachability": 2, + "investment": 2, + "conflicts": 2, + "optimisation": 2, + "kotlin": 2, + "release": 0.8, + "unconfirmed": 2, + "duplicate": 2, + "repeat": 2, + "devops": 2, + "defend": 2, + "blogging": 2, + "friendliness": 2, + "i": 2, + "n": 2, + "cla": 2, + "signed": 2, + "icebox": 2, + "meetup": 2, + "examination": 2, + "mobile": 0.75, + "device": 0.75, + "api": 2, + "decorators": 2, + "addon": 2, + "cracking": 2, + "sparkles": 2, + "enhancement": 2, + "hooks": 2, + "improved": 2, + "error": 2, + "handling": 2, + "needs": 0.8, + "repro": 2, + "upkeep": 2, + "reactis": 2, + "to": 0.8, + "be": 2, + "sample": 2, + "white": 0.8, + "check": 0.8, + "mark": 0.8, + "external": 2, + "hacktoberfest": 2, + "lang-dart": 2, + "framework": 2, + "icon": 2, + "grant": 2, + "needs-research": 2, + "cybersec": 2, + "biz": 2, + "internationalization": 2, + "utility-lib": 2, + "qa": 2, + "do": 2, + "not": 2, + "merge": 2, + "hacked": 2, + "how-to": 2, + "beginner-friendly": 2, + "trello": 2, + "os": 2, + "sound": 2, + "docs": 2, + "improvement": 2, + "heavy": 0.8333333333333333, + "plus": 0.8333333333333333, + "sign": 0.8333333333333333, + "request": 0.8333333333333333, + "glitch": 2, + "cx": 2, + "dependencies": 2, + "inquiry": 2, + "deno": 2, + "area": 2, + "crash": 2, + "wip": 2, + "configure": 2, + "dom": 2, + "programming": 2, + "font-face": 2, + "rgba": 2, + "parser-specific": 2, + "wikipedia": 2, + "shell": 2, + "contributions": 2, + "tryout": 2, + "thought": 2, + "analysis": 2, + "contenu": 2, + "cli": 2, + "fund": 2, + "investigation": 2, + "basecamp": 2, + "literature": 2, + "socket": 2, + "io": 2, + "client": 0.8, + "fiscal": 2, + "user": 2, + "debug": 2, + "information": 2, + "frontend": 2, + "upstream": 2, + "raising": 2, + "hand": 2, + "style": 2, + "clean": 2, + "up": 2, + "motif": 2, + "event": 2, + "help": 2, + "wanted": 2, + "priority": 2, + "medium": 2, + "financial": 2, + "ruby": 2, + "es": 2, + "warrant": 2, + "cancelled": 2, + "plan": 2, + "hackathon": 2, + "beginner": 2, + "typography": 2, + "counsel": 2, + "recording": 2, + "crowdin": 2, + "eslint": 2, + "rules": 2, + "easy": 2, + "repare": 2, + "conference": 2, + "great": 2, + "insight": 2, + "phd": 2, + "orange": 2, + "invalid": 2, + "x": 2, + "changelog": 2, + "e-cypress": 2, + "lipstick": 2, + "-": 2, + "backdoor": 2, + "approved": 2, + "talk": 2, + "subtitle": 2, + "research": 2, + "todo": 2, + "spiral": 2, + "notepad": 2, + "interface": 2, + "critical": 2, + "privacy": 2, + "tests": 2, + "boom": 2, + "web": 2, + "app": 0.8, + "uat": 2, + "backer": 2, + "exploit": 2, + "requires": 2, + "travis-yml": 2, + "node": 2, + "dev": 2, + "experience": 2, + "fix": 2, + "backend": 2, + "cleaning": 2, + "internal": 0.8, + "house": 2, + "technical": 2, + "debt": 2, + "weekly-digest": 2, + "shallow": 2, + "renderer": 2, + "commerce": 2, + "ie": 2, + "hsl": 2, + "left": 2, + "out": 2, + "welcome": 2, + "opinions": 2, + "documents": 2, + "legacy": 2, + "grafana": 2, + "react": 2, + "native": 2, + "lang-go": 2, + "tutorial": 2, + "plugin": 2, + "logo": 2, + "refactoring": 2, + "safari": 2, + "saltstack": 2, + "available": 2, + "server": 2, + "rendering": 2, + "htmlfile": 2, + "theorem": 2, + "social": 2, + "internationalisation": 2, + "definition": 2, + "enquire": 2, + "packaging": 2, + "lang-r": 2, + "regression": 2, + "container": 2, + "opencollective": 2, + "report": 2, + "performance": 2, + "clickup": 2, + "installer": 2, + "statement": 2, + "gcp": 2, + "opinion": 2, + "accepted": 2, + "html": 2, + "a": 0.8, + "y": 2, + "general": 2, + "js": 2, + "unit": 2, + "speak": 2, + "brainstorming": 2, + "backup": 2, + "language": 2, + "bugfix": 2, + "k": 2, + "s": 2, + "scrum": 2, + "paper": 2, + "library": 2, + "stale": 2, + "optimization": 2, + "apple": 2, + "low": 2, + "functions": 2, + "gnu": 2, + "linux": 2, + "focus": 2, + "groups": 2, + "dependency-update": 2, + "related": 2, + "bootstrap": 2, + "usability": 2, + "*nix": 2, + "externs": 2, + "critique": 2, + "prince": 2, + "demonstration": 2, + "⬆️": 2, + "memo": 2, + "revisitinfuture": 2, + "tips": 2, + "reference": 2, + "high": 2, + "bug-report": 2, + "babel": 2, + "flashsocket": 2, + "unix": 2, + "npm": 2, + "site": 2, + "chore": 2, + "adapter": 2, + "slides": 2, + "query": 2, + "chat": 2, + "major": 2, + "alpha": 2, + "lock": 2, + "security": 2, + "newsletter": 2, + "verification": 2, + "color": 2, + "containerd": 2, + "doughnut": 2, + "sentry": 2, + "dissertation": 2, + "mentoring": 2, + "confer": 2, + "utilities": 2, + "infosec": 2, + "vulnerability": 2, + "has": 2, + "code": 2, + "teaching": 2, + "protection": 2, + "robot": 2, + "android": 2, + "webaim": 2, + "wontfix": 2, + "triage": 2, + "contribution": 2, + "macos": 2, + "assertion": 2, + "blog": 2, + "progress": 2, + "future": 2, + "architecture": 2, + "enhancements": 2, + "pmi": 2, + "promotion": 2, + "validation": 2, + "art": 2, + "bitbucket": 2, + "cloud": 2, + "labour": 2, + "python": 2, + "suggestion": 2, + "crypto": 2, + "attitudinal": 2, + "electron": 2, + "trial": 2, + "example": 0.8, + "resolution": 2, + "redirect": 2, + "assessment": 2, + "monitor": 2, + "css": 2, + "hack": 2, + "translation": 2, + "opportunity": 2, + "vultr": 2, + "kubernetes": 2, + "wiki": 2, + "parser": 2, + "pwa": 2, + "iphone": 2, + "program": 2, + "finding": 2, + "digital": 2, + "ocean": 2, + "safeguard": 2, + "iac": 2, + "javascript": 2, + "integration": 2, + "glo": 2, + "porting": 2, + "on": 2, + "hold": 2, + "evaluation": 2, + "go": 0.8, + "must-triage": 2, + "gradle": 2, + "accessibility": 2, + "work": 2, + "other": 2, + "wrangling": 2, + "sast": 2, + "tech-debt": 2, + "entry": 2, + "fault": 2, + "problem": 2, + "brand": 2, + "internal-issue-created": 2, + "pmp": 2, + "bdd": 2, + "checkpoint": 2, + "csharp": 2, + "unreviewed": 2, + "idea": 2, + "feedback": 2, + "requested": 2, + "wcag": 2, + "bugs": 2, + "mentor": 2, + "economics": 2, + "lib": 2, + "puppet": 2, + "speech": 0.8, + "balloon": 0.8, + "youtube": 10.125, + "c": 0.6666666666666667, + "c++": 0.6666666666666667, + "bulb": 2, + "prometheus": 2, + "rocket": 2, + "discuss": 0.8, + "doc": 2, + "blogs": 2, + "unit-mocha": 2, + "enterprise": 2, + "scheduler": 2, + "class": 2, + "fields": 2, + "commercial": 2, + "infra": 2, + "terraform": 2, + "figure": 2, + "layout": 2, + "specification": 2, + "vector": 0.6666666666666667, + "greenkeeper": 2, + "tdd": 2, + "raster": 2, + "mishap": 2, + "sketch": 2, + "released": 2, + "font": 2, + "deployment": 2, + "e-nightwatch": 2, + "engine": 2, + "vulns": 2, + "syntax": 2, + "deliverable": 2, + "manual": 2, + "osx": 2, + "axe": 2, + "sendgrid": 2, + "operating": 2, + "system": 2, + "advance": 2, + "workflow": 2, + "safety": 2, + "phonetic": 2, + "concept": 2, + "lerna": 2, + "readme": 2, + "music": 2, + "failing": 2, + "customer": 2, + "extension": 2, + "lint": 2, + "optimizing": 2, + "compiler": 2, + "css-select": 2, + "figma": 2, + "finance": 2, + "closed": 0.8, + "due": 0.8, + "inactivity": 0.8, + "jira": 2, + "survey": 2, + "behavioral": 2, + "multi": 2, + "module": 2, + "mixing": 2, + "backlog": 2, + "update": 2, + "present": 2, + "modules": 2, + "lang-julia": 2, + "vuln": 2, + "demo": 2, + "corporate": 2, + "spam": 2, + "handshakes": 2, + "platform": 2, + "wave": 2, + "ansible": 2, + "lang-convert": 2, + "gdpr": 2, + "classes": 2, + "websocket": 2, + "speach": 2, + "b": 2, + "chef": 2, + "patreon": 2, + "reviewed-changes-requested": 2, + "(legacy)": 2, + "mentorship": 2, + "typescript": 2, + "didactic": 2, + "story": 2, + "academia": 2 + }, + "negative_weights": { + "video": 0.015625, + "bias": 4.618687867185249, + "vlog": 0.015625, + "tv": 0.015625, + "camera": 0.015625, + "television": 0.015625, + "show": 1, + "film": 0.0625, + "component": 3.515625, + "developer": 1.875, + "tools": 1.875, + "inspiration": 5.0625, + "business": 2, + "process": 2, + "sustain": 2.25, + "confirmed": 2.25, + "type": 3.3749999999999996, + "question": 1.875, + "grey": 1.875, + "cmty": 1, + "need-info": 2.25, + "sustenance": 2.25, + "good": 1.875, + "first": 1.875, + "issue": 1.875, + "kind": 2, + "discussion": 2, + "palette": 2.25, + "azure": 2, + "ad": 2, + "data": 2, + "collection": 2, + "external-bugs": 2.25, + "deal": 2.25, + "hacking": 2.25, + "test": 1.875, + "utils": 1.875, + "hsv": 2.25, + "thesis": 2.25, + "pentesting": 2.25, + "design": 2, + "website": 2, + "copy": 2, + "bug": 1, + "guide": 1, + "next": 2, + "meetup!": 2, + "feat": 1.875, + "ui": 1, + "mastering": 1, + "steps": 1, + "abandoned": 1, + "badges": 1, + "sponsor": 1, + "assess": 1, + "pr": 1.7999999999999998, + "merged": 1, + "acceptance": 1, + "testing": 1.7999999999999998, + "hot": 1, + "soundtrack": 1, + "(category)": 2, + "ci": 2, + "cd": 2, + "multi-cloud": 1, + "funding": 2, + "finder": 2, + "difficulty": 1, + "hard": 1, + "documentation": 1, + "book": 1, + "diary": 1, + "standard": 1, + "colour": 1, + "computer": 1, + "desktop": 1, + "flaw": 1, + "reliability": 1, + "cli-service": 1.875, + "build": 1.875, + "blocked": 1, + "maintenance": 1, + "construction": 1, + "ios": 1, + "planned": 1, + "feature": 1.75, + "feature-request": 1, + "rfc": 1, + "image": 2, + "stock": 1, + "reminder": 1, + "status": 1.7999999999999998, + "review": 1, + "needed": 1, + "in": 1, + "lang-crystal": 1, + "breaking": 1, + "change": 1, + "phone": 1, + "refactor": 1, + "monologue": 1, + "reviewed-approved": 1, + "new": 1.875, + "best": 1.875, + "practice": 1.875, + "lecture": 1, + "backing": 1, + "browser": 1, + "aws": 1, + "polish": 1.7999999999999998, + "nail": 1.7999999999999998, + "care": 1.7999999999999998, + "article": 1, + "peer-review": 1, + "writer-needed": 1, + "eventstorming": 1, + "freemasonry": 1, + "icons": 1, + "lean": 1, + "cannot": 1, + "reproduce": 1, + "paas": 1, + "net": 1, + "core": 1, + "wiretap": 1, + "unit-jest": 1, + "instruction": 1, + "infrastructure": 1, + "rgb": 1, + "ideas": 1, + "target": 1, + "windows": 1, + "call": 1, + "iconography": 1, + "promote": 1, + "template": 1, + "support": 1.875, + "first-timers-only": 1, + "java": 1, + "cdn": 1, + "dependency": 1, + "ready": 1.7999999999999998, + "for": 1.7999999999999998, + "deploy": 1.7999999999999998, + "troubleshooting": 1, + "spec": 1.875, + "bigint": 1, + "async": 1.875, + "generators": 1.875, + "proposal": 1, + "e": 1, + "approachability": 1, + "investment": 1, + "conflicts": 1, + "optimisation": 1, + "kotlin": 1, + "release": 1.7999999999999998, + "unconfirmed": 1, + "duplicate": 1, + "repeat": 1, + "devops": 1, + "defend": 1, + "blogging": 1, + "friendliness": 1, + "i": 1, + "n": 1, + "cla": 1, + "signed": 1, + "icebox": 1, + "meetup": 1, + "examination": 1, + "mobile": 1.875, + "device": 1.875, + "api": 1, + "decorators": 1, + "addon": 1, + "cracking": 1, + "sparkles": 1, + "enhancement": 1, + "hooks": 1, + "improved": 1, + "error": 1, + "handling": 1, + "needs": 1.7999999999999998, + "repro": 1, + "upkeep": 1, + "reactis": 1, + "to": 1.7999999999999998, + "be": 1, + "sample": 1, + "white": 1.7999999999999998, + "check": 1.7999999999999998, + "mark": 1.7999999999999998, + "external": 1, + "hacktoberfest": 1, + "lang-dart": 1, + "framework": 1, + "icon": 1, + "grant": 1, + "needs-research": 1, + "cybersec": 1, + "biz": 1, + "internationalization": 1, + "utility-lib": 1, + "qa": 1, + "do": 1, + "not": 1, + "merge": 1, + "hacked": 1, + "how-to": 1, + "beginner-friendly": 1, + "trello": 1, + "os": 1, + "sound": 1, + "docs": 1, + "improvement": 1, + "heavy": 1.75, + "plus": 1.75, + "sign": 1.75, + "request": 1.75, + "glitch": 1, + "cx": 1, + "dependencies": 1, + "inquiry": 1, + "deno": 1, + "area": 1, + "crash": 1, + "wip": 1, + "configure": 1, + "dom": 1, + "programming": 1, + "font-face": 1, + "rgba": 1, + "parser-specific": 1, + "wikipedia": 1, + "shell": 1, + "contributions": 1, + "tryout": 1, + "thought": 1, + "analysis": 1, + "contenu": 1, + "cli": 1, + "fund": 1, + "investigation": 1, + "basecamp": 1, + "literature": 1, + "socket": 1, + "io": 1, + "client": 1.7999999999999998, + "fiscal": 1, + "user": 1, + "debug": 1, + "information": 1, + "frontend": 1, + "upstream": 1, + "raising": 1, + "hand": 1, + "style": 1, + "clean": 1, + "up": 1, + "motif": 1, + "event": 1, + "help": 1, + "wanted": 1, + "priority": 1, + "medium": 1, + "financial": 1, + "ruby": 1, + "es": 1, + "warrant": 1, + "cancelled": 1, + "plan": 1, + "hackathon": 1, + "beginner": 1, + "typography": 1, + "counsel": 1, + "recording": 1, + "crowdin": 1, + "eslint": 1, + "rules": 1, + "easy": 1, + "repare": 1, + "conference": 1, + "great": 1, + "insight": 1, + "phd": 1, + "orange": 1, + "invalid": 1, + "x": 1, + "changelog": 1, + "e-cypress": 1, + "lipstick": 1, + "-": 1, + "backdoor": 1, + "approved": 1, + "talk": 1, + "subtitle": 1, + "research": 1, + "todo": 1, + "spiral": 1, + "notepad": 1, + "interface": 1, + "critical": 1, + "privacy": 1, + "tests": 1, + "boom": 1, + "web": 1, + "app": 1.7999999999999998, + "uat": 1, + "backer": 1, + "exploit": 1, + "requires": 1, + "travis-yml": 1, + "node": 1, + "dev": 1, + "experience": 1, + "fix": 1, + "backend": 1, + "cleaning": 1, + "internal": 1.7999999999999998, + "house": 1, + "technical": 1, + "debt": 1, + "weekly-digest": 1, + "shallow": 1, + "renderer": 1, + "commerce": 1, + "ie": 1, + "hsl": 1, + "left": 1, + "out": 1, + "welcome": 1, + "opinions": 1, + "documents": 1, + "legacy": 1, + "grafana": 1, + "react": 1, + "native": 1, + "lang-go": 1, + "tutorial": 1, + "plugin": 1, + "logo": 1, + "refactoring": 1, + "safari": 1, + "saltstack": 1, + "available": 1, + "server": 1, + "rendering": 1, + "htmlfile": 1, + "theorem": 1, + "social": 1, + "internationalisation": 1, + "definition": 1, + "enquire": 1, + "packaging": 1, + "lang-r": 1, + "regression": 1, + "container": 1, + "opencollective": 1, + "report": 1, + "performance": 1, + "clickup": 1, + "installer": 1, + "statement": 1, + "gcp": 1, + "opinion": 1, + "accepted": 1, + "html": 1, + "a": 1.7999999999999998, + "y": 1, + "general": 1, + "js": 1, + "unit": 1, + "speak": 1, + "brainstorming": 1, + "backup": 1, + "language": 1, + "bugfix": 1, + "k": 1, + "s": 1, + "scrum": 1, + "paper": 1, + "library": 1, + "stale": 1, + "optimization": 1, + "apple": 1, + "low": 1, + "functions": 1, + "gnu": 1, + "linux": 1, + "focus": 1, + "groups": 1, + "dependency-update": 1, + "related": 1, + "bootstrap": 1, + "usability": 1, + "*nix": 1, + "externs": 1, + "critique": 1, + "prince": 1, + "demonstration": 1, + "⬆️": 1, + "memo": 1, + "revisitinfuture": 1, + "tips": 1, + "reference": 1, + "high": 1, + "bug-report": 1, + "babel": 1, + "flashsocket": 1, + "unix": 1, + "npm": 1, + "site": 1, + "chore": 1, + "adapter": 1, + "slides": 1, + "query": 1, + "chat": 1, + "major": 1, + "alpha": 1, + "lock": 1, + "security": 1, + "newsletter": 1, + "verification": 1, + "color": 1, + "containerd": 1, + "doughnut": 1, + "sentry": 1, + "dissertation": 1, + "mentoring": 1, + "confer": 1, + "utilities": 1, + "infosec": 1, + "vulnerability": 1, + "has": 1, + "code": 1, + "teaching": 1, + "protection": 1, + "robot": 1, + "android": 1, + "webaim": 1, + "wontfix": 1, + "triage": 1, + "contribution": 1, + "macos": 1, + "assertion": 1, + "blog": 1, + "progress": 1, + "future": 1, + "architecture": 1, + "enhancements": 1, + "pmi": 1, + "promotion": 1, + "validation": 1, + "art": 1, + "bitbucket": 1, + "cloud": 1, + "labour": 1, + "python": 1, + "suggestion": 1, + "crypto": 1, + "attitudinal": 1, + "electron": 1, + "trial": 1, + "example": 1.7999999999999998, + "resolution": 1, + "redirect": 1, + "assessment": 1, + "monitor": 1, + "css": 1, + "hack": 1, + "translation": 1, + "opportunity": 1, + "vultr": 1, + "kubernetes": 1, + "wiki": 1, + "parser": 1, + "pwa": 1, + "iphone": 1, + "program": 1, + "finding": 1, + "digital": 1, + "ocean": 1, + "safeguard": 1, + "iac": 1, + "javascript": 1, + "integration": 1, + "glo": 1, + "porting": 1, + "on": 1, + "hold": 1, + "evaluation": 1, + "go": 1.7999999999999998, + "must-triage": 1, + "gradle": 1, + "accessibility": 1, + "work": 1, + "other": 1, + "wrangling": 1, + "sast": 1, + "tech-debt": 1, + "entry": 1, + "fault": 1, + "problem": 1, + "brand": 1, + "internal-issue-created": 1, + "pmp": 1, + "bdd": 1, + "checkpoint": 1, + "csharp": 1, + "unreviewed": 1, + "idea": 1, + "feedback": 1, + "requested": 1, + "wcag": 1, + "bugs": 1, + "mentor": 1, + "economics": 1, + "lib": 1, + "puppet": 1, + "speech": 1.7999999999999998, + "balloon": 1.7999999999999998, + "youtube": 0.0625, + "c": 2, + "c++": 2, + "bulb": 1, + "prometheus": 1, + "rocket": 1, + "discuss": 1.7999999999999998, + "doc": 1, + "blogs": 1, + "unit-mocha": 1, + "enterprise": 1, + "scheduler": 1, + "class": 1, + "fields": 1, + "commercial": 1, + "infra": 1, + "terraform": 1, + "figure": 1, + "layout": 1, + "specification": 1, + "vector": 2, + "greenkeeper": 1, + "tdd": 1, + "raster": 1, + "mishap": 1, + "sketch": 1, + "released": 1, + "font": 1, + "deployment": 1, + "e-nightwatch": 1, + "engine": 1, + "vulns": 1, + "syntax": 1, + "deliverable": 1, + "manual": 1, + "osx": 1, + "axe": 1, + "sendgrid": 1, + "operating": 1, + "system": 1, + "advance": 1, + "workflow": 1, + "safety": 1, + "phonetic": 1, + "concept": 1, + "lerna": 1, + "readme": 1, + "music": 1, + "failing": 1, + "customer": 1, + "extension": 1, + "lint": 1, + "optimizing": 1, + "compiler": 1, + "css-select": 1, + "figma": 1, + "finance": 1, + "closed": 1.7999999999999998, + "due": 1.7999999999999998, + "inactivity": 1.7999999999999998, + "jira": 1, + "survey": 1, + "behavioral": 1, + "multi": 1, + "module": 1, + "mixing": 1, + "backlog": 1, + "update": 1, + "present": 1, + "modules": 1, + "lang-julia": 1, + "vuln": 1, + "demo": 1, + "corporate": 1, + "spam": 1, + "handshakes": 1, + "platform": 1, + "wave": 1, + "ansible": 1, + "lang-convert": 1, + "gdpr": 1, + "classes": 1, + "websocket": 1, + "speach": 1, + "b": 1, + "chef": 1, + "patreon": 1, + "reviewed-changes-requested": 1, + "(legacy)": 1, + "mentorship": 1, + "typescript": 1, + "didactic": 1, + "story": 1, + "academia": 1 + }, + "positive_weights_sum": {}, + "negative_weights_sum": {} + }, + "test": { + "positive_weights": { + "component": 0.14483928680419927, + "test": 12.656250000000012, + "utils": 1.544952392578125, + "bias": 3.838807251201099e-43, + "assess": 22.78125, + "acceptance": 32, + "testing": 8.313141825199132, + "feat": 0.9259259259259266, + "unit-jest": 32, + "e": 28.125, + "examination": 22.78125, + "white": 6.479999999999999, + "check": 1.6199999999999997, + "mark": 6.479999999999999, + "qa": 10.125, + "tryout": 10.125, + "e-cypress": 7.03125, + "tests": 10.125, + "uat": 10.125, + "regression": 0.5, + "unit": 2, + "verification": 10.125, + "assertion": 10.125, + "trial": 10.125, + "assessment": 10.125, + "integration": 2, + "evaluation": 10.125, + "type": 0.05625, + "bdd": 10.125, + "renderer": 2, + "developer": 0.28125, + "tools": 0.28125, + "inspiration": 0.125, + "business": 0.6666666666666667, + "process": 0.6666666666666667, + "sustain": 0.5, + "confirmed": 0.5, + "question": 0.25, + "grey": 0.75, + "cmty": 0.6666666666666667, + "need-info": 0.5, + "sustenance": 0.5, + "good": 0.75, + "first": 0.75, + "issue": 0.75, + "kind": 0.6666666666666667, + "discussion": 0.6666666666666667, + "palette": 0.5, + "azure": 0.6666666666666667, + "ad": 0.6666666666666667, + "data": 0.6666666666666667, + "collection": 0.6666666666666667, + "external-bugs": 0.5, + "deal": 0.5, + "hacking": 0.5, + "video": 0.5, + "hsv": 0.5, + "thesis": 0.5, + "pentesting": 0.5, + "design": 0.5, + "website": 0.6666666666666667, + "copy": 0.6666666666666667, + "bug": 0.6666666666666667, + "guide": 0.5, + "next": 0.6666666666666667, + "meetup!": 0.6666666666666667, + "ui": 2.370370370370371, + "mastering": 0.5, + "steps": 0.5, + "abandoned": 0.5, + "badges": 0.5, + "sponsor": 0.5, + "pr": 0.33333333333333337, + "merged": 0.8333333333333334, + "vlog": 0.5, + "hot": 2, + "tv": 0.5, + "soundtrack": 0.5, + "(category)": 2, + "ci": 0.6666666666666667, + "cd": 0.6666666666666667, + "multi-cloud": 0.5, + "funding": 0.6666666666666667, + "finder": 0.6666666666666667, + "difficulty": 0.6666666666666667, + "hard": 0.6666666666666667, + "documentation": 0.6666666666666667, + "book": 0.6666666666666667, + "diary": 0.5, + "standard": 0.5, + "colour": 0.5, + "computer": 0.6666666666666667, + "desktop": 0.6666666666666667, + "flaw": 0.5, + "reliability": 0.5, + "cli-service": 0.75, + "build": 0.75, + "blocked": 0.5, + "maintenance": 0.75, + "construction": 0.75, + "ios": 0.5, + "planned": 0.6666666666666667, + "feature": 0.27777777777777785, + "feature-request": 2, + "rfc": 0.5, + "image": 0.5, + "stock": 0.5, + "reminder": 0.5, + "status": 2, + "review": 0.6666666666666667, + "needed": 0.024691358024691367, + "in": 0.6666666666666667, + "lang-crystal": 0.5, + "breaking": 2, + "change": 2, + "phone": 0.5, + "refactor": 0.5, + "monologue": 0.5, + "reviewed-approved": 2, + "new": 0.75, + "best": 0.75, + "practice": 0.75, + "lecture": 0.5, + "backing": 0.5, + "browser": 0.75, + "aws": 0.5, + "polish": 0.8, + "nail": 0.8, + "care": 0.8, + "article": 0.5, + "peer-review": 2, + "writer-needed": 2, + "eventstorming": 2, + "freemasonry": 0.6666666666666667, + "icons": 0.6666666666666667, + "lean": 2, + "cannot": 0.6666666666666667, + "reproduce": 0.6666666666666667, + "paas": 2, + "net": 0.6666666666666667, + "core": 0.6666666666666667, + "wiretap": 2, + "instruction": 2, + "infrastructure": 2, + "rgb": 2, + "ideas": 2, + "target": 0.6666666666666667, + "windows": 0.6666666666666667, + "call": 2, + "iconography": 2, + "promote": 2, + "template": 2, + "support": 0.75, + "first-timers-only": 2, + "java": 2, + "cdn": 2, + "dependency": 2, + "ready": 0.8333333333333334, + "for": 2, + "deploy": 2, + "troubleshooting": 2, + "spec": 0.75, + "bigint": 2, + "async": 0.75, + "generators": 0.75, + "proposal": 2, + "approachability": 2, + "investment": 2, + "conflicts": 2, + "optimisation": 2, + "kotlin": 2, + "release": 2, + "unconfirmed": 2, + "duplicate": 2, + "repeat": 2, + "devops": 2, + "defend": 2, + "blogging": 2, + "friendliness": 2, + "i": 2, + "n": 2, + "cla": 2, + "signed": 2, + "icebox": 2, + "meetup": 2, + "mobile": 0.75, + "device": 0.75, + "api": 0.6666666666666667, + "decorators": 2, + "addon": 2, + "cracking": 2, + "sparkles": 2, + "enhancement": 0.75, + "hooks": 2, + "improved": 0.75, + "error": 0.75, + "handling": 0.75, + "needs": 0.048000000000000015, + "repro": 2, + "upkeep": 2, + "reactis": 2, + "to": 0.33333333333333337, + "be": 0.8333333333333334, + "sample": 2, + "external": 2, + "hacktoberfest": 2, + "lang-dart": 2, + "framework": 2, + "icon": 2, + "grant": 2, + "needs-research": 2, + "cybersec": 2, + "biz": 2, + "internationalization": 2, + "utility-lib": 2, + "do": 0.75, + "not": 0.75, + "merge": 0.75, + "hacked": 2, + "how-to": 2, + "beginner-friendly": 2, + "trello": 2, + "os": 2, + "sound": 2, + "docs": 2, + "improvement": 2, + "heavy": 0.8333333333333334, + "plus": 0.8333333333333334, + "sign": 0.8333333333333334, + "request": 0.8333333333333334, + "glitch": 2, + "cx": 2, + "dependencies": 2, + "inquiry": 2, + "deno": 2, + "area": 2, + "crash": 2, + "camera": 2, + "wip": 2, + "configure": 2, + "dom": 2, + "programming": 2, + "font-face": 2, + "rgba": 2, + "parser-specific": 2, + "wikipedia": 2, + "shell": 2, + "contributions": 2, + "thought": 2, + "analysis": 2, + "contenu": 2, + "cli": 0.6666666666666667, + "fund": 2, + "investigation": 2, + "basecamp": 2, + "literature": 2, + "socket": 2, + "io": 2, + "client": 0.024691358024691367, + "fiscal": 2, + "user": 0.027777777777777787, + "debug": 2, + "information": 2, + "frontend": 2, + "upstream": 2, + "raising": 2, + "hand": 2, + "style": 2, + "clean": 2, + "up": 2, + "motif": 2, + "event": 2, + "help": 2, + "wanted": 2, + "priority": 2, + "medium": 2, + "financial": 2, + "ruby": 2, + "es": 2, + "warrant": 2, + "cancelled": 2, + "plan": 2, + "hackathon": 2, + "beginner": 2, + "typography": 2, + "counsel": 2, + "recording": 2, + "crowdin": 2, + "eslint": 0.22222222222222227, + "rules": 2, + "easy": 2, + "repare": 2, + "conference": 2, + "great": 2, + "insight": 2, + "phd": 2, + "orange": 2, + "invalid": 2, + "x": 2, + "changelog": 2, + "lipstick": 0.6666666666666667, + "-": 0.6666666666666667, + "backdoor": 2, + "approved": 2, + "talk": 2, + "subtitle": 2, + "research": 2, + "todo": 2, + "spiral": 2, + "notepad": 2, + "interface": 2, + "critical": 2, + "privacy": 2, + "boom": 2, + "web": 2, + "app": 2, + "television": 2, + "backer": 2, + "exploit": 2, + "requires": 2, + "travis-yml": 2, + "node": 2, + "dev": 2, + "experience": 0.6666666666666667, + "fix": 2, + "backend": 2, + "cleaning": 2, + "internal": 2, + "house": 2, + "technical": 2, + "debt": 2, + "weekly-digest": 2, + "shallow": 2, + "commerce": 2, + "ie": 0.5, + "hsl": 2, + "left": 2, + "out": 2, + "welcome": 2, + "opinions": 2, + "documents": 2, + "legacy": 2, + "grafana": 2, + "react": 2, + "native": 2, + "lang-go": 2, + "tutorial": 2, + "plugin": 2, + "logo": 2, + "refactoring": 2, + "safari": 2, + "saltstack": 2, + "available": 2, + "server": 2, + "rendering": 2, + "htmlfile": 2, + "theorem": 2, + "social": 2, + "internationalisation": 2, + "definition": 2, + "enquire": 2, + "packaging": 2, + "lang-r": 2, + "container": 2, + "opencollective": 2, + "report": 2, + "performance": 2, + "clickup": 2, + "installer": 2, + "statement": 2, + "gcp": 2, + "opinion": 2, + "accepted": 2, + "html": 2, + "a": 0.048000000000000015, + "y": 2, + "general": 2, + "js": 2, + "speak": 2, + "brainstorming": 2, + "backup": 2, + "language": 2, + "bugfix": 2, + "k": 2, + "s": 2, + "scrum": 2, + "paper": 2, + "library": 2, + "stale": 2, + "optimization": 2, + "show": 2, + "apple": 2, + "low": 2, + "functions": 2, + "gnu": 2, + "linux": 2, + "focus": 2, + "groups": 2, + "dependency-update": 2, + "related": 2, + "bootstrap": 2, + "usability": 0.024691358024691367, + "*nix": 2, + "externs": 2, + "critique": 2, + "prince": 2, + "demonstration": 2, + "⬆️": 2, + "memo": 2, + "revisitinfuture": 2, + "tips": 2, + "reference": 2, + "high": 2, + "bug-report": 2, + "babel": 2, + "flashsocket": 2, + "unix": 2, + "npm": 2, + "site": 2, + "chore": 2, + "adapter": 2, + "slides": 2, + "query": 2, + "chat": 2, + "major": 2, + "alpha": 2, + "lock": 2, + "security": 2, + "newsletter": 2, + "color": 2, + "containerd": 2, + "doughnut": 2, + "sentry": 2, + "dissertation": 2, + "mentoring": 2, + "confer": 2, + "utilities": 2, + "infosec": 2, + "vulnerability": 2, + "has": 2, + "code": 2, + "teaching": 2, + "protection": 2, + "robot": 2, + "android": 2, + "webaim": 2, + "wontfix": 2, + "triage": 0.5, + "contribution": 2, + "macos": 2, + "blog": 2, + "progress": 2, + "future": 2, + "architecture": 2, + "enhancements": 2, + "pmi": 2, + "promotion": 2, + "validation": 2, + "art": 2, + "film": 2, + "bitbucket": 2, + "cloud": 2, + "labour": 2, + "python": 2, + "suggestion": 2, + "crypto": 2, + "attitudinal": 2, + "electron": 2, + "example": 2, + "resolution": 2, + "redirect": 2, + "monitor": 2, + "css": 2, + "hack": 2, + "translation": 2, + "opportunity": 2, + "vultr": 2, + "kubernetes": 2, + "wiki": 2, + "parser": 2, + "pwa": 2, + "iphone": 2, + "program": 2, + "finding": 2, + "digital": 2, + "ocean": 2, + "safeguard": 2, + "iac": 2, + "javascript": 2, + "glo": 2, + "porting": 2, + "on": 2, + "hold": 2, + "go": 2, + "must-triage": 2, + "gradle": 2, + "accessibility": 2, + "work": 2, + "other": 2, + "wrangling": 2, + "sast": 2, + "tech-debt": 2, + "entry": 2, + "fault": 2, + "problem": 2, + "brand": 2, + "internal-issue-created": 2, + "pmp": 2, + "checkpoint": 2, + "csharp": 2, + "unreviewed": 2, + "idea": 2, + "feedback": 2, + "requested": 2, + "wcag": 2, + "bugs": 2, + "mentor": 2, + "economics": 2, + "lib": 2, + "puppet": 2, + "speech": 0.8, + "balloon": 0.8, + "unit-mocha": 32, + "tdd": 22.78125, + "e-nightwatch": 2, + "c": 0.6666666666666667, + "c++": 0.6666666666666667, + "bulb": 0.75, + "prometheus": 0.5, + "rocket": 0.6666666666666667, + "discuss": 0.8, + "doc": 0.5, + "blogs": 0.5, + "enterprise": 0.5, + "scheduler": 0.6666666666666667, + "class": 2, + "fields": 2, + "commercial": 2, + "infra": 2, + "terraform": 2, + "figure": 2, + "layout": 2, + "specification": 2, + "vector": 2, + "greenkeeper": 2, + "raster": 2, + "mishap": 2, + "sketch": 2, + "released": 2, + "font": 2, + "deployment": 0.6666666666666667, + "engine": 0.6666666666666667, + "vulns": 0.6666666666666667, + "syntax": 2, + "deliverable": 2, + "manual": 2, + "osx": 2, + "axe": 2, + "sendgrid": 2, + "operating": 0.6666666666666667, + "system": 0.6666666666666667, + "advance": 2, + "workflow": 2, + "safety": 2, + "phonetic": 2, + "concept": 2, + "lerna": 2, + "readme": 2, + "music": 2, + "failing": 0.12800000000000003, + "customer": 0.6666666666666667, + "extension": 2, + "lint": 2, + "optimizing": 0.75, + "compiler": 0.75, + "css-select": 2, + "figma": 2, + "finance": 2, + "closed": 0.8, + "due": 0.8, + "inactivity": 0.8, + "jira": 2, + "survey": 2, + "behavioral": 0.75, + "multi": 0.6666666666666667, + "module": 0.6666666666666667, + "mixing": 2, + "backlog": 0.6666666666666667, + "update": 2, + "present": 2, + "modules": 2, + "lang-julia": 2, + "vuln": 2, + "demo": 2, + "corporate": 2, + "spam": 2, + "handshakes": 2, + "platform": 2, + "wave": 2, + "ansible": 2, + "lang-convert": 2, + "gdpr": 2, + "classes": 2, + "websocket": 2, + "speach": 2, + "b": 0.75, + "chef": 2, + "patreon": 2, + "reviewed-changes-requested": 2, + "youtube": 2, + "(legacy)": 2, + "mentorship": 2, + "typescript": 0.6666666666666667, + "didactic": 2, + "story": 2, + "academia": 2 + }, + "negative_weights": { + "component": 0.5214214324951172, + "test": 6.510416666666676e-7, + "utils": 0.1001129150390625, + "bias": 3.9193032144872673, + "assess": 0.015625, + "acceptance": 0.012345679012345684, + "testing": 0.0000015894571940104176, + "feat": 0.0025720164609053524, + "unit-jest": 0.012345679012345684, + "e": 0.015625000000000003, + "examination": 0.015625, + "white": 0.16000000000000003, + "check": 0.3600000000000001, + "mark": 0.16000000000000003, + "qa": 0.0625, + "tryout": 0.0625, + "e-cypress": 0.140625, + "tests": 0.0625, + "uat": 0.0625, + "regression": 0.5625000000000001, + "unit": 1, + "verification": 0.0625, + "assertion": 0.0625, + "trial": 0.0625, + "assessment": 0.0625, + "integration": 1, + "evaluation": 0.0625, + "type": 2.6367187500000004, + "bdd": 0.0625, + "renderer": 1, + "developer": 3.515625, + "tools": 3.515625, + "inspiration": 5.0625, + "business": 2, + "process": 2, + "sustain": 2.25, + "confirmed": 2.25, + "question": 3.75, + "grey": 1.875, + "cmty": 2, + "need-info": 2.25, + "sustenance": 2.25, + "good": 1.875, + "first": 1.875, + "issue": 1.875, + "kind": 2, + "discussion": 2, + "palette": 2.25, + "azure": 2, + "ad": 2, + "data": 2, + "collection": 2, + "external-bugs": 2.25, + "deal": 2.25, + "hacking": 2.25, + "video": 2.25, + "hsv": 2.25, + "thesis": 2.25, + "pentesting": 2.25, + "design": 2.25, + "website": 2, + "copy": 2, + "bug": 2, + "guide": 2.25, + "next": 2, + "meetup!": 2, + "ui": 0.032921810699588494, + "mastering": 2.25, + "steps": 2.25, + "abandoned": 2.25, + "badges": 2.25, + "sponsor": 2.25, + "pr": 3.1499999999999995, + "merged": 1.75, + "vlog": 2.25, + "hot": 1, + "tv": 2.25, + "soundtrack": 2.25, + "(category)": 1, + "ci": 2, + "cd": 2, + "multi-cloud": 2.25, + "funding": 2, + "finder": 2, + "difficulty": 2, + "hard": 2, + "documentation": 2, + "book": 2, + "diary": 2.25, + "standard": 2.25, + "colour": 2.25, + "computer": 2, + "desktop": 2, + "flaw": 2.25, + "reliability": 2.25, + "cli-service": 1.875, + "build": 1.875, + "blocked": 2.25, + "maintenance": 1.875, + "construction": 1.875, + "ios": 2.25, + "planned": 2, + "feature": 3.5, + "feature-request": 1, + "rfc": 2.25, + "image": 2.25, + "stock": 2.25, + "reminder": 2.25, + "status": 1, + "review": 2, + "needed": 16, + "in": 2, + "lang-crystal": 2.25, + "breaking": 1, + "change": 1, + "phone": 2.25, + "refactor": 2.25, + "monologue": 2.25, + "reviewed-approved": 1, + "new": 1.875, + "best": 1.875, + "practice": 1.875, + "lecture": 2.25, + "backing": 2.25, + "browser": 1.875, + "aws": 2.25, + "polish": 1.7999999999999998, + "nail": 1.7999999999999998, + "care": 1.7999999999999998, + "article": 2.25, + "peer-review": 1, + "writer-needed": 1, + "eventstorming": 1, + "freemasonry": 2, + "icons": 2, + "lean": 1, + "cannot": 2, + "reproduce": 2, + "paas": 1, + "net": 2, + "core": 2, + "wiretap": 1, + "instruction": 1, + "infrastructure": 1, + "rgb": 1, + "ideas": 1, + "target": 2, + "windows": 2, + "call": 1, + "iconography": 1, + "promote": 1, + "template": 1, + "support": 1.875, + "first-timers-only": 1, + "java": 1, + "cdn": 1, + "dependency": 1, + "ready": 1.75, + "for": 1, + "deploy": 1, + "troubleshooting": 1, + "spec": 1.875, + "bigint": 1, + "async": 1.875, + "generators": 1.875, + "proposal": 1, + "approachability": 1, + "investment": 1, + "conflicts": 1, + "optimisation": 1, + "kotlin": 1, + "release": 1, + "unconfirmed": 1, + "duplicate": 1, + "repeat": 1, + "devops": 1, + "defend": 1, + "blogging": 1, + "friendliness": 1, + "i": 1, + "n": 1, + "cla": 1, + "signed": 1, + "icebox": 1, + "meetup": 1, + "mobile": 1.875, + "device": 1.875, + "api": 2, + "decorators": 1, + "addon": 1, + "cracking": 1, + "sparkles": 1, + "enhancement": 1.875, + "hooks": 1, + "improved": 1.875, + "error": 1.875, + "handling": 1.875, + "needs": 10.934999999999995, + "repro": 1, + "upkeep": 1, + "reactis": 1, + "to": 3.1499999999999995, + "be": 1.75, + "sample": 1, + "external": 1, + "hacktoberfest": 1, + "lang-dart": 1, + "framework": 1, + "icon": 1, + "grant": 1, + "needs-research": 1, + "cybersec": 1, + "biz": 1, + "internationalization": 1, + "utility-lib": 1, + "do": 1.875, + "not": 1.875, + "merge": 1.875, + "hacked": 1, + "how-to": 1, + "beginner-friendly": 1, + "trello": 1, + "os": 1, + "sound": 1, + "docs": 1, + "improvement": 1, + "heavy": 1.75, + "plus": 1.75, + "sign": 1.75, + "request": 1.75, + "glitch": 1, + "cx": 1, + "dependencies": 1, + "inquiry": 1, + "deno": 1, + "area": 1, + "crash": 1, + "camera": 1, + "wip": 1, + "configure": 1, + "dom": 1, + "programming": 1, + "font-face": 1, + "rgba": 1, + "parser-specific": 1, + "wikipedia": 1, + "shell": 1, + "contributions": 1, + "thought": 1, + "analysis": 1, + "contenu": 1, + "cli": 2, + "fund": 1, + "investigation": 1, + "basecamp": 1, + "literature": 1, + "socket": 1, + "io": 1, + "client": 16, + "fiscal": 1, + "user": 15, + "debug": 1, + "information": 1, + "frontend": 1, + "upstream": 1, + "raising": 1, + "hand": 1, + "style": 1, + "clean": 1, + "up": 1, + "motif": 1, + "event": 1, + "help": 1, + "wanted": 1, + "priority": 1, + "medium": 1, + "financial": 1, + "ruby": 1, + "es": 1, + "warrant": 1, + "cancelled": 1, + "plan": 1, + "hackathon": 1, + "beginner": 1, + "typography": 1, + "counsel": 1, + "recording": 1, + "crowdin": 1, + "eslint": 4, + "rules": 1, + "easy": 1, + "repare": 1, + "conference": 1, + "great": 1, + "insight": 1, + "phd": 1, + "orange": 1, + "invalid": 1, + "x": 1, + "changelog": 1, + "lipstick": 2, + "-": 2, + "backdoor": 1, + "approved": 1, + "talk": 1, + "subtitle": 1, + "research": 1, + "todo": 1, + "spiral": 1, + "notepad": 1, + "interface": 1, + "critical": 1, + "privacy": 1, + "boom": 1, + "web": 1, + "app": 1, + "television": 1, + "backer": 1, + "exploit": 1, + "requires": 1, + "travis-yml": 1, + "node": 1, + "dev": 1, + "experience": 2, + "fix": 1, + "backend": 1, + "cleaning": 1, + "internal": 1, + "house": 1, + "technical": 1, + "debt": 1, + "weekly-digest": 1, + "shallow": 1, + "commerce": 1, + "ie": 2.25, + "hsl": 1, + "left": 1, + "out": 1, + "welcome": 1, + "opinions": 1, + "documents": 1, + "legacy": 1, + "grafana": 1, + "react": 1, + "native": 1, + "lang-go": 1, + "tutorial": 1, + "plugin": 1, + "logo": 1, + "refactoring": 1, + "safari": 1, + "saltstack": 1, + "available": 1, + "server": 1, + "rendering": 1, + "htmlfile": 1, + "theorem": 1, + "social": 1, + "internationalisation": 1, + "definition": 1, + "enquire": 1, + "packaging": 1, + "lang-r": 1, + "container": 1, + "opencollective": 1, + "report": 1, + "performance": 1, + "clickup": 1, + "installer": 1, + "statement": 1, + "gcp": 1, + "opinion": 1, + "accepted": 1, + "html": 1, + "a": 10.934999999999997, + "y": 1, + "general": 1, + "js": 1, + "speak": 1, + "brainstorming": 1, + "backup": 1, + "language": 1, + "bugfix": 1, + "k": 1, + "s": 1, + "scrum": 1, + "paper": 1, + "library": 1, + "stale": 1, + "optimization": 1, + "show": 1, + "apple": 1, + "low": 1, + "functions": 1, + "gnu": 1, + "linux": 1, + "focus": 1, + "groups": 1, + "dependency-update": 1, + "related": 1, + "bootstrap": 1, + "usability": 16, + "*nix": 1, + "externs": 1, + "critique": 1, + "prince": 1, + "demonstration": 1, + "⬆️": 1, + "memo": 1, + "revisitinfuture": 1, + "tips": 1, + "reference": 1, + "high": 1, + "bug-report": 1, + "babel": 1, + "flashsocket": 1, + "unix": 1, + "npm": 1, + "site": 1, + "chore": 1, + "adapter": 1, + "slides": 1, + "query": 1, + "chat": 1, + "major": 1, + "alpha": 1, + "lock": 1, + "security": 1, + "newsletter": 1, + "color": 1, + "containerd": 1, + "doughnut": 1, + "sentry": 1, + "dissertation": 1, + "mentoring": 1, + "confer": 1, + "utilities": 1, + "infosec": 1, + "vulnerability": 1, + "has": 1, + "code": 1, + "teaching": 1, + "protection": 1, + "robot": 1, + "android": 1, + "webaim": 1, + "wontfix": 1, + "triage": 2.25, + "contribution": 1, + "macos": 1, + "blog": 1, + "progress": 1, + "future": 1, + "architecture": 1, + "enhancements": 1, + "pmi": 1, + "promotion": 1, + "validation": 1, + "art": 1, + "film": 1, + "bitbucket": 1, + "cloud": 1, + "labour": 1, + "python": 1, + "suggestion": 1, + "crypto": 1, + "attitudinal": 1, + "electron": 1, + "example": 1, + "resolution": 1, + "redirect": 1, + "monitor": 1, + "css": 1, + "hack": 1, + "translation": 1, + "opportunity": 1, + "vultr": 1, + "kubernetes": 1, + "wiki": 1, + "parser": 1, + "pwa": 1, + "iphone": 1, + "program": 1, + "finding": 1, + "digital": 1, + "ocean": 1, + "safeguard": 1, + "iac": 1, + "javascript": 1, + "glo": 1, + "porting": 1, + "on": 1, + "hold": 1, + "go": 1, + "must-triage": 1, + "gradle": 1, + "accessibility": 1, + "work": 1, + "other": 1, + "wrangling": 1, + "sast": 1, + "tech-debt": 1, + "entry": 1, + "fault": 1, + "problem": 1, + "brand": 1, + "internal-issue-created": 1, + "pmp": 1, + "checkpoint": 1, + "csharp": 1, + "unreviewed": 1, + "idea": 1, + "feedback": 1, + "requested": 1, + "wcag": 1, + "bugs": 1, + "mentor": 1, + "economics": 1, + "lib": 1, + "puppet": 1, + "speech": 1.7999999999999998, + "balloon": 1.7999999999999998, + "unit-mocha": 0.012345679012345684, + "tdd": 0.015625, + "e-nightwatch": 1, + "c": 2, + "c++": 2, + "bulb": 1.875, + "prometheus": 2.25, + "rocket": 2, + "discuss": 1.7999999999999998, + "doc": 2.25, + "blogs": 2.25, + "enterprise": 2.25, + "scheduler": 2, + "class": 1, + "fields": 1, + "commercial": 1, + "infra": 1, + "terraform": 1, + "figure": 1, + "layout": 1, + "specification": 1, + "vector": 1, + "greenkeeper": 1, + "raster": 1, + "mishap": 1, + "sketch": 1, + "released": 1, + "font": 1, + "deployment": 2, + "engine": 2, + "vulns": 2, + "syntax": 1, + "deliverable": 1, + "manual": 1, + "osx": 1, + "axe": 1, + "sendgrid": 1, + "operating": 2, + "system": 2, + "advance": 1, + "workflow": 1, + "safety": 1, + "phonetic": 1, + "concept": 1, + "lerna": 1, + "readme": 1, + "music": 1, + "failing": 5.831999999999998, + "customer": 2, + "extension": 1, + "lint": 1, + "optimizing": 1.875, + "compiler": 1.875, + "css-select": 1, + "figma": 1, + "finance": 1, + "closed": 1.7999999999999998, + "due": 1.7999999999999998, + "inactivity": 1.7999999999999998, + "jira": 1, + "survey": 1, + "behavioral": 1.875, + "multi": 2, + "module": 2, + "mixing": 1, + "backlog": 2, + "update": 1, + "present": 1, + "modules": 1, + "lang-julia": 1, + "vuln": 1, + "demo": 1, + "corporate": 1, + "spam": 1, + "handshakes": 1, + "platform": 1, + "wave": 1, + "ansible": 1, + "lang-convert": 1, + "gdpr": 1, + "classes": 1, + "websocket": 1, + "speach": 1, + "b": 1.875, + "chef": 1, + "patreon": 1, + "reviewed-changes-requested": 1, + "youtube": 1, + "(legacy)": 1, + "mentorship": 1, + "typescript": 2, + "didactic": 1, + "story": 1, + "academia": 1 + }, + "positive_weights_sum": {}, + "negative_weights_sum": {} + }, + "content": { + "positive_weights": { + "thesis": 22.78125, + "bias": 6.8897411331024255e-12, + "website": 4, + "copy": 16, + "article": 10.125, + "contenu": 10.125, + "paper": 10.125, + "newsletter": 10.125, + "component": 0.28125, + "developer": 0.75, + "tools": 0.75, + "inspiration": 0.125, + "business": 0.6666666666666667, + "process": 0.6666666666666667, + "sustain": 0.5, + "confirmed": 0.5, + "type": 0.30000000000000004, + "question": 0.75, + "grey": 0.75, + "cmty": 2, + "need-info": 0.5, + "sustenance": 0.5, + "good": 0.75, + "first": 0.75, + "issue": 0.75, + "kind": 0.6666666666666667, + "discussion": 0.6666666666666667, + "palette": 0.5, + "azure": 0.6666666666666667, + "ad": 0.6666666666666667, + "data": 0.6666666666666667, + "collection": 0.6666666666666667, + "external-bugs": 0.5, + "deal": 0.5, + "hacking": 0.5, + "video": 0.5, + "test": 0.75, + "utils": 0.75, + "hsv": 2, + "pentesting": 2, + "design": 0.6666666666666667, + "bug": 2, + "guide": 2, + "next": 0.6666666666666667, + "meetup!": 0.6666666666666667, + "feat": 0.75, + "ui": 2, + "mastering": 2, + "steps": 2, + "abandoned": 2, + "badges": 2, + "sponsor": 2, + "assess": 2, + "pr": 0.8, + "merged": 2, + "vlog": 2, + "acceptance": 0.6666666666666667, + "testing": 0.6666666666666667, + "hot": 2, + "tv": 2, + "soundtrack": 2, + "(category)": 0.6666666666666667, + "ci": 2, + "cd": 2, + "multi-cloud": 2, + "funding": 2, + "finder": 2, + "difficulty": 2, + "hard": 2, + "documentation": 2, + "book": 2, + "diary": 2, + "standard": 2, + "colour": 2, + "computer": 2, + "desktop": 2, + "flaw": 2, + "reliability": 2, + "cli-service": 0.75, + "build": 0.75, + "blocked": 2, + "maintenance": 2, + "construction": 2, + "ios": 2, + "planned": 2, + "feature": 0.8333333333333333, + "feature-request": 2, + "rfc": 2, + "image": 0.6666666666666667, + "stock": 2, + "reminder": 2, + "status": 0.75, + "review": 0.75, + "needed": 0.75, + "in": 2, + "lang-crystal": 2, + "breaking": 2, + "change": 2, + "phone": 2, + "refactor": 2, + "monologue": 2, + "reviewed-approved": 2, + "new": 0.75, + "best": 0.75, + "practice": 0.75, + "lecture": 2, + "backing": 2, + "browser": 2, + "aws": 2, + "polish": 0.8, + "nail": 0.8, + "care": 0.8, + "peer-review": 2, + "writer-needed": 2, + "eventstorming": 2, + "freemasonry": 2, + "icons": 2, + "lean": 2, + "cannot": 2, + "reproduce": 2, + "paas": 2, + "net": 2, + "core": 2, + "wiretap": 2, + "unit-jest": 2, + "instruction": 2, + "infrastructure": 2, + "rgb": 2, + "ideas": 2, + "target": 2, + "windows": 2, + "call": 2, + "iconography": 2, + "promote": 2, + "template": 2, + "support": 2, + "first-timers-only": 2, + "java": 2, + "cdn": 2, + "dependency": 2, + "ready": 2, + "for": 2, + "deploy": 2, + "troubleshooting": 2, + "spec": 0.75, + "bigint": 2, + "async": 2, + "generators": 2, + "proposal": 2, + "e": 2, + "approachability": 2, + "investment": 2, + "conflicts": 2, + "optimisation": 2, + "kotlin": 2, + "release": 0.8, + "unconfirmed": 2, + "duplicate": 2, + "repeat": 2, + "devops": 2, + "defend": 2, + "blogging": 2, + "friendliness": 2, + "i": 2, + "n": 2, + "cla": 2, + "signed": 2, + "icebox": 2, + "meetup": 2, + "examination": 2, + "mobile": 2, + "device": 2, + "api": 2, + "decorators": 2, + "addon": 2, + "cracking": 2, + "sparkles": 2, + "enhancement": 2, + "hooks": 2, + "improved": 2, + "error": 2, + "handling": 2, + "needs": 0.8, + "repro": 2, + "upkeep": 2, + "reactis": 2, + "to": 0.8, + "be": 2, + "sample": 2, + "white": 2, + "check": 2, + "mark": 2, + "external": 2, + "hacktoberfest": 2, + "lang-dart": 2, + "framework": 2, + "icon": 2, + "grant": 2, + "needs-research": 2, + "cybersec": 2, + "biz": 2, + "internationalization": 2, + "utility-lib": 2, + "qa": 2, + "do": 2, + "not": 2, + "merge": 2, + "hacked": 2, + "how-to": 2, + "beginner-friendly": 2, + "trello": 2, + "os": 2, + "sound": 2, + "docs": 2, + "improvement": 2, + "heavy": 0.8333333333333333, + "plus": 0.8333333333333333, + "sign": 0.8333333333333333, + "request": 0.8333333333333333, + "glitch": 2, + "cx": 2, + "dependencies": 2, + "inquiry": 2, + "deno": 2, + "area": 2, + "crash": 2, + "camera": 2, + "wip": 2, + "configure": 2, + "dom": 2, + "programming": 2, + "font-face": 2, + "rgba": 2, + "parser-specific": 2, + "wikipedia": 2, + "shell": 2, + "contributions": 2, + "tryout": 2, + "thought": 2, + "analysis": 2, + "cli": 2, + "fund": 2, + "investigation": 2, + "basecamp": 2, + "literature": 2, + "socket": 2, + "io": 2, + "client": 0.8, + "fiscal": 2, + "user": 2, + "debug": 2, + "information": 2, + "frontend": 2, + "upstream": 2, + "raising": 2, + "hand": 2, + "style": 2, + "clean": 2, + "up": 2, + "motif": 2, + "event": 2, + "help": 2, + "wanted": 2, + "priority": 2, + "medium": 2, + "financial": 2, + "ruby": 2, + "es": 2, + "warrant": 2, + "cancelled": 2, + "plan": 2, + "hackathon": 2, + "beginner": 2, + "typography": 2, + "counsel": 2, + "recording": 2, + "crowdin": 2, + "eslint": 2, + "rules": 2, + "easy": 2, + "repare": 2, + "conference": 2, + "great": 2, + "insight": 2, + "phd": 2, + "orange": 2, + "invalid": 2, + "x": 2, + "changelog": 2, + "e-cypress": 2, + "lipstick": 2, + "-": 2, + "backdoor": 2, + "approved": 2, + "talk": 2, + "subtitle": 2, + "research": 2, + "todo": 2, + "spiral": 2, + "notepad": 2, + "interface": 2, + "critical": 2, + "privacy": 2, + "tests": 2, + "boom": 2, + "web": 2, + "app": 0.8, + "television": 2, + "uat": 2, + "backer": 2, + "exploit": 2, + "requires": 2, + "travis-yml": 2, + "node": 2, + "dev": 2, + "experience": 2, + "fix": 2, + "backend": 2, + "cleaning": 2, + "internal": 0.8, + "house": 2, + "technical": 2, + "debt": 2, + "weekly-digest": 2, + "shallow": 2, + "renderer": 2, + "commerce": 2, + "ie": 2, + "hsl": 2, + "left": 2, + "out": 2, + "welcome": 2, + "opinions": 2, + "documents": 2, + "legacy": 2, + "grafana": 2, + "react": 2, + "native": 2, + "lang-go": 2, + "tutorial": 2, + "plugin": 2, + "logo": 2, + "refactoring": 2, + "safari": 2, + "saltstack": 2, + "available": 2, + "server": 2, + "rendering": 2, + "htmlfile": 2, + "theorem": 2, + "social": 2, + "internationalisation": 2, + "definition": 2, + "enquire": 2, + "packaging": 2, + "lang-r": 2, + "regression": 2, + "container": 2, + "opencollective": 2, + "report": 2, + "performance": 2, + "clickup": 2, + "installer": 2, + "statement": 2, + "gcp": 2, + "opinion": 2, + "accepted": 2, + "html": 2, + "a": 0.8, + "y": 2, + "general": 2, + "js": 2, + "unit": 2, + "speak": 2, + "brainstorming": 2, + "backup": 2, + "language": 2, + "bugfix": 2, + "k": 2, + "s": 2, + "scrum": 2, + "library": 2, + "stale": 2, + "optimization": 2, + "show": 2, + "apple": 2, + "low": 2, + "functions": 2, + "gnu": 2, + "linux": 2, + "focus": 2, + "groups": 2, + "dependency-update": 2, + "related": 2, + "bootstrap": 2, + "usability": 2, + "*nix": 2, + "externs": 2, + "critique": 2, + "prince": 2, + "demonstration": 2, + "⬆️": 2, + "memo": 2, + "revisitinfuture": 2, + "tips": 2, + "reference": 2, + "high": 2, + "bug-report": 2, + "babel": 2, + "flashsocket": 2, + "unix": 2, + "npm": 2, + "site": 2, + "chore": 2, + "adapter": 2, + "slides": 2, + "query": 2, + "chat": 2, + "major": 2, + "alpha": 2, + "lock": 2, + "security": 2, + "verification": 2, + "color": 2, + "containerd": 2, + "doughnut": 2, + "sentry": 2, + "dissertation": 2, + "mentoring": 2, + "confer": 2, + "utilities": 2, + "infosec": 2, + "vulnerability": 2, + "has": 2, + "code": 2, + "teaching": 2, + "protection": 2, + "robot": 2, + "android": 2, + "webaim": 2, + "wontfix": 2, + "triage": 2, + "contribution": 2, + "macos": 2, + "assertion": 2, + "blog": 2, + "progress": 2, + "future": 2, + "architecture": 2, + "enhancements": 2, + "pmi": 2, + "promotion": 2, + "validation": 2, + "art": 2, + "film": 2, + "bitbucket": 2, + "cloud": 2, + "labour": 2, + "python": 2, + "suggestion": 2, + "crypto": 2, + "attitudinal": 2, + "electron": 2, + "trial": 2, + "example": 0.8, + "resolution": 2, + "redirect": 2, + "assessment": 2, + "monitor": 2, + "css": 2, + "hack": 2, + "translation": 2, + "opportunity": 2, + "vultr": 2, + "kubernetes": 2, + "wiki": 2, + "parser": 2, + "pwa": 2, + "iphone": 2, + "program": 2, + "finding": 2, + "digital": 2, + "ocean": 2, + "safeguard": 2, + "iac": 2, + "javascript": 2, + "integration": 2, + "glo": 2, + "porting": 2, + "on": 2, + "hold": 2, + "evaluation": 2, + "go": 0.8, + "must-triage": 2, + "gradle": 2, + "accessibility": 2, + "work": 2, + "other": 2, + "wrangling": 2, + "sast": 2, + "tech-debt": 2, + "entry": 2, + "fault": 2, + "problem": 2, + "brand": 2, + "internal-issue-created": 2, + "pmp": 2, + "bdd": 2, + "checkpoint": 2, + "csharp": 2, + "unreviewed": 2, + "idea": 2, + "feedback": 2, + "requested": 2, + "wcag": 2, + "bugs": 2, + "mentor": 2, + "economics": 2, + "lib": 2, + "puppet": 2, + "speech": 0.8, + "balloon": 0.8, + "story": 22.78125, + "c": 0.6666666666666667, + "c++": 0.6666666666666667, + "bulb": 2, + "prometheus": 2, + "rocket": 2, + "discuss": 0.8, + "doc": 2, + "blogs": 2, + "unit-mocha": 2, + "enterprise": 2, + "scheduler": 2, + "class": 0.75, + "fields": 0.75, + "commercial": 2, + "infra": 2, + "terraform": 2, + "figure": 2, + "layout": 2, + "specification": 2, + "vector": 0.6666666666666667, + "greenkeeper": 2, + "tdd": 2, + "raster": 2, + "mishap": 2, + "sketch": 2, + "released": 2, + "font": 2, + "deployment": 2, + "e-nightwatch": 2, + "engine": 2, + "vulns": 2, + "syntax": 2, + "deliverable": 2, + "manual": 2, + "osx": 2, + "axe": 2, + "sendgrid": 2, + "operating": 2, + "system": 2, + "advance": 2, + "workflow": 2, + "safety": 2, + "phonetic": 2, + "concept": 2, + "lerna": 2, + "readme": 2, + "music": 2, + "failing": 2, + "customer": 2, + "extension": 2, + "lint": 2, + "optimizing": 2, + "compiler": 2, + "css-select": 2, + "figma": 2, + "finance": 2, + "closed": 0.8, + "due": 0.8, + "inactivity": 0.8, + "jira": 2, + "survey": 2, + "behavioral": 2, + "multi": 2, + "module": 2, + "mixing": 2, + "backlog": 2, + "update": 2, + "present": 2, + "modules": 2, + "lang-julia": 2, + "vuln": 2, + "demo": 2, + "corporate": 2, + "spam": 2, + "handshakes": 2, + "platform": 2, + "wave": 2, + "ansible": 2, + "lang-convert": 2, + "gdpr": 2, + "classes": 2, + "websocket": 2, + "speach": 2, + "b": 2, + "chef": 2, + "patreon": 2, + "reviewed-changes-requested": 2, + "youtube": 2, + "(legacy)": 2, + "mentorship": 2, + "typescript": 2, + "didactic": 2, + "academia": 2 + }, + "negative_weights": { + "thesis": 0.015625, + "bias": 6.007133536551463, + "website": 0.08333333333333336, + "copy": 0.03703703703703705, + "article": 0.0625, + "contenu": 0.0625, + "paper": 0.0625, + "newsletter": 0.0625, + "component": 3.515625, + "developer": 1.875, + "tools": 1.875, + "inspiration": 5.0625, + "business": 2, + "process": 2, + "sustain": 2.25, + "confirmed": 2.25, + "type": 3.3749999999999996, + "question": 1.875, + "grey": 1.875, + "cmty": 1, + "need-info": 2.25, + "sustenance": 2.25, + "good": 1.875, + "first": 1.875, + "issue": 1.875, + "kind": 2, + "discussion": 2, + "palette": 2.25, + "azure": 2, + "ad": 2, + "data": 2, + "collection": 2, + "external-bugs": 2.25, + "deal": 2.25, + "hacking": 2.25, + "video": 2.25, + "test": 1.875, + "utils": 1.875, + "hsv": 1, + "pentesting": 1, + "design": 2, + "bug": 1, + "guide": 1, + "next": 2, + "meetup!": 2, + "feat": 1.875, + "ui": 1, + "mastering": 1, + "steps": 1, + "abandoned": 1, + "badges": 1, + "sponsor": 1, + "assess": 1, + "pr": 1.7999999999999998, + "merged": 1, + "vlog": 1, + "acceptance": 2, + "testing": 2, + "hot": 1, + "tv": 1, + "soundtrack": 1, + "(category)": 2, + "ci": 1, + "cd": 1, + "multi-cloud": 1, + "funding": 1, + "finder": 1, + "difficulty": 1, + "hard": 1, + "documentation": 1, + "book": 1, + "diary": 1, + "standard": 1, + "colour": 1, + "computer": 1, + "desktop": 1, + "flaw": 1, + "reliability": 1, + "cli-service": 1.875, + "build": 1.875, + "blocked": 1, + "maintenance": 1, + "construction": 1, + "ios": 1, + "planned": 1, + "feature": 1.75, + "feature-request": 1, + "rfc": 1, + "image": 2, + "stock": 1, + "reminder": 1, + "status": 1.875, + "review": 1.875, + "needed": 1.875, + "in": 1, + "lang-crystal": 1, + "breaking": 1, + "change": 1, + "phone": 1, + "refactor": 1, + "monologue": 1, + "reviewed-approved": 1, + "new": 1.875, + "best": 1.875, + "practice": 1.875, + "lecture": 1, + "backing": 1, + "browser": 1, + "aws": 1, + "polish": 1.7999999999999998, + "nail": 1.7999999999999998, + "care": 1.7999999999999998, + "peer-review": 1, + "writer-needed": 1, + "eventstorming": 1, + "freemasonry": 1, + "icons": 1, + "lean": 1, + "cannot": 1, + "reproduce": 1, + "paas": 1, + "net": 1, + "core": 1, + "wiretap": 1, + "unit-jest": 1, + "instruction": 1, + "infrastructure": 1, + "rgb": 1, + "ideas": 1, + "target": 1, + "windows": 1, + "call": 1, + "iconography": 1, + "promote": 1, + "template": 1, + "support": 1, + "first-timers-only": 1, + "java": 1, + "cdn": 1, + "dependency": 1, + "ready": 1, + "for": 1, + "deploy": 1, + "troubleshooting": 1, + "spec": 1.875, + "bigint": 1, + "async": 1, + "generators": 1, + "proposal": 1, + "e": 1, + "approachability": 1, + "investment": 1, + "conflicts": 1, + "optimisation": 1, + "kotlin": 1, + "release": 1.7999999999999998, + "unconfirmed": 1, + "duplicate": 1, + "repeat": 1, + "devops": 1, + "defend": 1, + "blogging": 1, + "friendliness": 1, + "i": 1, + "n": 1, + "cla": 1, + "signed": 1, + "icebox": 1, + "meetup": 1, + "examination": 1, + "mobile": 1, + "device": 1, + "api": 1, + "decorators": 1, + "addon": 1, + "cracking": 1, + "sparkles": 1, + "enhancement": 1, + "hooks": 1, + "improved": 1, + "error": 1, + "handling": 1, + "needs": 1.7999999999999998, + "repro": 1, + "upkeep": 1, + "reactis": 1, + "to": 1.7999999999999998, + "be": 1, + "sample": 1, + "white": 1, + "check": 1, + "mark": 1, + "external": 1, + "hacktoberfest": 1, + "lang-dart": 1, + "framework": 1, + "icon": 1, + "grant": 1, + "needs-research": 1, + "cybersec": 1, + "biz": 1, + "internationalization": 1, + "utility-lib": 1, + "qa": 1, + "do": 1, + "not": 1, + "merge": 1, + "hacked": 1, + "how-to": 1, + "beginner-friendly": 1, + "trello": 1, + "os": 1, + "sound": 1, + "docs": 1, + "improvement": 1, + "heavy": 1.75, + "plus": 1.75, + "sign": 1.75, + "request": 1.75, + "glitch": 1, + "cx": 1, + "dependencies": 1, + "inquiry": 1, + "deno": 1, + "area": 1, + "crash": 1, + "camera": 1, + "wip": 1, + "configure": 1, + "dom": 1, + "programming": 1, + "font-face": 1, + "rgba": 1, + "parser-specific": 1, + "wikipedia": 1, + "shell": 1, + "contributions": 1, + "tryout": 1, + "thought": 1, + "analysis": 1, + "cli": 1, + "fund": 1, + "investigation": 1, + "basecamp": 1, + "literature": 1, + "socket": 1, + "io": 1, + "client": 1.7999999999999998, + "fiscal": 1, + "user": 1, + "debug": 1, + "information": 1, + "frontend": 1, + "upstream": 1, + "raising": 1, + "hand": 1, + "style": 1, + "clean": 1, + "up": 1, + "motif": 1, + "event": 1, + "help": 1, + "wanted": 1, + "priority": 1, + "medium": 1, + "financial": 1, + "ruby": 1, + "es": 1, + "warrant": 1, + "cancelled": 1, + "plan": 1, + "hackathon": 1, + "beginner": 1, + "typography": 1, + "counsel": 1, + "recording": 1, + "crowdin": 1, + "eslint": 1, + "rules": 1, + "easy": 1, + "repare": 1, + "conference": 1, + "great": 1, + "insight": 1, + "phd": 1, + "orange": 1, + "invalid": 1, + "x": 1, + "changelog": 1, + "e-cypress": 1, + "lipstick": 1, + "-": 1, + "backdoor": 1, + "approved": 1, + "talk": 1, + "subtitle": 1, + "research": 1, + "todo": 1, + "spiral": 1, + "notepad": 1, + "interface": 1, + "critical": 1, + "privacy": 1, + "tests": 1, + "boom": 1, + "web": 1, + "app": 1.7999999999999998, + "television": 1, + "uat": 1, + "backer": 1, + "exploit": 1, + "requires": 1, + "travis-yml": 1, + "node": 1, + "dev": 1, + "experience": 1, + "fix": 1, + "backend": 1, + "cleaning": 1, + "internal": 1.7999999999999998, + "house": 1, + "technical": 1, + "debt": 1, + "weekly-digest": 1, + "shallow": 1, + "renderer": 1, + "commerce": 1, + "ie": 1, + "hsl": 1, + "left": 1, + "out": 1, + "welcome": 1, + "opinions": 1, + "documents": 1, + "legacy": 1, + "grafana": 1, + "react": 1, + "native": 1, + "lang-go": 1, + "tutorial": 1, + "plugin": 1, + "logo": 1, + "refactoring": 1, + "safari": 1, + "saltstack": 1, + "available": 1, + "server": 1, + "rendering": 1, + "htmlfile": 1, + "theorem": 1, + "social": 1, + "internationalisation": 1, + "definition": 1, + "enquire": 1, + "packaging": 1, + "lang-r": 1, + "regression": 1, + "container": 1, + "opencollective": 1, + "report": 1, + "performance": 1, + "clickup": 1, + "installer": 1, + "statement": 1, + "gcp": 1, + "opinion": 1, + "accepted": 1, + "html": 1, + "a": 1.7999999999999998, + "y": 1, + "general": 1, + "js": 1, + "unit": 1, + "speak": 1, + "brainstorming": 1, + "backup": 1, + "language": 1, + "bugfix": 1, + "k": 1, + "s": 1, + "scrum": 1, + "library": 1, + "stale": 1, + "optimization": 1, + "show": 1, + "apple": 1, + "low": 1, + "functions": 1, + "gnu": 1, + "linux": 1, + "focus": 1, + "groups": 1, + "dependency-update": 1, + "related": 1, + "bootstrap": 1, + "usability": 1, + "*nix": 1, + "externs": 1, + "critique": 1, + "prince": 1, + "demonstration": 1, + "⬆️": 1, + "memo": 1, + "revisitinfuture": 1, + "tips": 1, + "reference": 1, + "high": 1, + "bug-report": 1, + "babel": 1, + "flashsocket": 1, + "unix": 1, + "npm": 1, + "site": 1, + "chore": 1, + "adapter": 1, + "slides": 1, + "query": 1, + "chat": 1, + "major": 1, + "alpha": 1, + "lock": 1, + "security": 1, + "verification": 1, + "color": 1, + "containerd": 1, + "doughnut": 1, + "sentry": 1, + "dissertation": 1, + "mentoring": 1, + "confer": 1, + "utilities": 1, + "infosec": 1, + "vulnerability": 1, + "has": 1, + "code": 1, + "teaching": 1, + "protection": 1, + "robot": 1, + "android": 1, + "webaim": 1, + "wontfix": 1, + "triage": 1, + "contribution": 1, + "macos": 1, + "assertion": 1, + "blog": 1, + "progress": 1, + "future": 1, + "architecture": 1, + "enhancements": 1, + "pmi": 1, + "promotion": 1, + "validation": 1, + "art": 1, + "film": 1, + "bitbucket": 1, + "cloud": 1, + "labour": 1, + "python": 1, + "suggestion": 1, + "crypto": 1, + "attitudinal": 1, + "electron": 1, + "trial": 1, + "example": 1.7999999999999998, + "resolution": 1, + "redirect": 1, + "assessment": 1, + "monitor": 1, + "css": 1, + "hack": 1, + "translation": 1, + "opportunity": 1, + "vultr": 1, + "kubernetes": 1, + "wiki": 1, + "parser": 1, + "pwa": 1, + "iphone": 1, + "program": 1, + "finding": 1, + "digital": 1, + "ocean": 1, + "safeguard": 1, + "iac": 1, + "javascript": 1, + "integration": 1, + "glo": 1, + "porting": 1, + "on": 1, + "hold": 1, + "evaluation": 1, + "go": 1.7999999999999998, + "must-triage": 1, + "gradle": 1, + "accessibility": 1, + "work": 1, + "other": 1, + "wrangling": 1, + "sast": 1, + "tech-debt": 1, + "entry": 1, + "fault": 1, + "problem": 1, + "brand": 1, + "internal-issue-created": 1, + "pmp": 1, + "bdd": 1, + "checkpoint": 1, + "csharp": 1, + "unreviewed": 1, + "idea": 1, + "feedback": 1, + "requested": 1, + "wcag": 1, + "bugs": 1, + "mentor": 1, + "economics": 1, + "lib": 1, + "puppet": 1, + "speech": 1.7999999999999998, + "balloon": 1.7999999999999998, + "story": 0.015625, + "c": 2, + "c++": 2, + "bulb": 1, + "prometheus": 1, + "rocket": 1, + "discuss": 1.7999999999999998, + "doc": 1, + "blogs": 1, + "unit-mocha": 1, + "enterprise": 1, + "scheduler": 1, + "class": 1.875, + "fields": 1.875, + "commercial": 1, + "infra": 1, + "terraform": 1, + "figure": 1, + "layout": 1, + "specification": 1, + "vector": 2, + "greenkeeper": 1, + "tdd": 1, + "raster": 1, + "mishap": 1, + "sketch": 1, + "released": 1, + "font": 1, + "deployment": 1, + "e-nightwatch": 1, + "engine": 1, + "vulns": 1, + "syntax": 1, + "deliverable": 1, + "manual": 1, + "osx": 1, + "axe": 1, + "sendgrid": 1, + "operating": 1, + "system": 1, + "advance": 1, + "workflow": 1, + "safety": 1, + "phonetic": 1, + "concept": 1, + "lerna": 1, + "readme": 1, + "music": 1, + "failing": 1, + "customer": 1, + "extension": 1, + "lint": 1, + "optimizing": 1, + "compiler": 1, + "css-select": 1, + "figma": 1, + "finance": 1, + "closed": 1.7999999999999998, + "due": 1.7999999999999998, + "inactivity": 1.7999999999999998, + "jira": 1, + "survey": 1, + "behavioral": 1, + "multi": 1, + "module": 1, + "mixing": 1, + "backlog": 1, + "update": 1, + "present": 1, + "modules": 1, + "lang-julia": 1, + "vuln": 1, + "demo": 1, + "corporate": 1, + "spam": 1, + "handshakes": 1, + "platform": 1, + "wave": 1, + "ansible": 1, + "lang-convert": 1, + "gdpr": 1, + "classes": 1, + "websocket": 1, + "speach": 1, + "b": 1, + "chef": 1, + "patreon": 1, + "reviewed-changes-requested": 1, + "youtube": 1, + "(legacy)": 1, + "mentorship": 1, + "typescript": 1, + "didactic": 1, + "academia": 1 + }, + "positive_weights_sum": {}, + "negative_weights_sum": {} + }, + "tutorial": { + "positive_weights": { + "guide": 22.78125, + "bias": 7.05509492029689e-11, + "lecture": 22.78125, + "how-to": 22.78125, + "tutorial": 10.125, + "teaching": 10.125, + "component": 0.75, + "developer": 0.75, + "tools": 0.75, + "inspiration": 0.5, + "business": 0.6666666666666667, + "process": 0.6666666666666667, + "sustain": 0.5, + "confirmed": 0.5, + "type": 0.30000000000000004, + "question": 0.75, + "grey": 0.75, + "cmty": 2, + "need-info": 0.5, + "sustenance": 0.5, + "good": 0.75, + "first": 0.75, + "issue": 0.75, + "kind": 0.6666666666666667, + "discussion": 0.6666666666666667, + "palette": 0.5, + "azure": 0.6666666666666667, + "ad": 0.6666666666666667, + "data": 0.6666666666666667, + "collection": 0.6666666666666667, + "external-bugs": 0.5, + "deal": 0.5, + "hacking": 0.5, + "video": 0.5, + "test": 2, + "utils": 2, + "hsv": 0.5, + "thesis": 2, + "pentesting": 2, + "design": 0.6666666666666667, + "website": 0.6666666666666667, + "copy": 0.6666666666666667, + "bug": 2, + "next": 0.6666666666666667, + "meetup!": 0.6666666666666667, + "feat": 0.75, + "ui": 2, + "mastering": 2, + "steps": 2, + "abandoned": 2, + "badges": 2, + "sponsor": 2, + "assess": 2, + "pr": 0.8, + "merged": 2, + "vlog": 2, + "acceptance": 2, + "testing": 0.8, + "hot": 2, + "tv": 2, + "soundtrack": 2, + "(category)": 0.6666666666666667, + "ci": 2, + "cd": 2, + "multi-cloud": 2, + "funding": 2, + "finder": 2, + "difficulty": 2, + "hard": 2, + "documentation": 2, + "book": 2, + "diary": 2, + "standard": 2, + "colour": 2, + "computer": 2, + "desktop": 2, + "flaw": 2, + "reliability": 2, + "cli-service": 0.75, + "build": 0.75, + "blocked": 2, + "maintenance": 2, + "construction": 2, + "ios": 2, + "planned": 2, + "feature": 0.8333333333333334, + "feature-request": 2, + "rfc": 2, + "image": 2, + "stock": 2, + "reminder": 2, + "status": 0.8, + "review": 2, + "needed": 2, + "in": 2, + "lang-crystal": 2, + "breaking": 2, + "change": 2, + "phone": 2, + "refactor": 2, + "monologue": 2, + "reviewed-approved": 2, + "new": 2, + "best": 2, + "practice": 2, + "backing": 2, + "browser": 2, + "aws": 2, + "polish": 0.8, + "nail": 0.8, + "care": 0.8, + "article": 2, + "peer-review": 2, + "writer-needed": 2, + "eventstorming": 2, + "freemasonry": 2, + "icons": 2, + "lean": 2, + "cannot": 2, + "reproduce": 2, + "paas": 2, + "net": 2, + "core": 2, + "wiretap": 2, + "unit-jest": 2, + "instruction": 2, + "infrastructure": 2, + "rgb": 2, + "ideas": 2, + "target": 2, + "windows": 2, + "call": 2, + "iconography": 2, + "promote": 2, + "template": 2, + "support": 2, + "first-timers-only": 2, + "java": 2, + "cdn": 2, + "dependency": 2, + "ready": 0.8, + "for": 0.8, + "deploy": 0.8, + "troubleshooting": 2, + "spec": 0.75, + "bigint": 2, + "async": 2, + "generators": 2, + "proposal": 2, + "e": 2, + "approachability": 2, + "investment": 2, + "conflicts": 2, + "optimisation": 2, + "kotlin": 2, + "release": 0.8, + "unconfirmed": 2, + "duplicate": 2, + "repeat": 2, + "devops": 2, + "defend": 2, + "blogging": 2, + "friendliness": 2, + "i": 2, + "n": 2, + "cla": 2, + "signed": 2, + "icebox": 2, + "meetup": 2, + "examination": 2, + "mobile": 2, + "device": 2, + "api": 2, + "decorators": 2, + "addon": 2, + "cracking": 2, + "sparkles": 2, + "enhancement": 2, + "hooks": 2, + "improved": 2, + "error": 2, + "handling": 2, + "needs": 0.8, + "repro": 2, + "upkeep": 2, + "reactis": 2, + "to": 0.8, + "be": 2, + "sample": 2, + "white": 0.8, + "check": 0.8, + "mark": 0.8, + "external": 2, + "hacktoberfest": 2, + "lang-dart": 2, + "framework": 2, + "icon": 2, + "grant": 2, + "needs-research": 2, + "cybersec": 2, + "biz": 2, + "internationalization": 2, + "utility-lib": 2, + "qa": 2, + "do": 2, + "not": 2, + "merge": 2, + "hacked": 2, + "beginner-friendly": 2, + "trello": 2, + "os": 2, + "sound": 2, + "docs": 2, + "improvement": 2, + "heavy": 0.8333333333333334, + "plus": 0.8333333333333334, + "sign": 0.8333333333333334, + "request": 0.8333333333333334, + "glitch": 2, + "cx": 2, + "dependencies": 2, + "inquiry": 2, + "deno": 2, + "area": 2, + "crash": 2, + "camera": 2, + "wip": 2, + "configure": 2, + "dom": 2, + "programming": 2, + "font-face": 2, + "rgba": 2, + "parser-specific": 2, + "wikipedia": 2, + "shell": 2, + "contributions": 2, + "tryout": 2, + "thought": 2, + "analysis": 2, + "contenu": 2, + "cli": 2, + "fund": 2, + "investigation": 2, + "basecamp": 2, + "literature": 2, + "socket": 2, + "io": 2, + "client": 0.8, + "fiscal": 2, + "user": 2, + "debug": 2, + "information": 2, + "frontend": 2, + "upstream": 2, + "raising": 2, + "hand": 2, + "style": 2, + "clean": 2, + "up": 2, + "motif": 2, + "event": 2, + "help": 2, + "wanted": 2, + "priority": 2, + "medium": 2, + "financial": 2, + "ruby": 2, + "es": 2, + "warrant": 2, + "cancelled": 2, + "plan": 2, + "hackathon": 2, + "beginner": 2, + "typography": 2, + "counsel": 2, + "recording": 2, + "crowdin": 2, + "eslint": 2, + "rules": 2, + "easy": 2, + "repare": 2, + "conference": 2, + "great": 2, + "insight": 2, + "phd": 2, + "orange": 2, + "invalid": 2, + "x": 2, + "changelog": 2, + "e-cypress": 2, + "lipstick": 2, + "-": 2, + "backdoor": 2, + "approved": 2, + "talk": 2, + "subtitle": 2, + "research": 2, + "todo": 2, + "spiral": 2, + "notepad": 2, + "interface": 2, + "critical": 2, + "privacy": 2, + "tests": 2, + "boom": 2, + "web": 2, + "app": 0.8, + "television": 2, + "uat": 2, + "backer": 2, + "exploit": 2, + "requires": 2, + "travis-yml": 2, + "node": 2, + "dev": 2, + "experience": 2, + "fix": 2, + "backend": 2, + "cleaning": 2, + "internal": 0.8, + "house": 2, + "technical": 2, + "debt": 2, + "weekly-digest": 2, + "shallow": 2, + "renderer": 2, + "commerce": 2, + "ie": 2, + "hsl": 2, + "left": 2, + "out": 2, + "welcome": 2, + "opinions": 2, + "documents": 2, + "legacy": 2, + "grafana": 2, + "react": 2, + "native": 2, + "lang-go": 2, + "plugin": 2, + "logo": 2, + "refactoring": 2, + "safari": 2, + "saltstack": 2, + "available": 2, + "server": 2, + "rendering": 2, + "htmlfile": 2, + "theorem": 2, + "social": 2, + "internationalisation": 2, + "definition": 2, + "enquire": 2, + "packaging": 2, + "lang-r": 2, + "regression": 2, + "container": 2, + "opencollective": 2, + "report": 2, + "performance": 2, + "clickup": 2, + "installer": 2, + "statement": 2, + "gcp": 2, + "opinion": 2, + "accepted": 2, + "html": 2, + "a": 0.8, + "y": 2, + "general": 2, + "js": 2, + "unit": 2, + "speak": 2, + "brainstorming": 2, + "backup": 2, + "language": 2, + "bugfix": 2, + "k": 2, + "s": 2, + "scrum": 2, + "paper": 2, + "library": 2, + "stale": 2, + "optimization": 2, + "show": 2, + "apple": 2, + "low": 2, + "functions": 2, + "gnu": 2, + "linux": 2, + "focus": 2, + "groups": 2, + "dependency-update": 2, + "related": 2, + "bootstrap": 2, + "usability": 2, + "*nix": 2, + "externs": 2, + "critique": 2, + "prince": 2, + "demonstration": 2, + "⬆️": 2, + "memo": 2, + "revisitinfuture": 2, + "tips": 2, + "reference": 2, + "high": 2, + "bug-report": 2, + "babel": 2, + "flashsocket": 2, + "unix": 2, + "npm": 2, + "site": 2, + "chore": 2, + "adapter": 2, + "slides": 2, + "query": 2, + "chat": 2, + "major": 2, + "alpha": 2, + "lock": 2, + "security": 2, + "newsletter": 2, + "verification": 2, + "color": 2, + "containerd": 2, + "doughnut": 2, + "sentry": 2, + "dissertation": 2, + "mentoring": 2, + "confer": 2, + "utilities": 2, + "infosec": 2, + "vulnerability": 2, + "has": 2, + "code": 2, + "protection": 2, + "robot": 2, + "android": 2, + "webaim": 2, + "wontfix": 2, + "triage": 2, + "contribution": 2, + "macos": 2, + "assertion": 2, + "blog": 2, + "progress": 2, + "future": 2, + "architecture": 2, + "enhancements": 2, + "pmi": 2, + "promotion": 2, + "validation": 2, + "art": 2, + "film": 2, + "bitbucket": 2, + "cloud": 2, + "labour": 2, + "python": 2, + "suggestion": 2, + "crypto": 2, + "attitudinal": 2, + "electron": 2, + "trial": 2, + "example": 0.8, + "resolution": 2, + "redirect": 2, + "assessment": 2, + "monitor": 2, + "css": 2, + "hack": 2, + "translation": 2, + "opportunity": 2, + "vultr": 2, + "kubernetes": 2, + "wiki": 2, + "parser": 2, + "pwa": 2, + "iphone": 2, + "program": 2, + "finding": 2, + "digital": 2, + "ocean": 2, + "safeguard": 2, + "iac": 2, + "javascript": 2, + "integration": 2, + "glo": 2, + "porting": 2, + "on": 2, + "hold": 2, + "evaluation": 2, + "go": 0.8, + "must-triage": 2, + "gradle": 2, + "accessibility": 2, + "work": 2, + "other": 2, + "wrangling": 2, + "sast": 2, + "tech-debt": 2, + "entry": 2, + "fault": 2, + "problem": 2, + "brand": 2, + "internal-issue-created": 2, + "pmp": 2, + "bdd": 2, + "checkpoint": 2, + "csharp": 2, + "unreviewed": 2, + "idea": 2, + "feedback": 2, + "requested": 2, + "wcag": 2, + "bugs": 2, + "mentor": 2, + "economics": 2, + "lib": 2, + "puppet": 2, + "speech": 0.8, + "balloon": 0.8, + "didactic": 10.125, + "c": 0.6666666666666667, + "c++": 0.6666666666666667, + "bulb": 2, + "prometheus": 2, + "rocket": 2, + "discuss": 0.8, + "doc": 2, + "blogs": 2, + "unit-mocha": 2, + "enterprise": 2, + "scheduler": 2, + "class": 0.75, + "fields": 0.75, + "commercial": 2, + "infra": 2, + "terraform": 2, + "figure": 2, + "layout": 2, + "specification": 2, + "vector": 2, + "greenkeeper": 2, + "tdd": 2, + "raster": 2, + "mishap": 2, + "sketch": 2, + "released": 2, + "font": 2, + "deployment": 2, + "e-nightwatch": 2, + "engine": 2, + "vulns": 2, + "syntax": 2, + "deliverable": 2, + "manual": 2, + "osx": 2, + "axe": 2, + "sendgrid": 2, + "operating": 2, + "system": 2, + "advance": 2, + "workflow": 2, + "safety": 2, + "phonetic": 2, + "concept": 2, + "lerna": 2, + "readme": 2, + "music": 2, + "failing": 2, + "customer": 2, + "extension": 2, + "lint": 2, + "optimizing": 2, + "compiler": 2, + "css-select": 2, + "figma": 2, + "finance": 2, + "closed": 0.8, + "due": 0.8, + "inactivity": 0.8, + "jira": 2, + "survey": 2, + "behavioral": 2, + "multi": 2, + "module": 2, + "mixing": 2, + "backlog": 2, + "update": 2, + "present": 2, + "modules": 2, + "lang-julia": 2, + "vuln": 2, + "demo": 2, + "corporate": 2, + "spam": 2, + "handshakes": 2, + "platform": 2, + "wave": 2, + "ansible": 2, + "lang-convert": 2, + "gdpr": 2, + "classes": 2, + "websocket": 2, + "speach": 2, + "b": 2, + "chef": 2, + "patreon": 2, + "reviewed-changes-requested": 2, + "youtube": 2, + "(legacy)": 2, + "mentorship": 2, + "typescript": 2, + "story": 2, + "academia": 2 + }, + "negative_weights": { + "guide": 0.015625, + "bias": 4.428939413828661, + "lecture": 0.015625, + "how-to": 0.015625, + "tutorial": 0.0625, + "teaching": 0.0625, + "component": 1.875, + "developer": 1.875, + "tools": 1.875, + "inspiration": 2.25, + "business": 2, + "process": 2, + "sustain": 2.25, + "confirmed": 2.25, + "type": 3.3749999999999996, + "question": 1.875, + "grey": 1.875, + "cmty": 1, + "need-info": 2.25, + "sustenance": 2.25, + "good": 1.875, + "first": 1.875, + "issue": 1.875, + "kind": 2, + "discussion": 2, + "palette": 2.25, + "azure": 2, + "ad": 2, + "data": 2, + "collection": 2, + "external-bugs": 2.25, + "deal": 2.25, + "hacking": 2.25, + "video": 2.25, + "test": 1, + "utils": 1, + "hsv": 2.25, + "thesis": 1, + "pentesting": 1, + "design": 2, + "website": 2, + "copy": 2, + "bug": 1, + "next": 2, + "meetup!": 2, + "feat": 1.875, + "ui": 1, + "mastering": 1, + "steps": 1, + "abandoned": 1, + "badges": 1, + "sponsor": 1, + "assess": 1, + "pr": 1.7999999999999998, + "merged": 1, + "vlog": 1, + "acceptance": 1, + "testing": 1.7999999999999998, + "hot": 1, + "tv": 1, + "soundtrack": 1, + "(category)": 2, + "ci": 1, + "cd": 1, + "multi-cloud": 1, + "funding": 1, + "finder": 1, + "difficulty": 1, + "hard": 1, + "documentation": 1, + "book": 1, + "diary": 1, + "standard": 1, + "colour": 1, + "computer": 1, + "desktop": 1, + "flaw": 1, + "reliability": 1, + "cli-service": 1.875, + "build": 1.875, + "blocked": 1, + "maintenance": 1, + "construction": 1, + "ios": 1, + "planned": 1, + "feature": 1.75, + "feature-request": 1, + "rfc": 1, + "image": 1, + "stock": 1, + "reminder": 1, + "status": 1.7999999999999998, + "review": 1, + "needed": 1, + "in": 1, + "lang-crystal": 1, + "breaking": 1, + "change": 1, + "phone": 1, + "refactor": 1, + "monologue": 1, + "reviewed-approved": 1, + "new": 1, + "best": 1, + "practice": 1, + "backing": 1, + "browser": 1, + "aws": 1, + "polish": 1.7999999999999998, + "nail": 1.7999999999999998, + "care": 1.7999999999999998, + "article": 1, + "peer-review": 1, + "writer-needed": 1, + "eventstorming": 1, + "freemasonry": 1, + "icons": 1, + "lean": 1, + "cannot": 1, + "reproduce": 1, + "paas": 1, + "net": 1, + "core": 1, + "wiretap": 1, + "unit-jest": 1, + "instruction": 1, + "infrastructure": 1, + "rgb": 1, + "ideas": 1, + "target": 1, + "windows": 1, + "call": 1, + "iconography": 1, + "promote": 1, + "template": 1, + "support": 1, + "first-timers-only": 1, + "java": 1, + "cdn": 1, + "dependency": 1, + "ready": 1.7999999999999998, + "for": 1.7999999999999998, + "deploy": 1.7999999999999998, + "troubleshooting": 1, + "spec": 1.875, + "bigint": 1, + "async": 1, + "generators": 1, + "proposal": 1, + "e": 1, + "approachability": 1, + "investment": 1, + "conflicts": 1, + "optimisation": 1, + "kotlin": 1, + "release": 1.7999999999999998, + "unconfirmed": 1, + "duplicate": 1, + "repeat": 1, + "devops": 1, + "defend": 1, + "blogging": 1, + "friendliness": 1, + "i": 1, + "n": 1, + "cla": 1, + "signed": 1, + "icebox": 1, + "meetup": 1, + "examination": 1, + "mobile": 1, + "device": 1, + "api": 1, + "decorators": 1, + "addon": 1, + "cracking": 1, + "sparkles": 1, + "enhancement": 1, + "hooks": 1, + "improved": 1, + "error": 1, + "handling": 1, + "needs": 1.7999999999999998, + "repro": 1, + "upkeep": 1, + "reactis": 1, + "to": 1.7999999999999998, + "be": 1, + "sample": 1, + "white": 1.7999999999999998, + "check": 1.7999999999999998, + "mark": 1.7999999999999998, + "external": 1, + "hacktoberfest": 1, + "lang-dart": 1, + "framework": 1, + "icon": 1, + "grant": 1, + "needs-research": 1, + "cybersec": 1, + "biz": 1, + "internationalization": 1, + "utility-lib": 1, + "qa": 1, + "do": 1, + "not": 1, + "merge": 1, + "hacked": 1, + "beginner-friendly": 1, + "trello": 1, + "os": 1, + "sound": 1, + "docs": 1, + "improvement": 1, + "heavy": 1.75, + "plus": 1.75, + "sign": 1.75, + "request": 1.75, + "glitch": 1, + "cx": 1, + "dependencies": 1, + "inquiry": 1, + "deno": 1, + "area": 1, + "crash": 1, + "camera": 1, + "wip": 1, + "configure": 1, + "dom": 1, + "programming": 1, + "font-face": 1, + "rgba": 1, + "parser-specific": 1, + "wikipedia": 1, + "shell": 1, + "contributions": 1, + "tryout": 1, + "thought": 1, + "analysis": 1, + "contenu": 1, + "cli": 1, + "fund": 1, + "investigation": 1, + "basecamp": 1, + "literature": 1, + "socket": 1, + "io": 1, + "client": 1.7999999999999998, + "fiscal": 1, + "user": 1, + "debug": 1, + "information": 1, + "frontend": 1, + "upstream": 1, + "raising": 1, + "hand": 1, + "style": 1, + "clean": 1, + "up": 1, + "motif": 1, + "event": 1, + "help": 1, + "wanted": 1, + "priority": 1, + "medium": 1, + "financial": 1, + "ruby": 1, + "es": 1, + "warrant": 1, + "cancelled": 1, + "plan": 1, + "hackathon": 1, + "beginner": 1, + "typography": 1, + "counsel": 1, + "recording": 1, + "crowdin": 1, + "eslint": 1, + "rules": 1, + "easy": 1, + "repare": 1, + "conference": 1, + "great": 1, + "insight": 1, + "phd": 1, + "orange": 1, + "invalid": 1, + "x": 1, + "changelog": 1, + "e-cypress": 1, + "lipstick": 1, + "-": 1, + "backdoor": 1, + "approved": 1, + "talk": 1, + "subtitle": 1, + "research": 1, + "todo": 1, + "spiral": 1, + "notepad": 1, + "interface": 1, + "critical": 1, + "privacy": 1, + "tests": 1, + "boom": 1, + "web": 1, + "app": 1.7999999999999998, + "television": 1, + "uat": 1, + "backer": 1, + "exploit": 1, + "requires": 1, + "travis-yml": 1, + "node": 1, + "dev": 1, + "experience": 1, + "fix": 1, + "backend": 1, + "cleaning": 1, + "internal": 1.7999999999999998, + "house": 1, + "technical": 1, + "debt": 1, + "weekly-digest": 1, + "shallow": 1, + "renderer": 1, + "commerce": 1, + "ie": 1, + "hsl": 1, + "left": 1, + "out": 1, + "welcome": 1, + "opinions": 1, + "documents": 1, + "legacy": 1, + "grafana": 1, + "react": 1, + "native": 1, + "lang-go": 1, + "plugin": 1, + "logo": 1, + "refactoring": 1, + "safari": 1, + "saltstack": 1, + "available": 1, + "server": 1, + "rendering": 1, + "htmlfile": 1, + "theorem": 1, + "social": 1, + "internationalisation": 1, + "definition": 1, + "enquire": 1, + "packaging": 1, + "lang-r": 1, + "regression": 1, + "container": 1, + "opencollective": 1, + "report": 1, + "performance": 1, + "clickup": 1, + "installer": 1, + "statement": 1, + "gcp": 1, + "opinion": 1, + "accepted": 1, + "html": 1, + "a": 1.7999999999999998, + "y": 1, + "general": 1, + "js": 1, + "unit": 1, + "speak": 1, + "brainstorming": 1, + "backup": 1, + "language": 1, + "bugfix": 1, + "k": 1, + "s": 1, + "scrum": 1, + "paper": 1, + "library": 1, + "stale": 1, + "optimization": 1, + "show": 1, + "apple": 1, + "low": 1, + "functions": 1, + "gnu": 1, + "linux": 1, + "focus": 1, + "groups": 1, + "dependency-update": 1, + "related": 1, + "bootstrap": 1, + "usability": 1, + "*nix": 1, + "externs": 1, + "critique": 1, + "prince": 1, + "demonstration": 1, + "⬆️": 1, + "memo": 1, + "revisitinfuture": 1, + "tips": 1, + "reference": 1, + "high": 1, + "bug-report": 1, + "babel": 1, + "flashsocket": 1, + "unix": 1, + "npm": 1, + "site": 1, + "chore": 1, + "adapter": 1, + "slides": 1, + "query": 1, + "chat": 1, + "major": 1, + "alpha": 1, + "lock": 1, + "security": 1, + "newsletter": 1, + "verification": 1, + "color": 1, + "containerd": 1, + "doughnut": 1, + "sentry": 1, + "dissertation": 1, + "mentoring": 1, + "confer": 1, + "utilities": 1, + "infosec": 1, + "vulnerability": 1, + "has": 1, + "code": 1, + "protection": 1, + "robot": 1, + "android": 1, + "webaim": 1, + "wontfix": 1, + "triage": 1, + "contribution": 1, + "macos": 1, + "assertion": 1, + "blog": 1, + "progress": 1, + "future": 1, + "architecture": 1, + "enhancements": 1, + "pmi": 1, + "promotion": 1, + "validation": 1, + "art": 1, + "film": 1, + "bitbucket": 1, + "cloud": 1, + "labour": 1, + "python": 1, + "suggestion": 1, + "crypto": 1, + "attitudinal": 1, + "electron": 1, + "trial": 1, + "example": 1.7999999999999998, + "resolution": 1, + "redirect": 1, + "assessment": 1, + "monitor": 1, + "css": 1, + "hack": 1, + "translation": 1, + "opportunity": 1, + "vultr": 1, + "kubernetes": 1, + "wiki": 1, + "parser": 1, + "pwa": 1, + "iphone": 1, + "program": 1, + "finding": 1, + "digital": 1, + "ocean": 1, + "safeguard": 1, + "iac": 1, + "javascript": 1, + "integration": 1, + "glo": 1, + "porting": 1, + "on": 1, + "hold": 1, + "evaluation": 1, + "go": 1.7999999999999998, + "must-triage": 1, + "gradle": 1, + "accessibility": 1, + "work": 1, + "other": 1, + "wrangling": 1, + "sast": 1, + "tech-debt": 1, + "entry": 1, + "fault": 1, + "problem": 1, + "brand": 1, + "internal-issue-created": 1, + "pmp": 1, + "bdd": 1, + "checkpoint": 1, + "csharp": 1, + "unreviewed": 1, + "idea": 1, + "feedback": 1, + "requested": 1, + "wcag": 1, + "bugs": 1, + "mentor": 1, + "economics": 1, + "lib": 1, + "puppet": 1, + "speech": 1.7999999999999998, + "balloon": 1.7999999999999998, + "didactic": 0.0625, + "c": 2, + "c++": 2, + "bulb": 1, + "prometheus": 1, + "rocket": 1, + "discuss": 1.7999999999999998, + "doc": 1, + "blogs": 1, + "unit-mocha": 1, + "enterprise": 1, + "scheduler": 1, + "class": 1.875, + "fields": 1.875, + "commercial": 1, + "infra": 1, + "terraform": 1, + "figure": 1, + "layout": 1, + "specification": 1, + "vector": 1, + "greenkeeper": 1, + "tdd": 1, + "raster": 1, + "mishap": 1, + "sketch": 1, + "released": 1, + "font": 1, + "deployment": 1, + "e-nightwatch": 1, + "engine": 1, + "vulns": 1, + "syntax": 1, + "deliverable": 1, + "manual": 1, + "osx": 1, + "axe": 1, + "sendgrid": 1, + "operating": 1, + "system": 1, + "advance": 1, + "workflow": 1, + "safety": 1, + "phonetic": 1, + "concept": 1, + "lerna": 1, + "readme": 1, + "music": 1, + "failing": 1, + "customer": 1, + "extension": 1, + "lint": 1, + "optimizing": 1, + "compiler": 1, + "css-select": 1, + "figma": 1, + "finance": 1, + "closed": 1.7999999999999998, + "due": 1.7999999999999998, + "inactivity": 1.7999999999999998, + "jira": 1, + "survey": 1, + "behavioral": 1, + "multi": 1, + "module": 1, + "mixing": 1, + "backlog": 1, + "update": 1, + "present": 1, + "modules": 1, + "lang-julia": 1, + "vuln": 1, + "demo": 1, + "corporate": 1, + "spam": 1, + "handshakes": 1, + "platform": 1, + "wave": 1, + "ansible": 1, + "lang-convert": 1, + "gdpr": 1, + "classes": 1, + "websocket": 1, + "speach": 1, + "b": 1, + "chef": 1, + "patreon": 1, + "reviewed-changes-requested": 1, + "youtube": 1, + "(legacy)": 1, + "mentorship": 1, + "typescript": 1, + "story": 1, + "academia": 1 + }, + "positive_weights_sum": {}, + "negative_weights_sum": {} + }, + "eventOrganizing": { + "positive_weights": { + "next": 0.8533333333333336, + "meetup!": 16, + "bias": 2.2656692522105027e-9, + "meetup": 22.78125, + "event": 22.78125, + "conference": 10.125, + "social": 10.125, + "component": 0.75, + "developer": 0.75, + "tools": 0.75, + "inspiration": 0.5, + "business": 0.6666666666666667, + "process": 0.6666666666666667, + "sustain": 0.5, + "confirmed": 0.5, + "type": 0.75, + "question": 0.75, + "grey": 0.75, + "cmty": 2, + "need-info": 0.5, + "sustenance": 0.5, + "good": 0.75, + "first": 0.75, + "issue": 0.75, + "kind": 0.6666666666666667, + "discussion": 0.6666666666666667, + "palette": 0.5, + "azure": 0.6666666666666667, + "ad": 0.6666666666666667, + "data": 0.6666666666666667, + "collection": 0.6666666666666667, + "external-bugs": 0.5, + "deal": 0.5, + "hacking": 0.5, + "video": 2, + "test": 2, + "utils": 2, + "hsv": 2, + "thesis": 2, + "pentesting": 2, + "design": 0.6666666666666667, + "website": 0.6666666666666667, + "copy": 0.6666666666666667, + "bug": 2, + "guide": 2, + "feat": 0.75, + "ui": 2, + "mastering": 2, + "steps": 2, + "abandoned": 2, + "badges": 2, + "sponsor": 2, + "assess": 2, + "pr": 0.8333333333333333, + "merged": 0.8333333333333333, + "vlog": 2, + "acceptance": 0.6666666666666667, + "testing": 0.6666666666666667, + "hot": 2, + "tv": 2, + "soundtrack": 2, + "(category)": 0.6666666666666667, + "ci": 0.6666666666666667, + "cd": 0.6666666666666667, + "multi-cloud": 2, + "funding": 2, + "finder": 2, + "difficulty": 2, + "hard": 2, + "documentation": 2, + "book": 2, + "diary": 2, + "standard": 2, + "colour": 2, + "computer": 2, + "desktop": 2, + "flaw": 2, + "reliability": 2, + "cli-service": 0.75, + "build": 0.75, + "blocked": 2, + "maintenance": 2, + "construction": 2, + "ios": 2, + "planned": 0.32000000000000006, + "feature": 0.8333333333333333, + "feature-request": 2, + "rfc": 2, + "image": 2, + "stock": 2, + "reminder": 2, + "status": 2, + "review": 2, + "needed": 2, + "in": 2, + "lang-crystal": 2, + "breaking": 2, + "change": 2, + "phone": 2, + "refactor": 2, + "monologue": 2, + "reviewed-approved": 2, + "new": 2, + "best": 2, + "practice": 2, + "lecture": 2, + "backing": 2, + "browser": 2, + "aws": 2, + "polish": 2, + "nail": 2, + "care": 2, + "article": 2, + "peer-review": 2, + "writer-needed": 2, + "eventstorming": 2, + "freemasonry": 2, + "icons": 2, + "lean": 2, + "cannot": 2, + "reproduce": 2, + "paas": 2, + "net": 2, + "core": 2, + "wiretap": 2, + "unit-jest": 2, + "instruction": 2, + "infrastructure": 2, + "rgb": 2, + "ideas": 2, + "target": 2, + "windows": 2, + "call": 2, + "iconography": 2, + "promote": 2, + "template": 2, + "support": 2, + "first-timers-only": 2, + "java": 2, + "cdn": 2, + "dependency": 2, + "ready": 0.8333333333333333, + "for": 0.32000000000000006, + "deploy": 2, + "troubleshooting": 2, + "spec": 2, + "bigint": 2, + "async": 2, + "generators": 2, + "proposal": 2, + "e": 2, + "approachability": 2, + "investment": 2, + "conflicts": 2, + "optimisation": 2, + "kotlin": 2, + "release": 0.32000000000000006, + "unconfirmed": 2, + "duplicate": 2, + "repeat": 2, + "devops": 2, + "defend": 2, + "blogging": 2, + "friendliness": 2, + "i": 2, + "n": 2, + "cla": 2, + "signed": 2, + "icebox": 2, + "examination": 2, + "mobile": 2, + "device": 2, + "api": 2, + "decorators": 2, + "addon": 2, + "cracking": 2, + "sparkles": 2, + "enhancement": 2, + "hooks": 2, + "improved": 2, + "error": 2, + "handling": 2, + "needs": 0.8, + "repro": 2, + "upkeep": 2, + "reactis": 2, + "to": 0.8333333333333333, + "be": 0.8333333333333333, + "sample": 2, + "white": 2, + "check": 2, + "mark": 2, + "external": 2, + "hacktoberfest": 2, + "lang-dart": 2, + "framework": 2, + "icon": 2, + "grant": 2, + "needs-research": 2, + "cybersec": 2, + "biz": 2, + "internationalization": 2, + "utility-lib": 2, + "qa": 2, + "do": 2, + "not": 2, + "merge": 2, + "hacked": 2, + "how-to": 2, + "beginner-friendly": 2, + "trello": 2, + "os": 2, + "sound": 2, + "docs": 2, + "improvement": 2, + "heavy": 0.8333333333333333, + "plus": 0.8333333333333333, + "sign": 0.8333333333333333, + "request": 0.8333333333333333, + "glitch": 2, + "cx": 2, + "dependencies": 2, + "inquiry": 2, + "deno": 2, + "area": 2, + "crash": 2, + "camera": 2, + "wip": 2, + "configure": 2, + "dom": 2, + "programming": 2, + "font-face": 2, + "rgba": 2, + "parser-specific": 2, + "wikipedia": 2, + "shell": 2, + "contributions": 2, + "tryout": 2, + "thought": 2, + "analysis": 2, + "contenu": 2, + "cli": 2, + "fund": 2, + "investigation": 2, + "basecamp": 2, + "literature": 2, + "socket": 2, + "io": 2, + "client": 2, + "fiscal": 2, + "user": 2, + "debug": 2, + "information": 2, + "frontend": 2, + "upstream": 2, + "raising": 2, + "hand": 2, + "style": 2, + "clean": 2, + "up": 2, + "motif": 2, + "help": 2, + "wanted": 2, + "priority": 2, + "medium": 2, + "financial": 2, + "ruby": 2, + "es": 2, + "warrant": 2, + "cancelled": 2, + "plan": 2, + "hackathon": 2, + "beginner": 2, + "typography": 2, + "counsel": 2, + "recording": 2, + "crowdin": 2, + "eslint": 2, + "rules": 2, + "easy": 2, + "repare": 2, + "great": 2, + "insight": 2, + "phd": 2, + "orange": 2, + "invalid": 2, + "x": 2, + "changelog": 2, + "e-cypress": 2, + "lipstick": 2, + "-": 2, + "backdoor": 2, + "approved": 2, + "talk": 2, + "subtitle": 2, + "research": 2, + "todo": 2, + "spiral": 2, + "notepad": 2, + "interface": 2, + "critical": 2, + "privacy": 2, + "tests": 2, + "boom": 2, + "web": 2, + "app": 0.8, + "television": 2, + "uat": 2, + "backer": 2, + "exploit": 2, + "requires": 2, + "travis-yml": 2, + "node": 0.6666666666666667, + "dev": 2, + "experience": 2, + "fix": 2, + "backend": 2, + "cleaning": 2, + "internal": 2, + "house": 2, + "technical": 2, + "debt": 2, + "weekly-digest": 2, + "shallow": 2, + "renderer": 2, + "commerce": 2, + "ie": 2, + "hsl": 2, + "left": 2, + "out": 2, + "welcome": 2, + "opinions": 2, + "documents": 2, + "legacy": 2, + "grafana": 2, + "react": 2, + "native": 2, + "lang-go": 2, + "tutorial": 2, + "plugin": 2, + "logo": 2, + "refactoring": 2, + "safari": 2, + "saltstack": 2, + "available": 2, + "server": 2, + "rendering": 2, + "htmlfile": 2, + "theorem": 2, + "internationalisation": 2, + "definition": 2, + "enquire": 2, + "packaging": 2, + "lang-r": 2, + "regression": 2, + "container": 2, + "opencollective": 2, + "report": 2, + "performance": 2, + "clickup": 2, + "installer": 2, + "statement": 2, + "gcp": 2, + "opinion": 2, + "accepted": 2, + "html": 2, + "a": 0.8, + "y": 2, + "general": 2, + "js": 2, + "unit": 2, + "speak": 2, + "brainstorming": 2, + "backup": 2, + "language": 2, + "bugfix": 2, + "k": 2, + "s": 2, + "scrum": 2, + "paper": 2, + "library": 2, + "stale": 2, + "optimization": 2, + "show": 2, + "apple": 2, + "low": 2, + "functions": 2, + "gnu": 2, + "linux": 2, + "focus": 2, + "groups": 2, + "dependency-update": 2, + "related": 2, + "bootstrap": 2, + "usability": 2, + "*nix": 2, + "externs": 2, + "critique": 2, + "prince": 2, + "demonstration": 2, + "⬆️": 2, + "memo": 2, + "revisitinfuture": 2, + "tips": 2, + "reference": 2, + "high": 2, + "bug-report": 2, + "babel": 2, + "flashsocket": 2, + "unix": 2, + "npm": 2, + "site": 2, + "chore": 2, + "adapter": 2, + "slides": 2, + "query": 2, + "chat": 2, + "major": 2, + "alpha": 2, + "lock": 2, + "security": 2, + "newsletter": 2, + "verification": 2, + "color": 2, + "containerd": 2, + "doughnut": 2, + "sentry": 2, + "dissertation": 2, + "mentoring": 2, + "confer": 2, + "utilities": 2, + "infosec": 2, + "vulnerability": 2, + "has": 2, + "code": 2, + "teaching": 2, + "protection": 2, + "robot": 2, + "android": 2, + "webaim": 2, + "wontfix": 2, + "triage": 2, + "contribution": 2, + "macos": 2, + "assertion": 2, + "blog": 2, + "progress": 2, + "future": 2, + "architecture": 2, + "enhancements": 2, + "pmi": 2, + "promotion": 2, + "validation": 2, + "art": 2, + "film": 2, + "bitbucket": 2, + "cloud": 2, + "labour": 2, + "python": 2, + "suggestion": 2, + "crypto": 2, + "attitudinal": 2, + "electron": 2, + "trial": 2, + "example": 0.8, + "resolution": 2, + "redirect": 2, + "assessment": 2, + "monitor": 2, + "css": 2, + "hack": 2, + "translation": 2, + "opportunity": 2, + "vultr": 2, + "kubernetes": 2, + "wiki": 2, + "parser": 2, + "pwa": 2, + "iphone": 2, + "program": 2, + "finding": 2, + "digital": 2, + "ocean": 2, + "safeguard": 2, + "iac": 2, + "javascript": 2, + "integration": 2, + "glo": 2, + "porting": 2, + "on": 2, + "hold": 2, + "evaluation": 2, + "go": 2, + "must-triage": 2, + "gradle": 2, + "accessibility": 2, + "work": 2, + "other": 2, + "wrangling": 2, + "sast": 2, + "tech-debt": 2, + "entry": 2, + "fault": 2, + "problem": 2, + "brand": 2, + "internal-issue-created": 2, + "pmp": 2, + "bdd": 2, + "checkpoint": 2, + "csharp": 2, + "unreviewed": 2, + "idea": 2, + "feedback": 2, + "requested": 2, + "wcag": 2, + "bugs": 2, + "mentor": 2, + "economics": 2, + "lib": 2, + "puppet": 2, + "speech": 2, + "balloon": 2, + "corporate": 2, + "c": 2, + "c++": 2, + "bulb": 2, + "prometheus": 2, + "rocket": 2, + "discuss": 2, + "doc": 2, + "blogs": 2, + "unit-mocha": 2, + "enterprise": 2, + "scheduler": 2, + "class": 2, + "fields": 2, + "commercial": 2, + "infra": 2, + "terraform": 2, + "figure": 2, + "layout": 2, + "specification": 2, + "vector": 2, + "greenkeeper": 2, + "tdd": 2, + "raster": 2, + "mishap": 2, + "sketch": 2, + "released": 2, + "font": 2, + "deployment": 2, + "e-nightwatch": 2, + "engine": 2, + "vulns": 2, + "syntax": 2, + "deliverable": 2, + "manual": 2, + "osx": 2, + "axe": 2, + "sendgrid": 2, + "operating": 2, + "system": 2, + "advance": 2, + "workflow": 2, + "safety": 2, + "phonetic": 2, + "concept": 2, + "lerna": 2, + "readme": 2, + "music": 2, + "failing": 2, + "customer": 2, + "extension": 2, + "lint": 2, + "optimizing": 2, + "compiler": 2, + "css-select": 2, + "figma": 2, + "finance": 2, + "closed": 2, + "due": 2, + "inactivity": 2, + "jira": 2, + "survey": 2, + "behavioral": 2, + "multi": 2, + "module": 2, + "mixing": 2, + "backlog": 2, + "update": 2, + "present": 2, + "modules": 2, + "lang-julia": 2, + "vuln": 2, + "demo": 2, + "spam": 2, + "handshakes": 2, + "platform": 2, + "wave": 2, + "ansible": 2, + "lang-convert": 2, + "gdpr": 2, + "classes": 2, + "websocket": 2, + "speach": 2, + "b": 2, + "chef": 2, + "patreon": 2, + "reviewed-changes-requested": 2, + "youtube": 2, + "(legacy)": 2, + "mentorship": 2, + "typescript": 2, + "didactic": 2, + "story": 2, + "academia": 2 + }, + "negative_weights": { + "next": 0.24000000000000002, + "meetup!": 0.03703703703703705, + "bias": 5.899940712013603, + "meetup": 0.015625, + "event": 0.015625, + "conference": 0.0625, + "social": 0.0625, + "component": 1.875, + "developer": 1.875, + "tools": 1.875, + "inspiration": 2.25, + "business": 2, + "process": 2, + "sustain": 2.25, + "confirmed": 2.25, + "type": 1.875, + "question": 1.875, + "grey": 1.875, + "cmty": 1, + "need-info": 2.25, + "sustenance": 2.25, + "good": 1.875, + "first": 1.875, + "issue": 1.875, + "kind": 2, + "discussion": 2, + "palette": 2.25, + "azure": 2, + "ad": 2, + "data": 2, + "collection": 2, + "external-bugs": 2.25, + "deal": 2.25, + "hacking": 2.25, + "video": 1, + "test": 1, + "utils": 1, + "hsv": 1, + "thesis": 1, + "pentesting": 1, + "design": 2, + "website": 2, + "copy": 2, + "bug": 1, + "guide": 1, + "feat": 1.875, + "ui": 1, + "mastering": 1, + "steps": 1, + "abandoned": 1, + "badges": 1, + "sponsor": 1, + "assess": 1, + "pr": 1.75, + "merged": 1.75, + "vlog": 1, + "acceptance": 2, + "testing": 2, + "hot": 1, + "tv": 1, + "soundtrack": 1, + "(category)": 2, + "ci": 2, + "cd": 2, + "multi-cloud": 1, + "funding": 1, + "finder": 1, + "difficulty": 1, + "hard": 1, + "documentation": 1, + "book": 1, + "diary": 1, + "standard": 1, + "colour": 1, + "computer": 1, + "desktop": 1, + "flaw": 1, + "reliability": 1, + "cli-service": 1.875, + "build": 1.875, + "blocked": 1, + "maintenance": 1, + "construction": 1, + "ios": 1, + "planned": 3.2399999999999993, + "feature": 1.75, + "feature-request": 1, + "rfc": 1, + "image": 1, + "stock": 1, + "reminder": 1, + "status": 1, + "review": 1, + "needed": 1, + "in": 1, + "lang-crystal": 1, + "breaking": 1, + "change": 1, + "phone": 1, + "refactor": 1, + "monologue": 1, + "reviewed-approved": 1, + "new": 1, + "best": 1, + "practice": 1, + "lecture": 1, + "backing": 1, + "browser": 1, + "aws": 1, + "polish": 1, + "nail": 1, + "care": 1, + "article": 1, + "peer-review": 1, + "writer-needed": 1, + "eventstorming": 1, + "freemasonry": 1, + "icons": 1, + "lean": 1, + "cannot": 1, + "reproduce": 1, + "paas": 1, + "net": 1, + "core": 1, + "wiretap": 1, + "unit-jest": 1, + "instruction": 1, + "infrastructure": 1, + "rgb": 1, + "ideas": 1, + "target": 1, + "windows": 1, + "call": 1, + "iconography": 1, + "promote": 1, + "template": 1, + "support": 1, + "first-timers-only": 1, + "java": 1, + "cdn": 1, + "dependency": 1, + "ready": 1.75, + "for": 3.2399999999999993, + "deploy": 1, + "troubleshooting": 1, + "spec": 1, + "bigint": 1, + "async": 1, + "generators": 1, + "proposal": 1, + "e": 1, + "approachability": 1, + "investment": 1, + "conflicts": 1, + "optimisation": 1, + "kotlin": 1, + "release": 3.2399999999999993, + "unconfirmed": 1, + "duplicate": 1, + "repeat": 1, + "devops": 1, + "defend": 1, + "blogging": 1, + "friendliness": 1, + "i": 1, + "n": 1, + "cla": 1, + "signed": 1, + "icebox": 1, + "examination": 1, + "mobile": 1, + "device": 1, + "api": 1, + "decorators": 1, + "addon": 1, + "cracking": 1, + "sparkles": 1, + "enhancement": 1, + "hooks": 1, + "improved": 1, + "error": 1, + "handling": 1, + "needs": 1.7999999999999998, + "repro": 1, + "upkeep": 1, + "reactis": 1, + "to": 1.75, + "be": 1.75, + "sample": 1, + "white": 1, + "check": 1, + "mark": 1, + "external": 1, + "hacktoberfest": 1, + "lang-dart": 1, + "framework": 1, + "icon": 1, + "grant": 1, + "needs-research": 1, + "cybersec": 1, + "biz": 1, + "internationalization": 1, + "utility-lib": 1, + "qa": 1, + "do": 1, + "not": 1, + "merge": 1, + "hacked": 1, + "how-to": 1, + "beginner-friendly": 1, + "trello": 1, + "os": 1, + "sound": 1, + "docs": 1, + "improvement": 1, + "heavy": 1.75, + "plus": 1.75, + "sign": 1.75, + "request": 1.75, + "glitch": 1, + "cx": 1, + "dependencies": 1, + "inquiry": 1, + "deno": 1, + "area": 1, + "crash": 1, + "camera": 1, + "wip": 1, + "configure": 1, + "dom": 1, + "programming": 1, + "font-face": 1, + "rgba": 1, + "parser-specific": 1, + "wikipedia": 1, + "shell": 1, + "contributions": 1, + "tryout": 1, + "thought": 1, + "analysis": 1, + "contenu": 1, + "cli": 1, + "fund": 1, + "investigation": 1, + "basecamp": 1, + "literature": 1, + "socket": 1, + "io": 1, + "client": 1, + "fiscal": 1, + "user": 1, + "debug": 1, + "information": 1, + "frontend": 1, + "upstream": 1, + "raising": 1, + "hand": 1, + "style": 1, + "clean": 1, + "up": 1, + "motif": 1, + "help": 1, + "wanted": 1, + "priority": 1, + "medium": 1, + "financial": 1, + "ruby": 1, + "es": 1, + "warrant": 1, + "cancelled": 1, + "plan": 1, + "hackathon": 1, + "beginner": 1, + "typography": 1, + "counsel": 1, + "recording": 1, + "crowdin": 1, + "eslint": 1, + "rules": 1, + "easy": 1, + "repare": 1, + "great": 1, + "insight": 1, + "phd": 1, + "orange": 1, + "invalid": 1, + "x": 1, + "changelog": 1, + "e-cypress": 1, + "lipstick": 1, + "-": 1, + "backdoor": 1, + "approved": 1, + "talk": 1, + "subtitle": 1, + "research": 1, + "todo": 1, + "spiral": 1, + "notepad": 1, + "interface": 1, + "critical": 1, + "privacy": 1, + "tests": 1, + "boom": 1, + "web": 1, + "app": 1.7999999999999998, + "television": 1, + "uat": 1, + "backer": 1, + "exploit": 1, + "requires": 1, + "travis-yml": 1, + "node": 2, + "dev": 1, + "experience": 1, + "fix": 1, + "backend": 1, + "cleaning": 1, + "internal": 1, + "house": 1, + "technical": 1, + "debt": 1, + "weekly-digest": 1, + "shallow": 1, + "renderer": 1, + "commerce": 1, + "ie": 1, + "hsl": 1, + "left": 1, + "out": 1, + "welcome": 1, + "opinions": 1, + "documents": 1, + "legacy": 1, + "grafana": 1, + "react": 1, + "native": 1, + "lang-go": 1, + "tutorial": 1, + "plugin": 1, + "logo": 1, + "refactoring": 1, + "safari": 1, + "saltstack": 1, + "available": 1, + "server": 1, + "rendering": 1, + "htmlfile": 1, + "theorem": 1, + "internationalisation": 1, + "definition": 1, + "enquire": 1, + "packaging": 1, + "lang-r": 1, + "regression": 1, + "container": 1, + "opencollective": 1, + "report": 1, + "performance": 1, + "clickup": 1, + "installer": 1, + "statement": 1, + "gcp": 1, + "opinion": 1, + "accepted": 1, + "html": 1, + "a": 1.7999999999999998, + "y": 1, + "general": 1, + "js": 1, + "unit": 1, + "speak": 1, + "brainstorming": 1, + "backup": 1, + "language": 1, + "bugfix": 1, + "k": 1, + "s": 1, + "scrum": 1, + "paper": 1, + "library": 1, + "stale": 1, + "optimization": 1, + "show": 1, + "apple": 1, + "low": 1, + "functions": 1, + "gnu": 1, + "linux": 1, + "focus": 1, + "groups": 1, + "dependency-update": 1, + "related": 1, + "bootstrap": 1, + "usability": 1, + "*nix": 1, + "externs": 1, + "critique": 1, + "prince": 1, + "demonstration": 1, + "⬆️": 1, + "memo": 1, + "revisitinfuture": 1, + "tips": 1, + "reference": 1, + "high": 1, + "bug-report": 1, + "babel": 1, + "flashsocket": 1, + "unix": 1, + "npm": 1, + "site": 1, + "chore": 1, + "adapter": 1, + "slides": 1, + "query": 1, + "chat": 1, + "major": 1, + "alpha": 1, + "lock": 1, + "security": 1, + "newsletter": 1, + "verification": 1, + "color": 1, + "containerd": 1, + "doughnut": 1, + "sentry": 1, + "dissertation": 1, + "mentoring": 1, + "confer": 1, + "utilities": 1, + "infosec": 1, + "vulnerability": 1, + "has": 1, + "code": 1, + "teaching": 1, + "protection": 1, + "robot": 1, + "android": 1, + "webaim": 1, + "wontfix": 1, + "triage": 1, + "contribution": 1, + "macos": 1, + "assertion": 1, + "blog": 1, + "progress": 1, + "future": 1, + "architecture": 1, + "enhancements": 1, + "pmi": 1, + "promotion": 1, + "validation": 1, + "art": 1, + "film": 1, + "bitbucket": 1, + "cloud": 1, + "labour": 1, + "python": 1, + "suggestion": 1, + "crypto": 1, + "attitudinal": 1, + "electron": 1, + "trial": 1, + "example": 1.7999999999999998, + "resolution": 1, + "redirect": 1, + "assessment": 1, + "monitor": 1, + "css": 1, + "hack": 1, + "translation": 1, + "opportunity": 1, + "vultr": 1, + "kubernetes": 1, + "wiki": 1, + "parser": 1, + "pwa": 1, + "iphone": 1, + "program": 1, + "finding": 1, + "digital": 1, + "ocean": 1, + "safeguard": 1, + "iac": 1, + "javascript": 1, + "integration": 1, + "glo": 1, + "porting": 1, + "on": 1, + "hold": 1, + "evaluation": 1, + "go": 1, + "must-triage": 1, + "gradle": 1, + "accessibility": 1, + "work": 1, + "other": 1, + "wrangling": 1, + "sast": 1, + "tech-debt": 1, + "entry": 1, + "fault": 1, + "problem": 1, + "brand": 1, + "internal-issue-created": 1, + "pmp": 1, + "bdd": 1, + "checkpoint": 1, + "csharp": 1, + "unreviewed": 1, + "idea": 1, + "feedback": 1, + "requested": 1, + "wcag": 1, + "bugs": 1, + "mentor": 1, + "economics": 1, + "lib": 1, + "puppet": 1, + "speech": 1, + "balloon": 1, + "corporate": 1, + "c": 1, + "c++": 1, + "bulb": 1, + "prometheus": 1, + "rocket": 1, + "discuss": 1, + "doc": 1, + "blogs": 1, + "unit-mocha": 1, + "enterprise": 1, + "scheduler": 1, + "class": 1, + "fields": 1, + "commercial": 1, + "infra": 1, + "terraform": 1, + "figure": 1, + "layout": 1, + "specification": 1, + "vector": 1, + "greenkeeper": 1, + "tdd": 1, + "raster": 1, + "mishap": 1, + "sketch": 1, + "released": 1, + "font": 1, + "deployment": 1, + "e-nightwatch": 1, + "engine": 1, + "vulns": 1, + "syntax": 1, + "deliverable": 1, + "manual": 1, + "osx": 1, + "axe": 1, + "sendgrid": 1, + "operating": 1, + "system": 1, + "advance": 1, + "workflow": 1, + "safety": 1, + "phonetic": 1, + "concept": 1, + "lerna": 1, + "readme": 1, + "music": 1, + "failing": 1, + "customer": 1, + "extension": 1, + "lint": 1, + "optimizing": 1, + "compiler": 1, + "css-select": 1, + "figma": 1, + "finance": 1, + "closed": 1, + "due": 1, + "inactivity": 1, + "jira": 1, + "survey": 1, + "behavioral": 1, + "multi": 1, + "module": 1, + "mixing": 1, + "backlog": 1, + "update": 1, + "present": 1, + "modules": 1, + "lang-julia": 1, + "vuln": 1, + "demo": 1, + "spam": 1, + "handshakes": 1, + "platform": 1, + "wave": 1, + "ansible": 1, + "lang-convert": 1, + "gdpr": 1, + "classes": 1, + "websocket": 1, + "speach": 1, + "b": 1, + "chef": 1, + "patreon": 1, + "reviewed-changes-requested": 1, + "youtube": 1, + "(legacy)": 1, + "mentorship": 1, + "typescript": 1, + "didactic": 1, + "story": 1, + "academia": 1 + }, + "positive_weights_sum": {}, + "negative_weights_sum": {} + }, + "audio": { + "positive_weights": { + "mastering": 10.125, + "bias": 2.480306807916874e-10, + "soundtrack": 10.125, + "sound": 10.125, + "recording": 10.125, + "component": 0.75, + "developer": 0.75, + "tools": 0.75, + "inspiration": 0.5, + "business": 0.6666666666666667, + "process": 0.6666666666666667, + "sustain": 0.5, + "confirmed": 0.5, + "type": 0.28125, + "question": 0.75, + "grey": 0.75, + "cmty": 2, + "need-info": 0.5, + "sustenance": 0.5, + "good": 0.75, + "first": 0.75, + "issue": 0.75, + "kind": 0.6666666666666667, + "discussion": 0.6666666666666667, + "palette": 0.5, + "azure": 0.6666666666666667, + "ad": 0.6666666666666667, + "data": 0.6666666666666667, + "collection": 0.6666666666666667, + "external-bugs": 0.5, + "deal": 2, + "hacking": 2, + "video": 2, + "test": 0.8, + "utils": 2, + "hsv": 2, + "thesis": 2, + "pentesting": 2, + "design": 2, + "website": 0.6666666666666667, + "copy": 0.6666666666666667, + "bug": 2, + "guide": 2, + "next": 2, + "meetup!": 2, + "feat": 0.75, + "ui": 2, + "steps": 2, + "abandoned": 2, + "badges": 2, + "sponsor": 2, + "assess": 2, + "pr": 0.32000000000000006, + "merged": 2, + "vlog": 2, + "acceptance": 2, + "testing": 2, + "hot": 2, + "tv": 2, + "(category)": 2, + "ci": 2, + "cd": 2, + "multi-cloud": 2, + "funding": 2, + "finder": 2, + "difficulty": 2, + "hard": 2, + "documentation": 2, + "book": 2, + "diary": 2, + "standard": 2, + "colour": 2, + "computer": 2, + "desktop": 2, + "flaw": 2, + "reliability": 2, + "cli-service": 0.75, + "build": 0.75, + "blocked": 2, + "maintenance": 2, + "construction": 2, + "ios": 2, + "planned": 2, + "feature": 0.8, + "feature-request": 2, + "rfc": 2, + "image": 2, + "stock": 2, + "reminder": 2, + "status": 0.8, + "review": 2, + "needed": 2, + "in": 2, + "lang-crystal": 2, + "breaking": 2, + "change": 2, + "phone": 2, + "refactor": 2, + "monologue": 2, + "reviewed-approved": 2, + "new": 0.8, + "best": 2, + "practice": 2, + "lecture": 2, + "backing": 2, + "browser": 2, + "aws": 2, + "polish": 0.8, + "nail": 0.8, + "care": 0.8, + "article": 2, + "peer-review": 2, + "writer-needed": 2, + "eventstorming": 2, + "freemasonry": 2, + "icons": 2, + "lean": 2, + "cannot": 2, + "reproduce": 2, + "paas": 2, + "net": 2, + "core": 2, + "wiretap": 2, + "unit-jest": 2, + "instruction": 2, + "infrastructure": 2, + "rgb": 2, + "ideas": 2, + "target": 2, + "windows": 2, + "call": 2, + "iconography": 2, + "promote": 2, + "template": 2, + "support": 2, + "first-timers-only": 2, + "java": 2, + "cdn": 2, + "dependency": 2, + "ready": 0.8, + "for": 0.8, + "deploy": 0.8, + "troubleshooting": 2, + "spec": 0.75, + "bigint": 2, + "async": 2, + "generators": 2, + "proposal": 2, + "e": 2, + "approachability": 2, + "investment": 2, + "conflicts": 2, + "optimisation": 2, + "kotlin": 2, + "release": 2, + "unconfirmed": 2, + "duplicate": 2, + "repeat": 2, + "devops": 2, + "defend": 2, + "blogging": 2, + "friendliness": 2, + "i": 2, + "n": 2, + "cla": 2, + "signed": 2, + "icebox": 2, + "meetup": 2, + "examination": 2, + "mobile": 2, + "device": 2, + "api": 2, + "decorators": 2, + "addon": 2, + "cracking": 2, + "sparkles": 2, + "enhancement": 0.75, + "hooks": 2, + "improved": 2, + "error": 2, + "handling": 2, + "needs": 0.8, + "repro": 2, + "upkeep": 2, + "reactis": 2, + "to": 2, + "be": 2, + "sample": 2, + "white": 2, + "check": 2, + "mark": 2, + "external": 2, + "hacktoberfest": 2, + "lang-dart": 2, + "framework": 2, + "icon": 2, + "grant": 2, + "needs-research": 2, + "cybersec": 2, + "biz": 2, + "internationalization": 2, + "utility-lib": 2, + "qa": 2, + "do": 2, + "not": 2, + "merge": 2, + "hacked": 2, + "how-to": 2, + "beginner-friendly": 2, + "trello": 2, + "os": 2, + "docs": 2, + "improvement": 2, + "heavy": 2, + "plus": 2, + "sign": 2, + "request": 2, + "glitch": 2, + "cx": 2, + "dependencies": 2, + "inquiry": 2, + "deno": 2, + "area": 2, + "crash": 2, + "camera": 2, + "wip": 2, + "configure": 2, + "dom": 2, + "programming": 2, + "font-face": 2, + "rgba": 2, + "parser-specific": 2, + "wikipedia": 2, + "shell": 2, + "contributions": 2, + "tryout": 2, + "thought": 2, + "analysis": 2, + "contenu": 2, + "cli": 2, + "fund": 2, + "investigation": 2, + "basecamp": 2, + "literature": 2, + "socket": 2, + "io": 2, + "client": 2, + "fiscal": 2, + "user": 2, + "debug": 2, + "information": 2, + "frontend": 2, + "upstream": 2, + "raising": 2, + "hand": 2, + "style": 2, + "clean": 2, + "up": 2, + "motif": 2, + "event": 2, + "help": 2, + "wanted": 2, + "priority": 2, + "medium": 2, + "financial": 2, + "ruby": 2, + "es": 2, + "warrant": 2, + "cancelled": 2, + "plan": 2, + "hackathon": 2, + "beginner": 2, + "typography": 2, + "counsel": 2, + "crowdin": 2, + "eslint": 2, + "rules": 2, + "easy": 2, + "repare": 2, + "conference": 2, + "great": 2, + "insight": 2, + "phd": 2, + "orange": 2, + "invalid": 2, + "x": 2, + "changelog": 2, + "e-cypress": 2, + "lipstick": 2, + "-": 2, + "backdoor": 2, + "approved": 2, + "talk": 2, + "subtitle": 2, + "research": 2, + "todo": 2, + "spiral": 2, + "notepad": 2, + "interface": 2, + "critical": 2, + "privacy": 2, + "tests": 2, + "boom": 2, + "web": 2, + "app": 2, + "television": 2, + "uat": 2, + "backer": 2, + "exploit": 2, + "requires": 2, + "travis-yml": 2, + "node": 2, + "dev": 2, + "experience": 2, + "fix": 2, + "backend": 2, + "cleaning": 2, + "internal": 2, + "house": 2, + "technical": 2, + "debt": 2, + "weekly-digest": 2, + "shallow": 2, + "renderer": 2, + "commerce": 2, + "ie": 0.5, + "hsl": 2, + "left": 2, + "out": 2, + "welcome": 2, + "opinions": 2, + "documents": 2, + "legacy": 2, + "grafana": 2, + "react": 2, + "native": 2, + "lang-go": 2, + "tutorial": 2, + "plugin": 2, + "logo": 2, + "refactoring": 2, + "safari": 2, + "saltstack": 2, + "available": 2, + "server": 2, + "rendering": 2, + "htmlfile": 2, + "theorem": 2, + "social": 2, + "internationalisation": 2, + "definition": 2, + "enquire": 2, + "packaging": 2, + "lang-r": 2, + "regression": 2, + "container": 2, + "opencollective": 2, + "report": 2, + "performance": 2, + "clickup": 2, + "installer": 2, + "statement": 2, + "gcp": 2, + "opinion": 2, + "accepted": 2, + "html": 2, + "a": 0.8, + "y": 2, + "general": 2, + "js": 2, + "unit": 2, + "speak": 2, + "brainstorming": 2, + "backup": 2, + "language": 2, + "bugfix": 2, + "k": 2, + "s": 2, + "scrum": 2, + "paper": 2, + "library": 2, + "stale": 2, + "optimization": 2, + "show": 2, + "apple": 2, + "low": 2, + "functions": 2, + "gnu": 2, + "linux": 2, + "focus": 2, + "groups": 2, + "dependency-update": 2, + "related": 2, + "bootstrap": 2, + "usability": 2, + "*nix": 2, + "externs": 2, + "critique": 2, + "prince": 2, + "demonstration": 2, + "⬆️": 2, + "memo": 2, + "revisitinfuture": 2, + "tips": 2, + "reference": 2, + "high": 2, + "bug-report": 2, + "babel": 2, + "flashsocket": 2, + "unix": 2, + "npm": 2, + "site": 2, + "chore": 2, + "adapter": 2, + "slides": 2, + "query": 2, + "chat": 2, + "major": 2, + "alpha": 2, + "lock": 2, + "security": 2, + "newsletter": 2, + "verification": 2, + "color": 2, + "containerd": 2, + "doughnut": 2, + "sentry": 2, + "dissertation": 2, + "mentoring": 2, + "confer": 2, + "utilities": 2, + "infosec": 2, + "vulnerability": 2, + "has": 2, + "code": 2, + "teaching": 2, + "protection": 2, + "robot": 2, + "android": 2, + "webaim": 2, + "wontfix": 2, + "triage": 0.5, + "contribution": 2, + "macos": 2, + "assertion": 2, + "blog": 2, + "progress": 2, + "future": 2, + "architecture": 2, + "enhancements": 2, + "pmi": 2, + "promotion": 2, + "validation": 2, + "art": 2, + "film": 2, + "bitbucket": 2, + "cloud": 2, + "labour": 2, + "python": 2, + "suggestion": 2, + "crypto": 2, + "attitudinal": 2, + "electron": 2, + "trial": 2, + "example": 2, + "resolution": 2, + "redirect": 2, + "assessment": 2, + "monitor": 2, + "css": 2, + "hack": 2, + "translation": 2, + "opportunity": 2, + "vultr": 2, + "kubernetes": 2, + "wiki": 2, + "parser": 2, + "pwa": 2, + "iphone": 2, + "program": 2, + "finding": 2, + "digital": 2, + "ocean": 2, + "safeguard": 2, + "iac": 2, + "javascript": 2, + "integration": 2, + "glo": 2, + "porting": 2, + "on": 2, + "hold": 2, + "evaluation": 2, + "go": 2, + "must-triage": 2, + "gradle": 2, + "accessibility": 2, + "work": 2, + "other": 2, + "wrangling": 2, + "sast": 2, + "tech-debt": 2, + "entry": 2, + "fault": 2, + "problem": 2, + "brand": 2, + "internal-issue-created": 2, + "pmp": 2, + "bdd": 2, + "checkpoint": 2, + "csharp": 2, + "unreviewed": 2, + "idea": 2, + "feedback": 2, + "requested": 2, + "wcag": 2, + "bugs": 2, + "mentor": 2, + "economics": 2, + "lib": 2, + "puppet": 2, + "speech": 2, + "balloon": 2, + "phonetic": 10.125, + "music": 10.125, + "mixing": 10.125, + "c": 0.6666666666666667, + "c++": 0.6666666666666667, + "bulb": 0.75, + "prometheus": 0.5, + "rocket": 0.8, + "discuss": 2, + "doc": 0.5, + "blogs": 0.5, + "unit-mocha": 2, + "enterprise": 0.5, + "scheduler": 2, + "class": 0.75, + "fields": 0.75, + "commercial": 2, + "infra": 2, + "terraform": 2, + "figure": 2, + "layout": 2, + "specification": 2, + "vector": 2, + "greenkeeper": 2, + "tdd": 2, + "raster": 2, + "mishap": 2, + "sketch": 2, + "released": 2, + "font": 2, + "deployment": 2, + "e-nightwatch": 2, + "engine": 2, + "vulns": 2, + "syntax": 2, + "deliverable": 2, + "manual": 2, + "osx": 2, + "axe": 2, + "sendgrid": 2, + "operating": 2, + "system": 2, + "advance": 2, + "workflow": 2, + "safety": 2, + "concept": 2, + "lerna": 2, + "readme": 2, + "failing": 0.8, + "customer": 2, + "extension": 2, + "lint": 2, + "optimizing": 2, + "compiler": 2, + "css-select": 2, + "figma": 2, + "finance": 2, + "closed": 2, + "due": 2, + "inactivity": 2, + "jira": 2, + "survey": 2, + "behavioral": 2, + "multi": 2, + "module": 2, + "backlog": 2, + "update": 2, + "present": 2, + "modules": 2, + "lang-julia": 2, + "vuln": 2, + "demo": 2, + "corporate": 2, + "spam": 2, + "handshakes": 2, + "platform": 2, + "wave": 2, + "ansible": 2, + "lang-convert": 2, + "gdpr": 2, + "classes": 2, + "websocket": 2, + "speach": 2, + "b": 2, + "chef": 2, + "patreon": 2, + "reviewed-changes-requested": 2, + "youtube": 2, + "(legacy)": 2, + "mentorship": 2, + "typescript": 2, + "didactic": 2, + "story": 2, + "academia": 2 + }, + "negative_weights": { + "mastering": 0.0625, + "bias": 4.119177282206717, + "soundtrack": 0.0625, + "sound": 0.0625, + "recording": 0.0625, + "component": 1.875, + "developer": 1.875, + "tools": 1.875, + "inspiration": 2.25, + "business": 2, + "process": 2, + "sustain": 2.25, + "confirmed": 2.25, + "type": 3.515625, + "question": 1.875, + "grey": 1.875, + "cmty": 1, + "need-info": 2.25, + "sustenance": 2.25, + "good": 1.875, + "first": 1.875, + "issue": 1.875, + "kind": 2, + "discussion": 2, + "palette": 2.25, + "azure": 2, + "ad": 2, + "data": 2, + "collection": 2, + "external-bugs": 2.25, + "deal": 1, + "hacking": 1, + "video": 1, + "test": 1.7999999999999998, + "utils": 1, + "hsv": 1, + "thesis": 1, + "pentesting": 1, + "design": 1, + "website": 2, + "copy": 2, + "bug": 1, + "guide": 1, + "next": 1, + "meetup!": 1, + "feat": 1.875, + "ui": 1, + "steps": 1, + "abandoned": 1, + "badges": 1, + "sponsor": 1, + "assess": 1, + "pr": 3.2399999999999993, + "merged": 1, + "vlog": 1, + "acceptance": 1, + "testing": 1, + "hot": 1, + "tv": 1, + "(category)": 1, + "ci": 1, + "cd": 1, + "multi-cloud": 1, + "funding": 1, + "finder": 1, + "difficulty": 1, + "hard": 1, + "documentation": 1, + "book": 1, + "diary": 1, + "standard": 1, + "colour": 1, + "computer": 1, + "desktop": 1, + "flaw": 1, + "reliability": 1, + "cli-service": 1.875, + "build": 1.875, + "blocked": 1, + "maintenance": 1, + "construction": 1, + "ios": 1, + "planned": 1, + "feature": 1.7999999999999998, + "feature-request": 1, + "rfc": 1, + "image": 1, + "stock": 1, + "reminder": 1, + "status": 1.7999999999999998, + "review": 1, + "needed": 1, + "in": 1, + "lang-crystal": 1, + "breaking": 1, + "change": 1, + "phone": 1, + "refactor": 1, + "monologue": 1, + "reviewed-approved": 1, + "new": 1.7999999999999998, + "best": 1, + "practice": 1, + "lecture": 1, + "backing": 1, + "browser": 1, + "aws": 1, + "polish": 1.7999999999999998, + "nail": 1.7999999999999998, + "care": 1.7999999999999998, + "article": 1, + "peer-review": 1, + "writer-needed": 1, + "eventstorming": 1, + "freemasonry": 1, + "icons": 1, + "lean": 1, + "cannot": 1, + "reproduce": 1, + "paas": 1, + "net": 1, + "core": 1, + "wiretap": 1, + "unit-jest": 1, + "instruction": 1, + "infrastructure": 1, + "rgb": 1, + "ideas": 1, + "target": 1, + "windows": 1, + "call": 1, + "iconography": 1, + "promote": 1, + "template": 1, + "support": 1, + "first-timers-only": 1, + "java": 1, + "cdn": 1, + "dependency": 1, + "ready": 1.7999999999999998, + "for": 1.7999999999999998, + "deploy": 1.7999999999999998, + "troubleshooting": 1, + "spec": 1.875, + "bigint": 1, + "async": 1, + "generators": 1, + "proposal": 1, + "e": 1, + "approachability": 1, + "investment": 1, + "conflicts": 1, + "optimisation": 1, + "kotlin": 1, + "release": 1, + "unconfirmed": 1, + "duplicate": 1, + "repeat": 1, + "devops": 1, + "defend": 1, + "blogging": 1, + "friendliness": 1, + "i": 1, + "n": 1, + "cla": 1, + "signed": 1, + "icebox": 1, + "meetup": 1, + "examination": 1, + "mobile": 1, + "device": 1, + "api": 1, + "decorators": 1, + "addon": 1, + "cracking": 1, + "sparkles": 1, + "enhancement": 1.875, + "hooks": 1, + "improved": 1, + "error": 1, + "handling": 1, + "needs": 1.7999999999999998, + "repro": 1, + "upkeep": 1, + "reactis": 1, + "to": 1, + "be": 1, + "sample": 1, + "white": 1, + "check": 1, + "mark": 1, + "external": 1, + "hacktoberfest": 1, + "lang-dart": 1, + "framework": 1, + "icon": 1, + "grant": 1, + "needs-research": 1, + "cybersec": 1, + "biz": 1, + "internationalization": 1, + "utility-lib": 1, + "qa": 1, + "do": 1, + "not": 1, + "merge": 1, + "hacked": 1, + "how-to": 1, + "beginner-friendly": 1, + "trello": 1, + "os": 1, + "docs": 1, + "improvement": 1, + "heavy": 1, + "plus": 1, + "sign": 1, + "request": 1, + "glitch": 1, + "cx": 1, + "dependencies": 1, + "inquiry": 1, + "deno": 1, + "area": 1, + "crash": 1, + "camera": 1, + "wip": 1, + "configure": 1, + "dom": 1, + "programming": 1, + "font-face": 1, + "rgba": 1, + "parser-specific": 1, + "wikipedia": 1, + "shell": 1, + "contributions": 1, + "tryout": 1, + "thought": 1, + "analysis": 1, + "contenu": 1, + "cli": 1, + "fund": 1, + "investigation": 1, + "basecamp": 1, + "literature": 1, + "socket": 1, + "io": 1, + "client": 1, + "fiscal": 1, + "user": 1, + "debug": 1, + "information": 1, + "frontend": 1, + "upstream": 1, + "raising": 1, + "hand": 1, + "style": 1, + "clean": 1, + "up": 1, + "motif": 1, + "event": 1, + "help": 1, + "wanted": 1, + "priority": 1, + "medium": 1, + "financial": 1, + "ruby": 1, + "es": 1, + "warrant": 1, + "cancelled": 1, + "plan": 1, + "hackathon": 1, + "beginner": 1, + "typography": 1, + "counsel": 1, + "crowdin": 1, + "eslint": 1, + "rules": 1, + "easy": 1, + "repare": 1, + "conference": 1, + "great": 1, + "insight": 1, + "phd": 1, + "orange": 1, + "invalid": 1, + "x": 1, + "changelog": 1, + "e-cypress": 1, + "lipstick": 1, + "-": 1, + "backdoor": 1, + "approved": 1, + "talk": 1, + "subtitle": 1, + "research": 1, + "todo": 1, + "spiral": 1, + "notepad": 1, + "interface": 1, + "critical": 1, + "privacy": 1, + "tests": 1, + "boom": 1, + "web": 1, + "app": 1, + "television": 1, + "uat": 1, + "backer": 1, + "exploit": 1, + "requires": 1, + "travis-yml": 1, + "node": 1, + "dev": 1, + "experience": 1, + "fix": 1, + "backend": 1, + "cleaning": 1, + "internal": 1, + "house": 1, + "technical": 1, + "debt": 1, + "weekly-digest": 1, + "shallow": 1, + "renderer": 1, + "commerce": 1, + "ie": 2.25, + "hsl": 1, + "left": 1, + "out": 1, + "welcome": 1, + "opinions": 1, + "documents": 1, + "legacy": 1, + "grafana": 1, + "react": 1, + "native": 1, + "lang-go": 1, + "tutorial": 1, + "plugin": 1, + "logo": 1, + "refactoring": 1, + "safari": 1, + "saltstack": 1, + "available": 1, + "server": 1, + "rendering": 1, + "htmlfile": 1, + "theorem": 1, + "social": 1, + "internationalisation": 1, + "definition": 1, + "enquire": 1, + "packaging": 1, + "lang-r": 1, + "regression": 1, + "container": 1, + "opencollective": 1, + "report": 1, + "performance": 1, + "clickup": 1, + "installer": 1, + "statement": 1, + "gcp": 1, + "opinion": 1, + "accepted": 1, + "html": 1, + "a": 1.7999999999999998, + "y": 1, + "general": 1, + "js": 1, + "unit": 1, + "speak": 1, + "brainstorming": 1, + "backup": 1, + "language": 1, + "bugfix": 1, + "k": 1, + "s": 1, + "scrum": 1, + "paper": 1, + "library": 1, + "stale": 1, + "optimization": 1, + "show": 1, + "apple": 1, + "low": 1, + "functions": 1, + "gnu": 1, + "linux": 1, + "focus": 1, + "groups": 1, + "dependency-update": 1, + "related": 1, + "bootstrap": 1, + "usability": 1, + "*nix": 1, + "externs": 1, + "critique": 1, + "prince": 1, + "demonstration": 1, + "⬆️": 1, + "memo": 1, + "revisitinfuture": 1, + "tips": 1, + "reference": 1, + "high": 1, + "bug-report": 1, + "babel": 1, + "flashsocket": 1, + "unix": 1, + "npm": 1, + "site": 1, + "chore": 1, + "adapter": 1, + "slides": 1, + "query": 1, + "chat": 1, + "major": 1, + "alpha": 1, + "lock": 1, + "security": 1, + "newsletter": 1, + "verification": 1, + "color": 1, + "containerd": 1, + "doughnut": 1, + "sentry": 1, + "dissertation": 1, + "mentoring": 1, + "confer": 1, + "utilities": 1, + "infosec": 1, + "vulnerability": 1, + "has": 1, + "code": 1, + "teaching": 1, + "protection": 1, + "robot": 1, + "android": 1, + "webaim": 1, + "wontfix": 1, + "triage": 2.25, + "contribution": 1, + "macos": 1, + "assertion": 1, + "blog": 1, + "progress": 1, + "future": 1, + "architecture": 1, + "enhancements": 1, + "pmi": 1, + "promotion": 1, + "validation": 1, + "art": 1, + "film": 1, + "bitbucket": 1, + "cloud": 1, + "labour": 1, + "python": 1, + "suggestion": 1, + "crypto": 1, + "attitudinal": 1, + "electron": 1, + "trial": 1, + "example": 1, + "resolution": 1, + "redirect": 1, + "assessment": 1, + "monitor": 1, + "css": 1, + "hack": 1, + "translation": 1, + "opportunity": 1, + "vultr": 1, + "kubernetes": 1, + "wiki": 1, + "parser": 1, + "pwa": 1, + "iphone": 1, + "program": 1, + "finding": 1, + "digital": 1, + "ocean": 1, + "safeguard": 1, + "iac": 1, + "javascript": 1, + "integration": 1, + "glo": 1, + "porting": 1, + "on": 1, + "hold": 1, + "evaluation": 1, + "go": 1, + "must-triage": 1, + "gradle": 1, + "accessibility": 1, + "work": 1, + "other": 1, + "wrangling": 1, + "sast": 1, + "tech-debt": 1, + "entry": 1, + "fault": 1, + "problem": 1, + "brand": 1, + "internal-issue-created": 1, + "pmp": 1, + "bdd": 1, + "checkpoint": 1, + "csharp": 1, + "unreviewed": 1, + "idea": 1, + "feedback": 1, + "requested": 1, + "wcag": 1, + "bugs": 1, + "mentor": 1, + "economics": 1, + "lib": 1, + "puppet": 1, + "speech": 1, + "balloon": 1, + "phonetic": 0.0625, + "music": 0.0625, + "mixing": 0.0625, + "c": 2, + "c++": 2, + "bulb": 1.875, + "prometheus": 2.25, + "rocket": 1.7999999999999998, + "discuss": 1, + "doc": 2.25, + "blogs": 2.25, + "unit-mocha": 1, + "enterprise": 2.25, + "scheduler": 1, + "class": 1.875, + "fields": 1.875, + "commercial": 1, + "infra": 1, + "terraform": 1, + "figure": 1, + "layout": 1, + "specification": 1, + "vector": 1, + "greenkeeper": 1, + "tdd": 1, + "raster": 1, + "mishap": 1, + "sketch": 1, + "released": 1, + "font": 1, + "deployment": 1, + "e-nightwatch": 1, + "engine": 1, + "vulns": 1, + "syntax": 1, + "deliverable": 1, + "manual": 1, + "osx": 1, + "axe": 1, + "sendgrid": 1, + "operating": 1, + "system": 1, + "advance": 1, + "workflow": 1, + "safety": 1, + "concept": 1, + "lerna": 1, + "readme": 1, + "failing": 1.7999999999999998, + "customer": 1, + "extension": 1, + "lint": 1, + "optimizing": 1, + "compiler": 1, + "css-select": 1, + "figma": 1, + "finance": 1, + "closed": 1, + "due": 1, + "inactivity": 1, + "jira": 1, + "survey": 1, + "behavioral": 1, + "multi": 1, + "module": 1, + "backlog": 1, + "update": 1, + "present": 1, + "modules": 1, + "lang-julia": 1, + "vuln": 1, + "demo": 1, + "corporate": 1, + "spam": 1, + "handshakes": 1, + "platform": 1, + "wave": 1, + "ansible": 1, + "lang-convert": 1, + "gdpr": 1, + "classes": 1, + "websocket": 1, + "speach": 1, + "b": 1, + "chef": 1, + "patreon": 1, + "reviewed-changes-requested": 1, + "youtube": 1, + "(legacy)": 1, + "mentorship": 1, + "typescript": 1, + "didactic": 1, + "story": 1, + "academia": 1 + }, + "positive_weights_sum": {}, + "negative_weights_sum": {} + }, + "doc": { + "positive_weights": { + "steps": 51.2578125, + "bias": 8.094821091816062e-29, + "badges": 22.78125, + "documentation": 16, + "book": 8, + "standard": 16.21829223632813, + "instruction": 10.125, + "spec": 15, + "bigint": 4, + "async": 3.75, + "generators": 3.75, + "decorators": 4, + "docs": 8.898925781250004, + "improvement": 8, + "wikipedia": 10.125, + "beginner": 2, + "orange": 2, + "documents": 10.125, + "pr": 0.75, + "functions": 2, + "memo": 7.03125, + "type": 0.2109375, + "wiki": 10.125, + "component": 0.28125, + "developer": 0.28125, + "tools": 0.28125, + "inspiration": 0.5, + "business": 0.6666666666666667, + "process": 0.6666666666666667, + "sustain": 0.5, + "confirmed": 0.5, + "question": 0.25, + "grey": 0.75, + "cmty": 0.6666666666666667, + "need-info": 0.5, + "sustenance": 0.5, + "good": 0.75, + "first": 0.75, + "issue": 0.75, + "kind": 0.6666666666666667, + "discussion": 0.6666666666666667, + "palette": 0.5, + "azure": 0.6666666666666667, + "ad": 0.6666666666666667, + "data": 0.6666666666666667, + "collection": 0.6666666666666667, + "external-bugs": 0.5, + "deal": 0.5, + "hacking": 0.5, + "video": 0.5, + "test": 0.6666666666666667, + "utils": 2, + "hsv": 0.5, + "thesis": 0.5, + "pentesting": 0.5, + "design": 0.5, + "website": 0.6666666666666667, + "copy": 0.6666666666666667, + "bug": 2, + "guide": 0.5, + "next": 0.6666666666666667, + "meetup!": 0.6666666666666667, + "feat": 0.25, + "ui": 0.6666666666666667, + "mastering": 0.5, + "abandoned": 0.5, + "sponsor": 0.5, + "assess": 0.5, + "merged": 0.6666666666666667, + "vlog": 0.5, + "acceptance": 0.6666666666666667, + "testing": 0.6666666666666667, + "hot": 2, + "tv": 0.5, + "soundtrack": 0.5, + "(category)": 2, + "ci": 0.6666666666666667, + "cd": 0.6666666666666667, + "multi-cloud": 0.5, + "funding": 0.6666666666666667, + "finder": 0.6666666666666667, + "difficulty": 0.6666666666666667, + "hard": 0.6666666666666667, + "diary": 0.5, + "colour": 0.5, + "computer": 0.6666666666666667, + "desktop": 0.6666666666666667, + "flaw": 0.5, + "reliability": 0.5, + "cli-service": 0.75, + "build": 0.75, + "blocked": 0.5, + "maintenance": 2, + "construction": 2, + "ios": 2, + "planned": 2, + "feature": 0.8333333333333333, + "feature-request": 2, + "rfc": 2, + "image": 0.6666666666666667, + "stock": 2, + "reminder": 2, + "status": 0.8, + "review": 0.6666666666666667, + "needed": 2, + "in": 0.6666666666666667, + "lang-crystal": 2, + "breaking": 0.8, + "change": 0.8, + "phone": 2, + "refactor": 2, + "monologue": 2, + "reviewed-approved": 2, + "new": 0.75, + "best": 0.75, + "practice": 0.75, + "lecture": 2, + "backing": 2, + "browser": 2, + "aws": 2, + "polish": 0.8, + "nail": 0.8, + "care": 0.8, + "article": 2, + "peer-review": 2, + "writer-needed": 2, + "eventstorming": 2, + "freemasonry": 0.6666666666666667, + "icons": 0.6666666666666667, + "lean": 2, + "cannot": 0.6666666666666667, + "reproduce": 0.6666666666666667, + "paas": 2, + "net": 0.024691358024691367, + "core": 2, + "wiretap": 2, + "unit-jest": 2, + "infrastructure": 2, + "rgb": 2, + "ideas": 2, + "target": 0.6666666666666667, + "windows": 0.6666666666666667, + "call": 2, + "iconography": 2, + "promote": 2, + "template": 2, + "support": 0.75, + "first-timers-only": 2, + "java": 2, + "cdn": 2, + "dependency": 2, + "ready": 0.8, + "for": 0.8, + "deploy": 0.8, + "troubleshooting": 2, + "proposal": 2, + "e": 0.6666666666666667, + "approachability": 2, + "investment": 2, + "conflicts": 2, + "optimisation": 2, + "kotlin": 2, + "release": 0.8, + "unconfirmed": 2, + "duplicate": 2, + "repeat": 2, + "devops": 2, + "defend": 2, + "blogging": 2, + "friendliness": 2, + "i": 2, + "n": 2, + "cla": 2, + "signed": 2, + "icebox": 2, + "meetup": 2, + "examination": 2, + "mobile": 0.75, + "device": 0.75, + "api": 2, + "addon": 2, + "cracking": 2, + "sparkles": 2, + "enhancement": 0.75, + "hooks": 2, + "improved": 0.75, + "error": 0.75, + "handling": 0.75, + "needs": 0.024691358024691367, + "repro": 2, + "upkeep": 2, + "reactis": 2, + "to": 0.8, + "be": 2, + "sample": 2, + "white": 2, + "check": 2, + "mark": 2, + "external": 2, + "hacktoberfest": 2, + "lang-dart": 2, + "framework": 2, + "icon": 2, + "grant": 2, + "needs-research": 2, + "cybersec": 2, + "biz": 2, + "internationalization": 2, + "utility-lib": 2, + "qa": 2, + "do": 0.75, + "not": 0.75, + "merge": 0.75, + "hacked": 2, + "how-to": 2, + "beginner-friendly": 2, + "trello": 2, + "os": 2, + "sound": 2, + "heavy": 0.8333333333333333, + "plus": 0.8333333333333333, + "sign": 0.8333333333333333, + "request": 0.8333333333333333, + "glitch": 2, + "cx": 2, + "dependencies": 2, + "inquiry": 2, + "deno": 2, + "area": 2, + "crash": 2, + "camera": 2, + "wip": 2, + "configure": 2, + "dom": 2, + "programming": 2, + "font-face": 2, + "rgba": 2, + "parser-specific": 2, + "shell": 2, + "contributions": 2, + "tryout": 2, + "thought": 2, + "analysis": 2, + "contenu": 2, + "cli": 2, + "fund": 2, + "investigation": 2, + "basecamp": 2, + "literature": 2, + "socket": 2, + "io": 2, + "client": 0.8, + "fiscal": 2, + "user": 2, + "debug": 2, + "information": 2, + "frontend": 2, + "upstream": 2, + "raising": 2, + "hand": 2, + "style": 2, + "clean": 2, + "up": 2, + "motif": 2, + "event": 2, + "help": 2, + "wanted": 2, + "priority": 2, + "medium": 2, + "financial": 2, + "ruby": 2, + "es": 2, + "warrant": 2, + "cancelled": 2, + "plan": 2, + "hackathon": 2, + "typography": 2, + "counsel": 2, + "recording": 2, + "crowdin": 2, + "eslint": 2, + "rules": 2, + "easy": 2, + "repare": 2, + "conference": 2, + "great": 2, + "insight": 2, + "phd": 2, + "invalid": 2, + "x": 2, + "changelog": 2, + "e-cypress": 2, + "lipstick": 2, + "-": 2, + "backdoor": 2, + "approved": 2, + "talk": 2, + "subtitle": 2, + "research": 2, + "todo": 0.75, + "spiral": 0.75, + "notepad": 0.75, + "interface": 2, + "critical": 2, + "privacy": 2, + "tests": 2, + "boom": 0.8, + "web": 2, + "app": 2, + "television": 2, + "uat": 2, + "backer": 2, + "exploit": 2, + "requires": 2, + "travis-yml": 2, + "node": 2, + "dev": 2, + "experience": 2, + "fix": 2, + "backend": 2, + "cleaning": 2, + "internal": 0.8, + "house": 2, + "technical": 2, + "debt": 2, + "weekly-digest": 2, + "shallow": 2, + "renderer": 2, + "commerce": 2, + "ie": 0.5, + "hsl": 2, + "left": 2, + "out": 2, + "welcome": 2, + "opinions": 2, + "legacy": 2, + "grafana": 2, + "react": 2, + "native": 2, + "lang-go": 2, + "tutorial": 2, + "plugin": 2, + "logo": 2, + "refactoring": 2, + "safari": 2, + "saltstack": 2, + "available": 2, + "server": 2, + "rendering": 2, + "htmlfile": 2, + "theorem": 2, + "social": 2, + "internationalisation": 2, + "definition": 2, + "enquire": 2, + "packaging": 2, + "lang-r": 2, + "regression": 0.5, + "container": 2, + "opencollective": 2, + "report": 2, + "performance": 2, + "clickup": 2, + "installer": 2, + "statement": 2, + "gcp": 2, + "opinion": 2, + "accepted": 2, + "html": 2, + "a": 2, + "y": 2, + "general": 2, + "js": 2, + "unit": 2, + "speak": 2, + "brainstorming": 2, + "backup": 2, + "language": 2, + "bugfix": 2, + "k": 2, + "s": 2, + "scrum": 2, + "paper": 2, + "library": 2, + "stale": 2, + "optimization": 2, + "show": 2, + "apple": 2, + "low": 2, + "gnu": 2, + "linux": 2, + "focus": 2, + "groups": 2, + "dependency-update": 2, + "related": 2, + "bootstrap": 2, + "usability": 2, + "*nix": 2, + "externs": 2, + "critique": 2, + "prince": 2, + "demonstration": 2, + "⬆️": 2, + "revisitinfuture": 2, + "tips": 2, + "reference": 2, + "high": 2, + "bug-report": 2, + "babel": 2, + "flashsocket": 2, + "unix": 2, + "npm": 2, + "site": 2, + "chore": 2, + "adapter": 2, + "slides": 2, + "query": 2, + "chat": 2, + "major": 2, + "alpha": 2, + "lock": 2, + "security": 2, + "newsletter": 2, + "verification": 2, + "color": 2, + "containerd": 2, + "doughnut": 2, + "sentry": 2, + "dissertation": 2, + "mentoring": 2, + "confer": 2, + "utilities": 2, + "infosec": 2, + "vulnerability": 2, + "has": 2, + "code": 2, + "teaching": 2, + "protection": 2, + "robot": 2, + "android": 2, + "webaim": 2, + "wontfix": 2, + "triage": 0.5, + "contribution": 2, + "macos": 2, + "assertion": 2, + "blog": 2, + "progress": 2, + "future": 2, + "architecture": 2, + "enhancements": 2, + "pmi": 2, + "promotion": 2, + "validation": 2, + "art": 2, + "film": 2, + "bitbucket": 2, + "cloud": 2, + "labour": 2, + "python": 2, + "suggestion": 2, + "crypto": 2, + "attitudinal": 2, + "electron": 2, + "trial": 2, + "example": 2, + "resolution": 2, + "redirect": 2, + "assessment": 2, + "monitor": 2, + "css": 2, + "hack": 2, + "translation": 2, + "opportunity": 2, + "vultr": 2, + "kubernetes": 2, + "parser": 2, + "pwa": 2, + "iphone": 2, + "program": 2, + "finding": 2, + "digital": 2, + "ocean": 2, + "safeguard": 2, + "iac": 2, + "javascript": 2, + "integration": 2, + "glo": 2, + "porting": 2, + "on": 2, + "hold": 2, + "evaluation": 2, + "go": 0.8, + "must-triage": 2, + "gradle": 2, + "accessibility": 2, + "work": 2, + "other": 2, + "wrangling": 2, + "sast": 2, + "tech-debt": 2, + "entry": 2, + "fault": 2, + "problem": 2, + "brand": 2, + "internal-issue-created": 2, + "pmp": 2, + "bdd": 2, + "checkpoint": 2, + "csharp": 2, + "unreviewed": 2, + "idea": 2, + "feedback": 2, + "requested": 2, + "wcag": 2, + "bugs": 2, + "mentor": 2, + "economics": 2, + "lib": 2, + "puppet": 2, + "speech": 0.8, + "balloon": 0.8, + "doc": 18.984375, + "class": 2, + "fields": 2, + "specification": 10.125, + "manual": 10.125, + "readme": 10.125, + "update": 0.9375, + "classes": 2, + "(legacy)": 2, + "c": 0.6666666666666667, + "c++": 0.6666666666666667, + "bulb": 0.75, + "prometheus": 0.5, + "rocket": 0.6666666666666667, + "discuss": 0.8, + "blogs": 0.5, + "unit-mocha": 2, + "enterprise": 0.5, + "scheduler": 2, + "commercial": 0.5, + "infra": 2, + "terraform": 2, + "figure": 2, + "layout": 2, + "vector": 0.6666666666666667, + "greenkeeper": 2, + "tdd": 2, + "raster": 2, + "mishap": 2, + "sketch": 2, + "released": 2, + "font": 2, + "deployment": 0.6666666666666667, + "e-nightwatch": 2, + "engine": 0.6666666666666667, + "vulns": 0.6666666666666667, + "syntax": 2, + "deliverable": 2, + "osx": 2, + "axe": 2, + "sendgrid": 2, + "operating": 2, + "system": 2, + "advance": 2, + "workflow": 2, + "safety": 2, + "phonetic": 2, + "concept": 2, + "lerna": 2, + "music": 2, + "failing": 2, + "customer": 2, + "extension": 2, + "lint": 2, + "optimizing": 2, + "compiler": 2, + "css-select": 2, + "figma": 2, + "finance": 2, + "closed": 0.8, + "due": 0.8, + "inactivity": 0.8, + "jira": 2, + "survey": 2, + "behavioral": 2, + "multi": 2, + "module": 2, + "mixing": 2, + "backlog": 2, + "present": 2, + "modules": 2, + "lang-julia": 2, + "vuln": 2, + "demo": 2, + "corporate": 2, + "spam": 2, + "handshakes": 2, + "platform": 2, + "wave": 2, + "ansible": 2, + "lang-convert": 2, + "gdpr": 2, + "websocket": 2, + "speach": 2, + "b": 2, + "chef": 2, + "patreon": 2, + "reviewed-changes-requested": 2, + "youtube": 2, + "mentorship": 2, + "typescript": 2, + "didactic": 2, + "story": 2, + "academia": 2 + }, + "negative_weights": { + "steps": 0.00390625, + "bias": 4.7028830719762515, + "badges": 0.015625, + "documentation": 0.03703703703703705, + "book": 0.11111111111111113, + "standard": 0.000244140625, + "instruction": 0.0625, + "spec": 0.04166666666666667, + "bigint": 0.33333333333333337, + "async": 0.375, + "generators": 0.375, + "decorators": 0.33333333333333337, + "docs": 0.0009765625, + "improvement": 0.11111111111111113, + "wikipedia": 0.0625, + "beginner": 1, + "orange": 1, + "documents": 0.0625, + "pr": 0.30374999999999996, + "functions": 1, + "memo": 0.140625, + "type": 2.3730468749999996, + "wiki": 0.0625, + "component": 3.515625, + "developer": 3.515625, + "tools": 3.515625, + "inspiration": 2.25, + "business": 2, + "process": 2, + "sustain": 2.25, + "confirmed": 2.25, + "question": 3.75, + "grey": 1.875, + "cmty": 2, + "need-info": 2.25, + "sustenance": 2.25, + "good": 1.875, + "first": 1.875, + "issue": 1.875, + "kind": 2, + "discussion": 2, + "palette": 2.25, + "azure": 2, + "ad": 2, + "data": 2, + "collection": 2, + "external-bugs": 2.25, + "deal": 2.25, + "hacking": 2.25, + "video": 2.25, + "test": 2, + "utils": 1, + "hsv": 2.25, + "thesis": 2.25, + "pentesting": 2.25, + "design": 2.25, + "website": 2, + "copy": 2, + "bug": 1, + "guide": 2.25, + "next": 2, + "meetup!": 2, + "feat": 3.75, + "ui": 2, + "mastering": 2.25, + "abandoned": 2.25, + "sponsor": 2.25, + "assess": 2.25, + "merged": 2, + "vlog": 2.25, + "acceptance": 2, + "testing": 2, + "hot": 1, + "tv": 2.25, + "soundtrack": 2.25, + "(category)": 1, + "ci": 2, + "cd": 2, + "multi-cloud": 2.25, + "funding": 2, + "finder": 2, + "difficulty": 2, + "hard": 2, + "diary": 2.25, + "colour": 2.25, + "computer": 2, + "desktop": 2, + "flaw": 2.25, + "reliability": 2.25, + "cli-service": 1.875, + "build": 1.875, + "blocked": 2.25, + "maintenance": 1, + "construction": 1, + "ios": 1, + "planned": 1, + "feature": 1.75, + "feature-request": 1, + "rfc": 1, + "image": 2, + "stock": 1, + "reminder": 1, + "status": 1.7999999999999998, + "review": 2, + "needed": 1, + "in": 2, + "lang-crystal": 1, + "breaking": 1.7999999999999998, + "change": 1.7999999999999998, + "phone": 1, + "refactor": 1, + "monologue": 1, + "reviewed-approved": 1, + "new": 1.875, + "best": 1.875, + "practice": 1.875, + "lecture": 1, + "backing": 1, + "browser": 1, + "aws": 1, + "polish": 1.7999999999999998, + "nail": 1.7999999999999998, + "care": 1.7999999999999998, + "article": 1, + "peer-review": 1, + "writer-needed": 1, + "eventstorming": 1, + "freemasonry": 2, + "icons": 2, + "lean": 1, + "cannot": 2, + "reproduce": 2, + "paas": 1, + "net": 16, + "core": 1, + "wiretap": 1, + "unit-jest": 1, + "infrastructure": 1, + "rgb": 1, + "ideas": 1, + "target": 2, + "windows": 2, + "call": 1, + "iconography": 1, + "promote": 1, + "template": 1, + "support": 1.875, + "first-timers-only": 1, + "java": 1, + "cdn": 1, + "dependency": 1, + "ready": 1.7999999999999998, + "for": 1.7999999999999998, + "deploy": 1.7999999999999998, + "troubleshooting": 1, + "proposal": 1, + "e": 2, + "approachability": 1, + "investment": 1, + "conflicts": 1, + "optimisation": 1, + "kotlin": 1, + "release": 1.7999999999999998, + "unconfirmed": 1, + "duplicate": 1, + "repeat": 1, + "devops": 1, + "defend": 1, + "blogging": 1, + "friendliness": 1, + "i": 1, + "n": 1, + "cla": 1, + "signed": 1, + "icebox": 1, + "meetup": 1, + "examination": 1, + "mobile": 1.875, + "device": 1.875, + "api": 1, + "addon": 1, + "cracking": 1, + "sparkles": 1, + "enhancement": 1.875, + "hooks": 1, + "improved": 1.875, + "error": 1.875, + "handling": 1.875, + "needs": 16, + "repro": 1, + "upkeep": 1, + "reactis": 1, + "to": 1.7999999999999998, + "be": 1, + "sample": 1, + "white": 1, + "check": 1, + "mark": 1, + "external": 1, + "hacktoberfest": 1, + "lang-dart": 1, + "framework": 1, + "icon": 1, + "grant": 1, + "needs-research": 1, + "cybersec": 1, + "biz": 1, + "internationalization": 1, + "utility-lib": 1, + "qa": 1, + "do": 1.875, + "not": 1.875, + "merge": 1.875, + "hacked": 1, + "how-to": 1, + "beginner-friendly": 1, + "trello": 1, + "os": 1, + "sound": 1, + "heavy": 1.75, + "plus": 1.75, + "sign": 1.75, + "request": 1.75, + "glitch": 1, + "cx": 1, + "dependencies": 1, + "inquiry": 1, + "deno": 1, + "area": 1, + "crash": 1, + "camera": 1, + "wip": 1, + "configure": 1, + "dom": 1, + "programming": 1, + "font-face": 1, + "rgba": 1, + "parser-specific": 1, + "shell": 1, + "contributions": 1, + "tryout": 1, + "thought": 1, + "analysis": 1, + "contenu": 1, + "cli": 1, + "fund": 1, + "investigation": 1, + "basecamp": 1, + "literature": 1, + "socket": 1, + "io": 1, + "client": 1.7999999999999998, + "fiscal": 1, + "user": 1, + "debug": 1, + "information": 1, + "frontend": 1, + "upstream": 1, + "raising": 1, + "hand": 1, + "style": 1, + "clean": 1, + "up": 1, + "motif": 1, + "event": 1, + "help": 1, + "wanted": 1, + "priority": 1, + "medium": 1, + "financial": 1, + "ruby": 1, + "es": 1, + "warrant": 1, + "cancelled": 1, + "plan": 1, + "hackathon": 1, + "typography": 1, + "counsel": 1, + "recording": 1, + "crowdin": 1, + "eslint": 1, + "rules": 1, + "easy": 1, + "repare": 1, + "conference": 1, + "great": 1, + "insight": 1, + "phd": 1, + "invalid": 1, + "x": 1, + "changelog": 1, + "e-cypress": 1, + "lipstick": 1, + "-": 1, + "backdoor": 1, + "approved": 1, + "talk": 1, + "subtitle": 1, + "research": 1, + "todo": 1.875, + "spiral": 1.875, + "notepad": 1.875, + "interface": 1, + "critical": 1, + "privacy": 1, + "tests": 1, + "boom": 1.7999999999999998, + "web": 1, + "app": 1, + "television": 1, + "uat": 1, + "backer": 1, + "exploit": 1, + "requires": 1, + "travis-yml": 1, + "node": 1, + "dev": 1, + "experience": 1, + "fix": 1, + "backend": 1, + "cleaning": 1, + "internal": 1.7999999999999998, + "house": 1, + "technical": 1, + "debt": 1, + "weekly-digest": 1, + "shallow": 1, + "renderer": 1, + "commerce": 1, + "ie": 2.25, + "hsl": 1, + "left": 1, + "out": 1, + "welcome": 1, + "opinions": 1, + "legacy": 1, + "grafana": 1, + "react": 1, + "native": 1, + "lang-go": 1, + "tutorial": 1, + "plugin": 1, + "logo": 1, + "refactoring": 1, + "safari": 1, + "saltstack": 1, + "available": 1, + "server": 1, + "rendering": 1, + "htmlfile": 1, + "theorem": 1, + "social": 1, + "internationalisation": 1, + "definition": 1, + "enquire": 1, + "packaging": 1, + "lang-r": 1, + "regression": 2.25, + "container": 1, + "opencollective": 1, + "report": 1, + "performance": 1, + "clickup": 1, + "installer": 1, + "statement": 1, + "gcp": 1, + "opinion": 1, + "accepted": 1, + "html": 1, + "a": 1, + "y": 1, + "general": 1, + "js": 1, + "unit": 1, + "speak": 1, + "brainstorming": 1, + "backup": 1, + "language": 1, + "bugfix": 1, + "k": 1, + "s": 1, + "scrum": 1, + "paper": 1, + "library": 1, + "stale": 1, + "optimization": 1, + "show": 1, + "apple": 1, + "low": 1, + "gnu": 1, + "linux": 1, + "focus": 1, + "groups": 1, + "dependency-update": 1, + "related": 1, + "bootstrap": 1, + "usability": 1, + "*nix": 1, + "externs": 1, + "critique": 1, + "prince": 1, + "demonstration": 1, + "⬆️": 1, + "revisitinfuture": 1, + "tips": 1, + "reference": 1, + "high": 1, + "bug-report": 1, + "babel": 1, + "flashsocket": 1, + "unix": 1, + "npm": 1, + "site": 1, + "chore": 1, + "adapter": 1, + "slides": 1, + "query": 1, + "chat": 1, + "major": 1, + "alpha": 1, + "lock": 1, + "security": 1, + "newsletter": 1, + "verification": 1, + "color": 1, + "containerd": 1, + "doughnut": 1, + "sentry": 1, + "dissertation": 1, + "mentoring": 1, + "confer": 1, + "utilities": 1, + "infosec": 1, + "vulnerability": 1, + "has": 1, + "code": 1, + "teaching": 1, + "protection": 1, + "robot": 1, + "android": 1, + "webaim": 1, + "wontfix": 1, + "triage": 2.25, + "contribution": 1, + "macos": 1, + "assertion": 1, + "blog": 1, + "progress": 1, + "future": 1, + "architecture": 1, + "enhancements": 1, + "pmi": 1, + "promotion": 1, + "validation": 1, + "art": 1, + "film": 1, + "bitbucket": 1, + "cloud": 1, + "labour": 1, + "python": 1, + "suggestion": 1, + "crypto": 1, + "attitudinal": 1, + "electron": 1, + "trial": 1, + "example": 1, + "resolution": 1, + "redirect": 1, + "assessment": 1, + "monitor": 1, + "css": 1, + "hack": 1, + "translation": 1, + "opportunity": 1, + "vultr": 1, + "kubernetes": 1, + "parser": 1, + "pwa": 1, + "iphone": 1, + "program": 1, + "finding": 1, + "digital": 1, + "ocean": 1, + "safeguard": 1, + "iac": 1, + "javascript": 1, + "integration": 1, + "glo": 1, + "porting": 1, + "on": 1, + "hold": 1, + "evaluation": 1, + "go": 1.7999999999999998, + "must-triage": 1, + "gradle": 1, + "accessibility": 1, + "work": 1, + "other": 1, + "wrangling": 1, + "sast": 1, + "tech-debt": 1, + "entry": 1, + "fault": 1, + "problem": 1, + "brand": 1, + "internal-issue-created": 1, + "pmp": 1, + "bdd": 1, + "checkpoint": 1, + "csharp": 1, + "unreviewed": 1, + "idea": 1, + "feedback": 1, + "requested": 1, + "wcag": 1, + "bugs": 1, + "mentor": 1, + "economics": 1, + "lib": 1, + "puppet": 1, + "speech": 1.7999999999999998, + "balloon": 1.7999999999999998, + "doc": 0.0234375, + "class": 1, + "fields": 1, + "specification": 0.0625, + "manual": 0.0625, + "readme": 0.0625, + "update": 0.84375, + "classes": 1, + "(legacy)": 1, + "c": 2, + "c++": 2, + "bulb": 1.875, + "prometheus": 2.25, + "rocket": 2, + "discuss": 1.7999999999999998, + "blogs": 2.25, + "unit-mocha": 1, + "enterprise": 2.25, + "scheduler": 1, + "commercial": 2.25, + "infra": 1, + "terraform": 1, + "figure": 1, + "layout": 1, + "vector": 2, + "greenkeeper": 1, + "tdd": 1, + "raster": 1, + "mishap": 1, + "sketch": 1, + "released": 1, + "font": 1, + "deployment": 2, + "e-nightwatch": 1, + "engine": 2, + "vulns": 2, + "syntax": 1, + "deliverable": 1, + "osx": 1, + "axe": 1, + "sendgrid": 1, + "operating": 1, + "system": 1, + "advance": 1, + "workflow": 1, + "safety": 1, + "phonetic": 1, + "concept": 1, + "lerna": 1, + "music": 1, + "failing": 1, + "customer": 1, + "extension": 1, + "lint": 1, + "optimizing": 1, + "compiler": 1, + "css-select": 1, + "figma": 1, + "finance": 1, + "closed": 1.7999999999999998, + "due": 1.7999999999999998, + "inactivity": 1.7999999999999998, + "jira": 1, + "survey": 1, + "behavioral": 1, + "multi": 1, + "module": 1, + "mixing": 1, + "backlog": 1, + "present": 1, + "modules": 1, + "lang-julia": 1, + "vuln": 1, + "demo": 1, + "corporate": 1, + "spam": 1, + "handshakes": 1, + "platform": 1, + "wave": 1, + "ansible": 1, + "lang-convert": 1, + "gdpr": 1, + "websocket": 1, + "speach": 1, + "b": 1, + "chef": 1, + "patreon": 1, + "reviewed-changes-requested": 1, + "youtube": 1, + "mentorship": 1, + "typescript": 1, + "didactic": 1, + "story": 1, + "academia": 1 + }, + "positive_weights_sum": {}, + "negative_weights_sum": {} + }, + "mentoring": { + "positive_weights": { + "sponsor": 10.125, + "bias": 1.057070646311332e-7, + "counsel": 10.125, + "mentoring": 10.125, + "mentor": 10.125, + "component": 0.75, + "developer": 0.75, + "tools": 0.75, + "inspiration": 0.5, + "business": 0.6666666666666667, + "process": 0.6666666666666667, + "sustain": 0.5, + "confirmed": 0.5, + "type": 0.75, + "question": 0.75, + "grey": 0.75, + "cmty": 2, + "need-info": 0.5, + "sustenance": 0.5, + "good": 0.75, + "first": 0.75, + "issue": 0.75, + "kind": 0.6666666666666667, + "discussion": 0.6666666666666667, + "palette": 0.5, + "azure": 0.6666666666666667, + "ad": 0.6666666666666667, + "data": 0.6666666666666667, + "collection": 0.6666666666666667, + "external-bugs": 0.5, + "deal": 2, + "hacking": 2, + "video": 2, + "test": 0.8, + "utils": 2, + "hsv": 2, + "thesis": 2, + "pentesting": 2, + "design": 2, + "website": 0.6666666666666667, + "copy": 0.6666666666666667, + "bug": 2, + "guide": 2, + "next": 2, + "meetup!": 2, + "feat": 0.75, + "ui": 2, + "mastering": 2, + "steps": 2, + "abandoned": 2, + "badges": 2, + "assess": 2, + "pr": 0.32000000000000006, + "merged": 2, + "vlog": 2, + "acceptance": 2, + "testing": 2, + "hot": 2, + "tv": 2, + "soundtrack": 2, + "(category)": 2, + "ci": 2, + "cd": 2, + "multi-cloud": 2, + "funding": 2, + "finder": 2, + "difficulty": 2, + "hard": 2, + "documentation": 2, + "book": 2, + "diary": 2, + "standard": 2, + "colour": 2, + "computer": 2, + "desktop": 2, + "flaw": 2, + "reliability": 2, + "cli-service": 0.75, + "build": 0.75, + "blocked": 2, + "maintenance": 2, + "construction": 2, + "ios": 2, + "planned": 2, + "feature": 0.8, + "feature-request": 2, + "rfc": 2, + "image": 2, + "stock": 2, + "reminder": 2, + "status": 0.8, + "review": 2, + "needed": 2, + "in": 2, + "lang-crystal": 2, + "breaking": 2, + "change": 2, + "phone": 2, + "refactor": 2, + "monologue": 2, + "reviewed-approved": 2, + "new": 0.8, + "best": 2, + "practice": 2, + "lecture": 2, + "backing": 2, + "browser": 2, + "aws": 2, + "polish": 0.8, + "nail": 0.8, + "care": 0.8, + "article": 2, + "peer-review": 2, + "writer-needed": 2, + "eventstorming": 2, + "freemasonry": 2, + "icons": 2, + "lean": 2, + "cannot": 2, + "reproduce": 2, + "paas": 2, + "net": 2, + "core": 2, + "wiretap": 2, + "unit-jest": 2, + "instruction": 2, + "infrastructure": 2, + "rgb": 2, + "ideas": 2, + "target": 2, + "windows": 2, + "call": 2, + "iconography": 2, + "promote": 2, + "template": 2, + "support": 2, + "first-timers-only": 2, + "java": 2, + "cdn": 2, + "dependency": 2, + "ready": 0.8, + "for": 0.8, + "deploy": 0.8, + "troubleshooting": 2, + "spec": 0.75, + "bigint": 2, + "async": 2, + "generators": 2, + "proposal": 2, + "e": 2, + "approachability": 2, + "investment": 2, + "conflicts": 2, + "optimisation": 2, + "kotlin": 2, + "release": 2, + "unconfirmed": 2, + "duplicate": 2, + "repeat": 2, + "devops": 2, + "defend": 2, + "blogging": 2, + "friendliness": 2, + "i": 2, + "n": 2, + "cla": 2, + "signed": 2, + "icebox": 2, + "meetup": 2, + "examination": 2, + "mobile": 2, + "device": 2, + "api": 2, + "decorators": 2, + "addon": 2, + "cracking": 2, + "sparkles": 2, + "enhancement": 2, + "hooks": 2, + "improved": 2, + "error": 2, + "handling": 2, + "needs": 0.8, + "repro": 2, + "upkeep": 2, + "reactis": 2, + "to": 2, + "be": 2, + "sample": 2, + "white": 2, + "check": 2, + "mark": 2, + "external": 2, + "hacktoberfest": 2, + "lang-dart": 2, + "framework": 2, + "icon": 2, + "grant": 2, + "needs-research": 2, + "cybersec": 2, + "biz": 2, + "internationalization": 2, + "utility-lib": 2, + "qa": 2, + "do": 2, + "not": 2, + "merge": 2, + "hacked": 2, + "how-to": 2, + "beginner-friendly": 2, + "trello": 2, + "os": 2, + "sound": 2, + "docs": 2, + "improvement": 2, + "heavy": 2, + "plus": 2, + "sign": 2, + "request": 2, + "glitch": 2, + "cx": 2, + "dependencies": 2, + "inquiry": 2, + "deno": 2, + "area": 2, + "crash": 2, + "camera": 2, + "wip": 2, + "configure": 2, + "dom": 2, + "programming": 2, + "font-face": 2, + "rgba": 2, + "parser-specific": 2, + "wikipedia": 2, + "shell": 2, + "contributions": 2, + "tryout": 2, + "thought": 2, + "analysis": 2, + "contenu": 2, + "cli": 2, + "fund": 2, + "investigation": 2, + "basecamp": 2, + "literature": 2, + "socket": 2, + "io": 2, + "client": 2, + "fiscal": 2, + "user": 2, + "debug": 2, + "information": 2, + "frontend": 2, + "upstream": 2, + "raising": 2, + "hand": 2, + "style": 2, + "clean": 2, + "up": 2, + "motif": 2, + "event": 2, + "help": 2, + "wanted": 2, + "priority": 2, + "medium": 2, + "financial": 2, + "ruby": 2, + "es": 2, + "warrant": 2, + "cancelled": 2, + "plan": 2, + "hackathon": 2, + "beginner": 2, + "typography": 2, + "recording": 2, + "crowdin": 2, + "eslint": 2, + "rules": 2, + "easy": 2, + "repare": 2, + "conference": 2, + "great": 2, + "insight": 2, + "phd": 2, + "orange": 2, + "invalid": 2, + "x": 2, + "changelog": 2, + "e-cypress": 2, + "lipstick": 2, + "-": 2, + "backdoor": 2, + "approved": 2, + "talk": 2, + "subtitle": 2, + "research": 2, + "todo": 2, + "spiral": 2, + "notepad": 2, + "interface": 2, + "critical": 2, + "privacy": 2, + "tests": 2, + "boom": 2, + "web": 2, + "app": 2, + "television": 2, + "uat": 2, + "backer": 2, + "exploit": 2, + "requires": 2, + "travis-yml": 2, + "node": 2, + "dev": 2, + "experience": 2, + "fix": 2, + "backend": 2, + "cleaning": 2, + "internal": 2, + "house": 2, + "technical": 2, + "debt": 2, + "weekly-digest": 2, + "shallow": 2, + "renderer": 2, + "commerce": 2, + "ie": 2, + "hsl": 2, + "left": 2, + "out": 2, + "welcome": 2, + "opinions": 2, + "documents": 2, + "legacy": 2, + "grafana": 2, + "react": 2, + "native": 2, + "lang-go": 2, + "tutorial": 2, + "plugin": 2, + "logo": 2, + "refactoring": 2, + "safari": 2, + "saltstack": 2, + "available": 2, + "server": 2, + "rendering": 2, + "htmlfile": 2, + "theorem": 2, + "social": 2, + "internationalisation": 2, + "definition": 2, + "enquire": 2, + "packaging": 2, + "lang-r": 2, + "regression": 2, + "container": 2, + "opencollective": 2, + "report": 2, + "performance": 2, + "clickup": 2, + "installer": 2, + "statement": 2, + "gcp": 2, + "opinion": 2, + "accepted": 2, + "html": 2, + "a": 0.8, + "y": 2, + "general": 2, + "js": 2, + "unit": 2, + "speak": 2, + "brainstorming": 2, + "backup": 2, + "language": 2, + "bugfix": 2, + "k": 2, + "s": 2, + "scrum": 2, + "paper": 2, + "library": 2, + "stale": 2, + "optimization": 2, + "show": 2, + "apple": 2, + "low": 2, + "functions": 2, + "gnu": 2, + "linux": 2, + "focus": 2, + "groups": 2, + "dependency-update": 2, + "related": 2, + "bootstrap": 2, + "usability": 2, + "*nix": 2, + "externs": 2, + "critique": 2, + "prince": 2, + "demonstration": 2, + "⬆️": 2, + "memo": 2, + "revisitinfuture": 2, + "tips": 2, + "reference": 2, + "high": 2, + "bug-report": 2, + "babel": 2, + "flashsocket": 2, + "unix": 2, + "npm": 2, + "site": 2, + "chore": 2, + "adapter": 2, + "slides": 2, + "query": 2, + "chat": 2, + "major": 2, + "alpha": 2, + "lock": 2, + "security": 2, + "newsletter": 2, + "verification": 2, + "color": 2, + "containerd": 2, + "doughnut": 2, + "sentry": 2, + "dissertation": 2, + "confer": 2, + "utilities": 2, + "infosec": 2, + "vulnerability": 2, + "has": 2, + "code": 2, + "teaching": 2, + "protection": 2, + "robot": 2, + "android": 2, + "webaim": 2, + "wontfix": 2, + "triage": 2, + "contribution": 2, + "macos": 2, + "assertion": 2, + "blog": 2, + "progress": 2, + "future": 2, + "architecture": 2, + "enhancements": 2, + "pmi": 2, + "promotion": 2, + "validation": 2, + "art": 2, + "film": 2, + "bitbucket": 2, + "cloud": 2, + "labour": 2, + "python": 2, + "suggestion": 2, + "crypto": 2, + "attitudinal": 2, + "electron": 2, + "trial": 2, + "example": 2, + "resolution": 2, + "redirect": 2, + "assessment": 2, + "monitor": 2, + "css": 2, + "hack": 2, + "translation": 2, + "opportunity": 2, + "vultr": 2, + "kubernetes": 2, + "wiki": 2, + "parser": 2, + "pwa": 2, + "iphone": 2, + "program": 2, + "finding": 2, + "digital": 2, + "ocean": 2, + "safeguard": 2, + "iac": 2, + "javascript": 2, + "integration": 2, + "glo": 2, + "porting": 2, + "on": 2, + "hold": 2, + "evaluation": 2, + "go": 2, + "must-triage": 2, + "gradle": 2, + "accessibility": 2, + "work": 2, + "other": 2, + "wrangling": 2, + "sast": 2, + "tech-debt": 2, + "entry": 2, + "fault": 2, + "problem": 2, + "brand": 2, + "internal-issue-created": 2, + "pmp": 2, + "bdd": 2, + "checkpoint": 2, + "csharp": 2, + "unreviewed": 2, + "idea": 2, + "feedback": 2, + "requested": 2, + "wcag": 2, + "bugs": 2, + "economics": 2, + "lib": 2, + "puppet": 2, + "speech": 2, + "balloon": 2, + "mentorship": 10.125, + "c": 0.6666666666666667, + "c++": 0.6666666666666667, + "bulb": 2, + "prometheus": 2, + "rocket": 0.8, + "discuss": 2, + "doc": 2, + "blogs": 2, + "unit-mocha": 2, + "enterprise": 2, + "scheduler": 2, + "class": 0.75, + "fields": 0.75, + "commercial": 2, + "infra": 2, + "terraform": 2, + "figure": 2, + "layout": 2, + "specification": 2, + "vector": 2, + "greenkeeper": 2, + "tdd": 2, + "raster": 2, + "mishap": 2, + "sketch": 2, + "released": 2, + "font": 2, + "deployment": 2, + "e-nightwatch": 2, + "engine": 2, + "vulns": 2, + "syntax": 2, + "deliverable": 2, + "manual": 2, + "osx": 2, + "axe": 2, + "sendgrid": 2, + "operating": 2, + "system": 2, + "advance": 2, + "workflow": 2, + "safety": 2, + "phonetic": 2, + "concept": 2, + "lerna": 2, + "readme": 2, + "music": 2, + "failing": 0.8, + "customer": 2, + "extension": 2, + "lint": 2, + "optimizing": 2, + "compiler": 2, + "css-select": 2, + "figma": 2, + "finance": 2, + "closed": 2, + "due": 2, + "inactivity": 2, + "jira": 2, + "survey": 2, + "behavioral": 2, + "multi": 2, + "module": 2, + "mixing": 2, + "backlog": 2, + "update": 2, + "present": 2, + "modules": 2, + "lang-julia": 2, + "vuln": 2, + "demo": 2, + "corporate": 2, + "spam": 2, + "handshakes": 2, + "platform": 2, + "wave": 2, + "ansible": 2, + "lang-convert": 2, + "gdpr": 2, + "classes": 2, + "websocket": 2, + "speach": 2, + "b": 2, + "chef": 2, + "patreon": 2, + "reviewed-changes-requested": 2, + "youtube": 2, + "(legacy)": 2, + "typescript": 2, + "didactic": 2, + "story": 2, + "academia": 2 + }, + "negative_weights": { + "sponsor": 0.0625, + "bias": 4.3346503190304, + "counsel": 0.0625, + "mentoring": 0.0625, + "mentor": 0.0625, + "component": 1.875, + "developer": 1.875, + "tools": 1.875, + "inspiration": 2.25, + "business": 2, + "process": 2, + "sustain": 2.25, + "confirmed": 2.25, + "type": 1.875, + "question": 1.875, + "grey": 1.875, + "cmty": 1, + "need-info": 2.25, + "sustenance": 2.25, + "good": 1.875, + "first": 1.875, + "issue": 1.875, + "kind": 2, + "discussion": 2, + "palette": 2.25, + "azure": 2, + "ad": 2, + "data": 2, + "collection": 2, + "external-bugs": 2.25, + "deal": 1, + "hacking": 1, + "video": 1, + "test": 1.7999999999999998, + "utils": 1, + "hsv": 1, + "thesis": 1, + "pentesting": 1, + "design": 1, + "website": 2, + "copy": 2, + "bug": 1, + "guide": 1, + "next": 1, + "meetup!": 1, + "feat": 1.875, + "ui": 1, + "mastering": 1, + "steps": 1, + "abandoned": 1, + "badges": 1, + "assess": 1, + "pr": 3.2399999999999993, + "merged": 1, + "vlog": 1, + "acceptance": 1, + "testing": 1, + "hot": 1, + "tv": 1, + "soundtrack": 1, + "(category)": 1, + "ci": 1, + "cd": 1, + "multi-cloud": 1, + "funding": 1, + "finder": 1, + "difficulty": 1, + "hard": 1, + "documentation": 1, + "book": 1, + "diary": 1, + "standard": 1, + "colour": 1, + "computer": 1, + "desktop": 1, + "flaw": 1, + "reliability": 1, + "cli-service": 1.875, + "build": 1.875, + "blocked": 1, + "maintenance": 1, + "construction": 1, + "ios": 1, + "planned": 1, + "feature": 1.7999999999999998, + "feature-request": 1, + "rfc": 1, + "image": 1, + "stock": 1, + "reminder": 1, + "status": 1.7999999999999998, + "review": 1, + "needed": 1, + "in": 1, + "lang-crystal": 1, + "breaking": 1, + "change": 1, + "phone": 1, + "refactor": 1, + "monologue": 1, + "reviewed-approved": 1, + "new": 1.7999999999999998, + "best": 1, + "practice": 1, + "lecture": 1, + "backing": 1, + "browser": 1, + "aws": 1, + "polish": 1.7999999999999998, + "nail": 1.7999999999999998, + "care": 1.7999999999999998, + "article": 1, + "peer-review": 1, + "writer-needed": 1, + "eventstorming": 1, + "freemasonry": 1, + "icons": 1, + "lean": 1, + "cannot": 1, + "reproduce": 1, + "paas": 1, + "net": 1, + "core": 1, + "wiretap": 1, + "unit-jest": 1, + "instruction": 1, + "infrastructure": 1, + "rgb": 1, + "ideas": 1, + "target": 1, + "windows": 1, + "call": 1, + "iconography": 1, + "promote": 1, + "template": 1, + "support": 1, + "first-timers-only": 1, + "java": 1, + "cdn": 1, + "dependency": 1, + "ready": 1.7999999999999998, + "for": 1.7999999999999998, + "deploy": 1.7999999999999998, + "troubleshooting": 1, + "spec": 1.875, + "bigint": 1, + "async": 1, + "generators": 1, + "proposal": 1, + "e": 1, + "approachability": 1, + "investment": 1, + "conflicts": 1, + "optimisation": 1, + "kotlin": 1, + "release": 1, + "unconfirmed": 1, + "duplicate": 1, + "repeat": 1, + "devops": 1, + "defend": 1, + "blogging": 1, + "friendliness": 1, + "i": 1, + "n": 1, + "cla": 1, + "signed": 1, + "icebox": 1, + "meetup": 1, + "examination": 1, + "mobile": 1, + "device": 1, + "api": 1, + "decorators": 1, + "addon": 1, + "cracking": 1, + "sparkles": 1, + "enhancement": 1, + "hooks": 1, + "improved": 1, + "error": 1, + "handling": 1, + "needs": 1.7999999999999998, + "repro": 1, + "upkeep": 1, + "reactis": 1, + "to": 1, + "be": 1, + "sample": 1, + "white": 1, + "check": 1, + "mark": 1, + "external": 1, + "hacktoberfest": 1, + "lang-dart": 1, + "framework": 1, + "icon": 1, + "grant": 1, + "needs-research": 1, + "cybersec": 1, + "biz": 1, + "internationalization": 1, + "utility-lib": 1, + "qa": 1, + "do": 1, + "not": 1, + "merge": 1, + "hacked": 1, + "how-to": 1, + "beginner-friendly": 1, + "trello": 1, + "os": 1, + "sound": 1, + "docs": 1, + "improvement": 1, + "heavy": 1, + "plus": 1, + "sign": 1, + "request": 1, + "glitch": 1, + "cx": 1, + "dependencies": 1, + "inquiry": 1, + "deno": 1, + "area": 1, + "crash": 1, + "camera": 1, + "wip": 1, + "configure": 1, + "dom": 1, + "programming": 1, + "font-face": 1, + "rgba": 1, + "parser-specific": 1, + "wikipedia": 1, + "shell": 1, + "contributions": 1, + "tryout": 1, + "thought": 1, + "analysis": 1, + "contenu": 1, + "cli": 1, + "fund": 1, + "investigation": 1, + "basecamp": 1, + "literature": 1, + "socket": 1, + "io": 1, + "client": 1, + "fiscal": 1, + "user": 1, + "debug": 1, + "information": 1, + "frontend": 1, + "upstream": 1, + "raising": 1, + "hand": 1, + "style": 1, + "clean": 1, + "up": 1, + "motif": 1, + "event": 1, + "help": 1, + "wanted": 1, + "priority": 1, + "medium": 1, + "financial": 1, + "ruby": 1, + "es": 1, + "warrant": 1, + "cancelled": 1, + "plan": 1, + "hackathon": 1, + "beginner": 1, + "typography": 1, + "recording": 1, + "crowdin": 1, + "eslint": 1, + "rules": 1, + "easy": 1, + "repare": 1, + "conference": 1, + "great": 1, + "insight": 1, + "phd": 1, + "orange": 1, + "invalid": 1, + "x": 1, + "changelog": 1, + "e-cypress": 1, + "lipstick": 1, + "-": 1, + "backdoor": 1, + "approved": 1, + "talk": 1, + "subtitle": 1, + "research": 1, + "todo": 1, + "spiral": 1, + "notepad": 1, + "interface": 1, + "critical": 1, + "privacy": 1, + "tests": 1, + "boom": 1, + "web": 1, + "app": 1, + "television": 1, + "uat": 1, + "backer": 1, + "exploit": 1, + "requires": 1, + "travis-yml": 1, + "node": 1, + "dev": 1, + "experience": 1, + "fix": 1, + "backend": 1, + "cleaning": 1, + "internal": 1, + "house": 1, + "technical": 1, + "debt": 1, + "weekly-digest": 1, + "shallow": 1, + "renderer": 1, + "commerce": 1, + "ie": 1, + "hsl": 1, + "left": 1, + "out": 1, + "welcome": 1, + "opinions": 1, + "documents": 1, + "legacy": 1, + "grafana": 1, + "react": 1, + "native": 1, + "lang-go": 1, + "tutorial": 1, + "plugin": 1, + "logo": 1, + "refactoring": 1, + "safari": 1, + "saltstack": 1, + "available": 1, + "server": 1, + "rendering": 1, + "htmlfile": 1, + "theorem": 1, + "social": 1, + "internationalisation": 1, + "definition": 1, + "enquire": 1, + "packaging": 1, + "lang-r": 1, + "regression": 1, + "container": 1, + "opencollective": 1, + "report": 1, + "performance": 1, + "clickup": 1, + "installer": 1, + "statement": 1, + "gcp": 1, + "opinion": 1, + "accepted": 1, + "html": 1, + "a": 1.7999999999999998, + "y": 1, + "general": 1, + "js": 1, + "unit": 1, + "speak": 1, + "brainstorming": 1, + "backup": 1, + "language": 1, + "bugfix": 1, + "k": 1, + "s": 1, + "scrum": 1, + "paper": 1, + "library": 1, + "stale": 1, + "optimization": 1, + "show": 1, + "apple": 1, + "low": 1, + "functions": 1, + "gnu": 1, + "linux": 1, + "focus": 1, + "groups": 1, + "dependency-update": 1, + "related": 1, + "bootstrap": 1, + "usability": 1, + "*nix": 1, + "externs": 1, + "critique": 1, + "prince": 1, + "demonstration": 1, + "⬆️": 1, + "memo": 1, + "revisitinfuture": 1, + "tips": 1, + "reference": 1, + "high": 1, + "bug-report": 1, + "babel": 1, + "flashsocket": 1, + "unix": 1, + "npm": 1, + "site": 1, + "chore": 1, + "adapter": 1, + "slides": 1, + "query": 1, + "chat": 1, + "major": 1, + "alpha": 1, + "lock": 1, + "security": 1, + "newsletter": 1, + "verification": 1, + "color": 1, + "containerd": 1, + "doughnut": 1, + "sentry": 1, + "dissertation": 1, + "confer": 1, + "utilities": 1, + "infosec": 1, + "vulnerability": 1, + "has": 1, + "code": 1, + "teaching": 1, + "protection": 1, + "robot": 1, + "android": 1, + "webaim": 1, + "wontfix": 1, + "triage": 1, + "contribution": 1, + "macos": 1, + "assertion": 1, + "blog": 1, + "progress": 1, + "future": 1, + "architecture": 1, + "enhancements": 1, + "pmi": 1, + "promotion": 1, + "validation": 1, + "art": 1, + "film": 1, + "bitbucket": 1, + "cloud": 1, + "labour": 1, + "python": 1, + "suggestion": 1, + "crypto": 1, + "attitudinal": 1, + "electron": 1, + "trial": 1, + "example": 1, + "resolution": 1, + "redirect": 1, + "assessment": 1, + "monitor": 1, + "css": 1, + "hack": 1, + "translation": 1, + "opportunity": 1, + "vultr": 1, + "kubernetes": 1, + "wiki": 1, + "parser": 1, + "pwa": 1, + "iphone": 1, + "program": 1, + "finding": 1, + "digital": 1, + "ocean": 1, + "safeguard": 1, + "iac": 1, + "javascript": 1, + "integration": 1, + "glo": 1, + "porting": 1, + "on": 1, + "hold": 1, + "evaluation": 1, + "go": 1, + "must-triage": 1, + "gradle": 1, + "accessibility": 1, + "work": 1, + "other": 1, + "wrangling": 1, + "sast": 1, + "tech-debt": 1, + "entry": 1, + "fault": 1, + "problem": 1, + "brand": 1, + "internal-issue-created": 1, + "pmp": 1, + "bdd": 1, + "checkpoint": 1, + "csharp": 1, + "unreviewed": 1, + "idea": 1, + "feedback": 1, + "requested": 1, + "wcag": 1, + "bugs": 1, + "economics": 1, + "lib": 1, + "puppet": 1, + "speech": 1, + "balloon": 1, + "mentorship": 0.0625, + "c": 2, + "c++": 2, + "bulb": 1, + "prometheus": 1, + "rocket": 1.7999999999999998, + "discuss": 1, + "doc": 1, + "blogs": 1, + "unit-mocha": 1, + "enterprise": 1, + "scheduler": 1, + "class": 1.875, + "fields": 1.875, + "commercial": 1, + "infra": 1, + "terraform": 1, + "figure": 1, + "layout": 1, + "specification": 1, + "vector": 1, + "greenkeeper": 1, + "tdd": 1, + "raster": 1, + "mishap": 1, + "sketch": 1, + "released": 1, + "font": 1, + "deployment": 1, + "e-nightwatch": 1, + "engine": 1, + "vulns": 1, + "syntax": 1, + "deliverable": 1, + "manual": 1, + "osx": 1, + "axe": 1, + "sendgrid": 1, + "operating": 1, + "system": 1, + "advance": 1, + "workflow": 1, + "safety": 1, + "phonetic": 1, + "concept": 1, + "lerna": 1, + "readme": 1, + "music": 1, + "failing": 1.7999999999999998, + "customer": 1, + "extension": 1, + "lint": 1, + "optimizing": 1, + "compiler": 1, + "css-select": 1, + "figma": 1, + "finance": 1, + "closed": 1, + "due": 1, + "inactivity": 1, + "jira": 1, + "survey": 1, + "behavioral": 1, + "multi": 1, + "module": 1, + "mixing": 1, + "backlog": 1, + "update": 1, + "present": 1, + "modules": 1, + "lang-julia": 1, + "vuln": 1, + "demo": 1, + "corporate": 1, + "spam": 1, + "handshakes": 1, + "platform": 1, + "wave": 1, + "ansible": 1, + "lang-convert": 1, + "gdpr": 1, + "classes": 1, + "websocket": 1, + "speach": 1, + "b": 1, + "chef": 1, + "patreon": 1, + "reviewed-changes-requested": 1, + "youtube": 1, + "(legacy)": 1, + "typescript": 1, + "didactic": 1, + "story": 1, + "academia": 1 + }, + "positive_weights_sum": {}, + "negative_weights_sum": {} + }, + "fundingFinding": { + "positive_weights": { + "funding": 32, + "finder": 16, + "bias": 3.3908420138888915e-8, + "call": 8, + "grant": 4, + "fund": 16, + "investigation": 8, + "financial": 16, + "backing": 4, + "collection": 1.3333333333333335, + "research": 2, + "backer": 4, + "finding": 16, + "component": 0.75, + "developer": 0.75, + "tools": 0.75, + "inspiration": 0.5, + "business": 0.6666666666666667, + "process": 0.6666666666666667, + "sustain": 0.5, + "confirmed": 0.5, + "type": 0.75, + "question": 0.75, + "grey": 0.75, + "cmty": 2, + "need-info": 0.5, + "sustenance": 0.5, + "good": 0.75, + "first": 0.75, + "issue": 0.75, + "kind": 0.6666666666666667, + "discussion": 0.6666666666666667, + "palette": 0.5, + "azure": 0.6666666666666667, + "ad": 0.6666666666666667, + "data": 0.6666666666666667, + "external-bugs": 0.5, + "deal": 2, + "hacking": 2, + "video": 2, + "test": 2, + "utils": 2, + "hsv": 2, + "thesis": 2, + "pentesting": 2, + "design": 2, + "website": 0.6666666666666667, + "copy": 0.6666666666666667, + "bug": 2, + "guide": 2, + "next": 0.6666666666666667, + "meetup!": 0.6666666666666667, + "feat": 0.75, + "ui": 2, + "mastering": 2, + "steps": 2, + "abandoned": 2, + "badges": 2, + "sponsor": 2, + "assess": 2, + "pr": 0.8, + "merged": 2, + "vlog": 2, + "acceptance": 2, + "testing": 0.8, + "hot": 2, + "tv": 2, + "soundtrack": 2, + "(category)": 2, + "ci": 2, + "cd": 2, + "multi-cloud": 2, + "difficulty": 2, + "hard": 2, + "documentation": 2, + "book": 2, + "diary": 2, + "standard": 2, + "colour": 2, + "computer": 2, + "desktop": 2, + "flaw": 2, + "reliability": 2, + "cli-service": 0.75, + "build": 0.75, + "blocked": 2, + "maintenance": 2, + "construction": 2, + "ios": 2, + "planned": 2, + "feature": 0.8333333333333333, + "feature-request": 2, + "rfc": 2, + "image": 2, + "stock": 2, + "reminder": 2, + "status": 0.8, + "review": 2, + "needed": 2, + "in": 2, + "lang-crystal": 2, + "breaking": 2, + "change": 2, + "phone": 2, + "refactor": 2, + "monologue": 2, + "reviewed-approved": 2, + "new": 0.75, + "best": 0.75, + "practice": 0.75, + "lecture": 2, + "browser": 2, + "aws": 2, + "polish": 0.8, + "nail": 0.8, + "care": 0.8, + "article": 2, + "peer-review": 2, + "writer-needed": 2, + "eventstorming": 2, + "freemasonry": 2, + "icons": 2, + "lean": 2, + "cannot": 2, + "reproduce": 2, + "paas": 2, + "net": 2, + "core": 2, + "wiretap": 2, + "unit-jest": 2, + "instruction": 2, + "infrastructure": 2, + "rgb": 2, + "ideas": 2, + "target": 2, + "windows": 2, + "iconography": 2, + "promote": 2, + "template": 2, + "support": 2, + "first-timers-only": 2, + "java": 2, + "cdn": 2, + "dependency": 2, + "ready": 0.8, + "for": 0.8, + "deploy": 0.8, + "troubleshooting": 2, + "spec": 2, + "bigint": 2, + "async": 2, + "generators": 2, + "proposal": 2, + "e": 2, + "approachability": 2, + "investment": 2, + "conflicts": 2, + "optimisation": 2, + "kotlin": 2, + "release": 2, + "unconfirmed": 2, + "duplicate": 2, + "repeat": 2, + "devops": 2, + "defend": 2, + "blogging": 2, + "friendliness": 2, + "i": 2, + "n": 2, + "cla": 2, + "signed": 2, + "icebox": 2, + "meetup": 2, + "examination": 2, + "mobile": 2, + "device": 2, + "api": 2, + "decorators": 2, + "addon": 2, + "cracking": 2, + "sparkles": 2, + "enhancement": 2, + "hooks": 2, + "improved": 2, + "error": 2, + "handling": 2, + "needs": 2, + "repro": 2, + "upkeep": 2, + "reactis": 2, + "to": 2, + "be": 2, + "sample": 2, + "white": 0.8, + "check": 0.8, + "mark": 0.8, + "external": 2, + "hacktoberfest": 2, + "lang-dart": 2, + "framework": 2, + "icon": 2, + "needs-research": 2, + "cybersec": 2, + "biz": 2, + "internationalization": 2, + "utility-lib": 2, + "qa": 2, + "do": 2, + "not": 2, + "merge": 2, + "hacked": 2, + "how-to": 2, + "beginner-friendly": 2, + "trello": 2, + "os": 2, + "sound": 2, + "docs": 2, + "improvement": 2, + "heavy": 0.8333333333333333, + "plus": 0.8333333333333333, + "sign": 0.8333333333333333, + "request": 0.8333333333333333, + "glitch": 2, + "cx": 2, + "dependencies": 2, + "inquiry": 2, + "deno": 2, + "area": 2, + "crash": 2, + "camera": 2, + "wip": 2, + "configure": 2, + "dom": 2, + "programming": 2, + "font-face": 2, + "rgba": 2, + "parser-specific": 2, + "wikipedia": 2, + "shell": 2, + "contributions": 2, + "tryout": 2, + "thought": 2, + "analysis": 2, + "contenu": 2, + "cli": 2, + "basecamp": 2, + "literature": 2, + "socket": 2, + "io": 2, + "client": 2, + "fiscal": 2, + "user": 2, + "debug": 2, + "information": 2, + "frontend": 2, + "upstream": 2, + "raising": 2, + "hand": 2, + "style": 2, + "clean": 2, + "up": 2, + "motif": 2, + "event": 2, + "help": 2, + "wanted": 2, + "priority": 2, + "medium": 2, + "ruby": 2, + "es": 2, + "warrant": 2, + "cancelled": 2, + "plan": 2, + "hackathon": 2, + "beginner": 2, + "typography": 2, + "counsel": 2, + "recording": 2, + "crowdin": 2, + "eslint": 2, + "rules": 2, + "easy": 2, + "repare": 2, + "conference": 2, + "great": 2, + "insight": 2, + "phd": 2, + "orange": 2, + "invalid": 2, + "x": 2, + "changelog": 2, + "e-cypress": 2, + "lipstick": 2, + "-": 2, + "backdoor": 2, + "approved": 2, + "talk": 2, + "subtitle": 2, + "todo": 2, + "spiral": 2, + "notepad": 2, + "interface": 2, + "critical": 2, + "privacy": 2, + "tests": 2, + "boom": 2, + "web": 2, + "app": 2, + "television": 2, + "uat": 2, + "exploit": 2, + "requires": 2, + "travis-yml": 2, + "node": 2, + "dev": 2, + "experience": 2, + "fix": 2, + "backend": 2, + "cleaning": 2, + "internal": 2, + "house": 2, + "technical": 2, + "debt": 2, + "weekly-digest": 2, + "shallow": 2, + "renderer": 2, + "commerce": 2, + "ie": 2, + "hsl": 2, + "left": 2, + "out": 2, + "welcome": 2, + "opinions": 2, + "documents": 2, + "legacy": 2, + "grafana": 2, + "react": 2, + "native": 2, + "lang-go": 2, + "tutorial": 2, + "plugin": 2, + "logo": 2, + "refactoring": 2, + "safari": 2, + "saltstack": 2, + "available": 2, + "server": 2, + "rendering": 2, + "htmlfile": 2, + "theorem": 2, + "social": 2, + "internationalisation": 2, + "definition": 2, + "enquire": 2, + "packaging": 2, + "lang-r": 2, + "regression": 2, + "container": 2, + "opencollective": 2, + "report": 2, + "performance": 2, + "clickup": 2, + "installer": 2, + "statement": 2, + "gcp": 2, + "opinion": 2, + "accepted": 2, + "html": 2, + "a": 2, + "y": 2, + "general": 2, + "js": 2, + "unit": 2, + "speak": 2, + "brainstorming": 2, + "backup": 2, + "language": 2, + "bugfix": 2, + "k": 2, + "s": 2, + "scrum": 2, + "paper": 2, + "library": 2, + "stale": 2, + "optimization": 2, + "show": 2, + "apple": 2, + "low": 2, + "functions": 2, + "gnu": 2, + "linux": 2, + "focus": 2, + "groups": 2, + "dependency-update": 2, + "related": 2, + "bootstrap": 2, + "usability": 2, + "*nix": 2, + "externs": 2, + "critique": 2, + "prince": 2, + "demonstration": 2, + "⬆️": 2, + "memo": 2, + "revisitinfuture": 2, + "tips": 2, + "reference": 2, + "high": 2, + "bug-report": 2, + "babel": 2, + "flashsocket": 2, + "unix": 2, + "npm": 2, + "site": 2, + "chore": 2, + "adapter": 2, + "slides": 2, + "query": 2, + "chat": 2, + "major": 2, + "alpha": 2, + "lock": 2, + "security": 2, + "newsletter": 2, + "verification": 2, + "color": 2, + "containerd": 2, + "doughnut": 2, + "sentry": 2, + "dissertation": 2, + "mentoring": 2, + "confer": 2, + "utilities": 2, + "infosec": 2, + "vulnerability": 2, + "has": 2, + "code": 2, + "teaching": 2, + "protection": 2, + "robot": 2, + "android": 2, + "webaim": 2, + "wontfix": 2, + "triage": 2, + "contribution": 2, + "macos": 2, + "assertion": 2, + "blog": 2, + "progress": 2, + "future": 2, + "architecture": 2, + "enhancements": 2, + "pmi": 2, + "promotion": 2, + "validation": 2, + "art": 2, + "film": 2, + "bitbucket": 2, + "cloud": 2, + "labour": 2, + "python": 2, + "suggestion": 2, + "crypto": 2, + "attitudinal": 2, + "electron": 2, + "trial": 2, + "example": 2, + "resolution": 2, + "redirect": 2, + "assessment": 2, + "monitor": 2, + "css": 2, + "hack": 2, + "translation": 2, + "opportunity": 2, + "vultr": 2, + "kubernetes": 2, + "wiki": 2, + "parser": 2, + "pwa": 2, + "iphone": 2, + "program": 2, + "digital": 2, + "ocean": 2, + "safeguard": 2, + "iac": 2, + "javascript": 2, + "integration": 2, + "glo": 2, + "porting": 2, + "on": 2, + "hold": 2, + "evaluation": 2, + "go": 2, + "must-triage": 2, + "gradle": 2, + "accessibility": 2, + "work": 2, + "other": 2, + "wrangling": 2, + "sast": 2, + "tech-debt": 2, + "entry": 2, + "fault": 2, + "problem": 2, + "brand": 2, + "internal-issue-created": 2, + "pmp": 2, + "bdd": 2, + "checkpoint": 2, + "csharp": 2, + "unreviewed": 2, + "idea": 2, + "feedback": 2, + "requested": 2, + "wcag": 2, + "bugs": 2, + "mentor": 2, + "economics": 2, + "lib": 2, + "puppet": 2, + "speech": 2, + "balloon": 2, + "c": 2, + "c++": 2, + "bulb": 2, + "prometheus": 2, + "rocket": 2, + "discuss": 2, + "doc": 2, + "blogs": 2, + "unit-mocha": 2, + "enterprise": 2, + "scheduler": 2, + "class": 2, + "fields": 2, + "commercial": 2, + "infra": 2, + "terraform": 2, + "figure": 2, + "layout": 2, + "specification": 2, + "vector": 2, + "greenkeeper": 2, + "tdd": 2, + "raster": 2, + "mishap": 2, + "sketch": 2, + "released": 2, + "font": 2, + "deployment": 2, + "e-nightwatch": 2, + "engine": 2, + "vulns": 2, + "syntax": 2, + "deliverable": 2, + "manual": 2, + "osx": 2, + "axe": 2, + "sendgrid": 2, + "operating": 2, + "system": 2, + "advance": 2, + "workflow": 2, + "safety": 2, + "phonetic": 2, + "concept": 2, + "lerna": 2, + "readme": 2, + "music": 2, + "failing": 2, + "customer": 2, + "extension": 2, + "lint": 2, + "optimizing": 2, + "compiler": 2, + "css-select": 2, + "figma": 2, + "finance": 2, + "closed": 2, + "due": 2, + "inactivity": 2, + "jira": 2, + "survey": 2, + "behavioral": 2, + "multi": 2, + "module": 2, + "mixing": 2, + "backlog": 2, + "update": 2, + "present": 2, + "modules": 2, + "lang-julia": 2, + "vuln": 2, + "demo": 2, + "corporate": 2, + "spam": 2, + "handshakes": 2, + "platform": 2, + "wave": 2, + "ansible": 2, + "lang-convert": 2, + "gdpr": 2, + "classes": 2, + "websocket": 2, + "speach": 2, + "b": 2, + "chef": 2, + "patreon": 2, + "reviewed-changes-requested": 2, + "youtube": 2, + "(legacy)": 2, + "mentorship": 2, + "typescript": 2, + "didactic": 2, + "story": 2, + "academia": 2 + }, + "negative_weights": { + "funding": 0.012345679012345684, + "finder": 0.03703703703703705, + "bias": 4.67721135355533, + "call": 0.11111111111111113, + "grant": 0.33333333333333337, + "fund": 0.03703703703703705, + "investigation": 0.11111111111111113, + "financial": 0.03703703703703705, + "backing": 0.08333333333333336, + "collection": 0.6666666666666667, + "research": 1, + "backer": 0.08333333333333336, + "finding": 0.03703703703703705, + "component": 1.875, + "developer": 1.875, + "tools": 1.875, + "inspiration": 2.25, + "business": 2, + "process": 2, + "sustain": 2.25, + "confirmed": 2.25, + "type": 1.875, + "question": 1.875, + "grey": 1.875, + "cmty": 1, + "need-info": 2.25, + "sustenance": 2.25, + "good": 1.875, + "first": 1.875, + "issue": 1.875, + "kind": 2, + "discussion": 2, + "palette": 2.25, + "azure": 2, + "ad": 2, + "data": 2, + "external-bugs": 2.25, + "deal": 1, + "hacking": 1, + "video": 1, + "test": 1, + "utils": 1, + "hsv": 1, + "thesis": 1, + "pentesting": 1, + "design": 1, + "website": 2, + "copy": 2, + "bug": 1, + "guide": 1, + "next": 2, + "meetup!": 2, + "feat": 1.875, + "ui": 1, + "mastering": 1, + "steps": 1, + "abandoned": 1, + "badges": 1, + "sponsor": 1, + "assess": 1, + "pr": 1.7999999999999998, + "merged": 1, + "vlog": 1, + "acceptance": 1, + "testing": 1.7999999999999998, + "hot": 1, + "tv": 1, + "soundtrack": 1, + "(category)": 1, + "ci": 1, + "cd": 1, + "multi-cloud": 1, + "difficulty": 1, + "hard": 1, + "documentation": 1, + "book": 1, + "diary": 1, + "standard": 1, + "colour": 1, + "computer": 1, + "desktop": 1, + "flaw": 1, + "reliability": 1, + "cli-service": 1.875, + "build": 1.875, + "blocked": 1, + "maintenance": 1, + "construction": 1, + "ios": 1, + "planned": 1, + "feature": 1.75, + "feature-request": 1, + "rfc": 1, + "image": 1, + "stock": 1, + "reminder": 1, + "status": 1.7999999999999998, + "review": 1, + "needed": 1, + "in": 1, + "lang-crystal": 1, + "breaking": 1, + "change": 1, + "phone": 1, + "refactor": 1, + "monologue": 1, + "reviewed-approved": 1, + "new": 1.875, + "best": 1.875, + "practice": 1.875, + "lecture": 1, + "browser": 1, + "aws": 1, + "polish": 1.7999999999999998, + "nail": 1.7999999999999998, + "care": 1.7999999999999998, + "article": 1, + "peer-review": 1, + "writer-needed": 1, + "eventstorming": 1, + "freemasonry": 1, + "icons": 1, + "lean": 1, + "cannot": 1, + "reproduce": 1, + "paas": 1, + "net": 1, + "core": 1, + "wiretap": 1, + "unit-jest": 1, + "instruction": 1, + "infrastructure": 1, + "rgb": 1, + "ideas": 1, + "target": 1, + "windows": 1, + "iconography": 1, + "promote": 1, + "template": 1, + "support": 1, + "first-timers-only": 1, + "java": 1, + "cdn": 1, + "dependency": 1, + "ready": 1.7999999999999998, + "for": 1.7999999999999998, + "deploy": 1.7999999999999998, + "troubleshooting": 1, + "spec": 1, + "bigint": 1, + "async": 1, + "generators": 1, + "proposal": 1, + "e": 1, + "approachability": 1, + "investment": 1, + "conflicts": 1, + "optimisation": 1, + "kotlin": 1, + "release": 1, + "unconfirmed": 1, + "duplicate": 1, + "repeat": 1, + "devops": 1, + "defend": 1, + "blogging": 1, + "friendliness": 1, + "i": 1, + "n": 1, + "cla": 1, + "signed": 1, + "icebox": 1, + "meetup": 1, + "examination": 1, + "mobile": 1, + "device": 1, + "api": 1, + "decorators": 1, + "addon": 1, + "cracking": 1, + "sparkles": 1, + "enhancement": 1, + "hooks": 1, + "improved": 1, + "error": 1, + "handling": 1, + "needs": 1, + "repro": 1, + "upkeep": 1, + "reactis": 1, + "to": 1, + "be": 1, + "sample": 1, + "white": 1.7999999999999998, + "check": 1.7999999999999998, + "mark": 1.7999999999999998, + "external": 1, + "hacktoberfest": 1, + "lang-dart": 1, + "framework": 1, + "icon": 1, + "needs-research": 1, + "cybersec": 1, + "biz": 1, + "internationalization": 1, + "utility-lib": 1, + "qa": 1, + "do": 1, + "not": 1, + "merge": 1, + "hacked": 1, + "how-to": 1, + "beginner-friendly": 1, + "trello": 1, + "os": 1, + "sound": 1, + "docs": 1, + "improvement": 1, + "heavy": 1.75, + "plus": 1.75, + "sign": 1.75, + "request": 1.75, + "glitch": 1, + "cx": 1, + "dependencies": 1, + "inquiry": 1, + "deno": 1, + "area": 1, + "crash": 1, + "camera": 1, + "wip": 1, + "configure": 1, + "dom": 1, + "programming": 1, + "font-face": 1, + "rgba": 1, + "parser-specific": 1, + "wikipedia": 1, + "shell": 1, + "contributions": 1, + "tryout": 1, + "thought": 1, + "analysis": 1, + "contenu": 1, + "cli": 1, + "basecamp": 1, + "literature": 1, + "socket": 1, + "io": 1, + "client": 1, + "fiscal": 1, + "user": 1, + "debug": 1, + "information": 1, + "frontend": 1, + "upstream": 1, + "raising": 1, + "hand": 1, + "style": 1, + "clean": 1, + "up": 1, + "motif": 1, + "event": 1, + "help": 1, + "wanted": 1, + "priority": 1, + "medium": 1, + "ruby": 1, + "es": 1, + "warrant": 1, + "cancelled": 1, + "plan": 1, + "hackathon": 1, + "beginner": 1, + "typography": 1, + "counsel": 1, + "recording": 1, + "crowdin": 1, + "eslint": 1, + "rules": 1, + "easy": 1, + "repare": 1, + "conference": 1, + "great": 1, + "insight": 1, + "phd": 1, + "orange": 1, + "invalid": 1, + "x": 1, + "changelog": 1, + "e-cypress": 1, + "lipstick": 1, + "-": 1, + "backdoor": 1, + "approved": 1, + "talk": 1, + "subtitle": 1, + "todo": 1, + "spiral": 1, + "notepad": 1, + "interface": 1, + "critical": 1, + "privacy": 1, + "tests": 1, + "boom": 1, + "web": 1, + "app": 1, + "television": 1, + "uat": 1, + "exploit": 1, + "requires": 1, + "travis-yml": 1, + "node": 1, + "dev": 1, + "experience": 1, + "fix": 1, + "backend": 1, + "cleaning": 1, + "internal": 1, + "house": 1, + "technical": 1, + "debt": 1, + "weekly-digest": 1, + "shallow": 1, + "renderer": 1, + "commerce": 1, + "ie": 1, + "hsl": 1, + "left": 1, + "out": 1, + "welcome": 1, + "opinions": 1, + "documents": 1, + "legacy": 1, + "grafana": 1, + "react": 1, + "native": 1, + "lang-go": 1, + "tutorial": 1, + "plugin": 1, + "logo": 1, + "refactoring": 1, + "safari": 1, + "saltstack": 1, + "available": 1, + "server": 1, + "rendering": 1, + "htmlfile": 1, + "theorem": 1, + "social": 1, + "internationalisation": 1, + "definition": 1, + "enquire": 1, + "packaging": 1, + "lang-r": 1, + "regression": 1, + "container": 1, + "opencollective": 1, + "report": 1, + "performance": 1, + "clickup": 1, + "installer": 1, + "statement": 1, + "gcp": 1, + "opinion": 1, + "accepted": 1, + "html": 1, + "a": 1, + "y": 1, + "general": 1, + "js": 1, + "unit": 1, + "speak": 1, + "brainstorming": 1, + "backup": 1, + "language": 1, + "bugfix": 1, + "k": 1, + "s": 1, + "scrum": 1, + "paper": 1, + "library": 1, + "stale": 1, + "optimization": 1, + "show": 1, + "apple": 1, + "low": 1, + "functions": 1, + "gnu": 1, + "linux": 1, + "focus": 1, + "groups": 1, + "dependency-update": 1, + "related": 1, + "bootstrap": 1, + "usability": 1, + "*nix": 1, + "externs": 1, + "critique": 1, + "prince": 1, + "demonstration": 1, + "⬆️": 1, + "memo": 1, + "revisitinfuture": 1, + "tips": 1, + "reference": 1, + "high": 1, + "bug-report": 1, + "babel": 1, + "flashsocket": 1, + "unix": 1, + "npm": 1, + "site": 1, + "chore": 1, + "adapter": 1, + "slides": 1, + "query": 1, + "chat": 1, + "major": 1, + "alpha": 1, + "lock": 1, + "security": 1, + "newsletter": 1, + "verification": 1, + "color": 1, + "containerd": 1, + "doughnut": 1, + "sentry": 1, + "dissertation": 1, + "mentoring": 1, + "confer": 1, + "utilities": 1, + "infosec": 1, + "vulnerability": 1, + "has": 1, + "code": 1, + "teaching": 1, + "protection": 1, + "robot": 1, + "android": 1, + "webaim": 1, + "wontfix": 1, + "triage": 1, + "contribution": 1, + "macos": 1, + "assertion": 1, + "blog": 1, + "progress": 1, + "future": 1, + "architecture": 1, + "enhancements": 1, + "pmi": 1, + "promotion": 1, + "validation": 1, + "art": 1, + "film": 1, + "bitbucket": 1, + "cloud": 1, + "labour": 1, + "python": 1, + "suggestion": 1, + "crypto": 1, + "attitudinal": 1, + "electron": 1, + "trial": 1, + "example": 1, + "resolution": 1, + "redirect": 1, + "assessment": 1, + "monitor": 1, + "css": 1, + "hack": 1, + "translation": 1, + "opportunity": 1, + "vultr": 1, + "kubernetes": 1, + "wiki": 1, + "parser": 1, + "pwa": 1, + "iphone": 1, + "program": 1, + "digital": 1, + "ocean": 1, + "safeguard": 1, + "iac": 1, + "javascript": 1, + "integration": 1, + "glo": 1, + "porting": 1, + "on": 1, + "hold": 1, + "evaluation": 1, + "go": 1, + "must-triage": 1, + "gradle": 1, + "accessibility": 1, + "work": 1, + "other": 1, + "wrangling": 1, + "sast": 1, + "tech-debt": 1, + "entry": 1, + "fault": 1, + "problem": 1, + "brand": 1, + "internal-issue-created": 1, + "pmp": 1, + "bdd": 1, + "checkpoint": 1, + "csharp": 1, + "unreviewed": 1, + "idea": 1, + "feedback": 1, + "requested": 1, + "wcag": 1, + "bugs": 1, + "mentor": 1, + "economics": 1, + "lib": 1, + "puppet": 1, + "speech": 1, + "balloon": 1, + "c": 1, + "c++": 1, + "bulb": 1, + "prometheus": 1, + "rocket": 1, + "discuss": 1, + "doc": 1, + "blogs": 1, + "unit-mocha": 1, + "enterprise": 1, + "scheduler": 1, + "class": 1, + "fields": 1, + "commercial": 1, + "infra": 1, + "terraform": 1, + "figure": 1, + "layout": 1, + "specification": 1, + "vector": 1, + "greenkeeper": 1, + "tdd": 1, + "raster": 1, + "mishap": 1, + "sketch": 1, + "released": 1, + "font": 1, + "deployment": 1, + "e-nightwatch": 1, + "engine": 1, + "vulns": 1, + "syntax": 1, + "deliverable": 1, + "manual": 1, + "osx": 1, + "axe": 1, + "sendgrid": 1, + "operating": 1, + "system": 1, + "advance": 1, + "workflow": 1, + "safety": 1, + "phonetic": 1, + "concept": 1, + "lerna": 1, + "readme": 1, + "music": 1, + "failing": 1, + "customer": 1, + "extension": 1, + "lint": 1, + "optimizing": 1, + "compiler": 1, + "css-select": 1, + "figma": 1, + "finance": 1, + "closed": 1, + "due": 1, + "inactivity": 1, + "jira": 1, + "survey": 1, + "behavioral": 1, + "multi": 1, + "module": 1, + "mixing": 1, + "backlog": 1, + "update": 1, + "present": 1, + "modules": 1, + "lang-julia": 1, + "vuln": 1, + "demo": 1, + "corporate": 1, + "spam": 1, + "handshakes": 1, + "platform": 1, + "wave": 1, + "ansible": 1, + "lang-convert": 1, + "gdpr": 1, + "classes": 1, + "websocket": 1, + "speach": 1, + "b": 1, + "chef": 1, + "patreon": 1, + "reviewed-changes-requested": 1, + "youtube": 1, + "(legacy)": 1, + "mentorship": 1, + "typescript": 1, + "didactic": 1, + "story": 1, + "academia": 1 + }, + "positive_weights_sum": {}, + "negative_weights_sum": {} + }, + "blog": { + "positive_weights": { + "diary": 10.125, + "bias": 1.057070646311332e-7, + "blogging": 10.125, + "weekly-digest": 10.125, + "blog": 10.125, + "component": 0.75, + "developer": 0.75, + "tools": 0.75, + "inspiration": 0.5, + "business": 0.6666666666666667, + "process": 0.6666666666666667, + "sustain": 0.5, + "confirmed": 0.5, + "type": 0.75, + "question": 0.75, + "grey": 0.75, + "cmty": 2, + "need-info": 0.5, + "sustenance": 0.5, + "good": 0.75, + "first": 0.75, + "issue": 0.75, + "kind": 0.6666666666666667, + "discussion": 0.6666666666666667, + "palette": 0.5, + "azure": 0.6666666666666667, + "ad": 0.6666666666666667, + "data": 0.6666666666666667, + "collection": 0.6666666666666667, + "external-bugs": 0.5, + "deal": 2, + "hacking": 2, + "video": 2, + "test": 0.8, + "utils": 2, + "hsv": 2, + "thesis": 2, + "pentesting": 2, + "design": 2, + "website": 0.6666666666666667, + "copy": 0.6666666666666667, + "bug": 2, + "guide": 2, + "next": 2, + "meetup!": 2, + "feat": 0.75, + "ui": 2, + "mastering": 2, + "steps": 2, + "abandoned": 2, + "badges": 2, + "sponsor": 2, + "assess": 2, + "pr": 0.32000000000000006, + "merged": 2, + "vlog": 2, + "acceptance": 2, + "testing": 2, + "hot": 2, + "tv": 2, + "soundtrack": 2, + "(category)": 2, + "ci": 2, + "cd": 2, + "multi-cloud": 2, + "funding": 2, + "finder": 2, + "difficulty": 2, + "hard": 2, + "documentation": 2, + "book": 2, + "standard": 2, + "colour": 2, + "computer": 2, + "desktop": 2, + "flaw": 2, + "reliability": 2, + "cli-service": 0.75, + "build": 0.75, + "blocked": 2, + "maintenance": 2, + "construction": 2, + "ios": 2, + "planned": 2, + "feature": 0.8, + "feature-request": 2, + "rfc": 2, + "image": 2, + "stock": 2, + "reminder": 2, + "status": 0.8, + "review": 2, + "needed": 2, + "in": 2, + "lang-crystal": 2, + "breaking": 2, + "change": 2, + "phone": 2, + "refactor": 2, + "monologue": 2, + "reviewed-approved": 2, + "new": 0.8, + "best": 2, + "practice": 2, + "lecture": 2, + "backing": 2, + "browser": 2, + "aws": 2, + "polish": 0.8, + "nail": 0.8, + "care": 0.8, + "article": 2, + "peer-review": 2, + "writer-needed": 2, + "eventstorming": 2, + "freemasonry": 2, + "icons": 2, + "lean": 2, + "cannot": 2, + "reproduce": 2, + "paas": 2, + "net": 2, + "core": 2, + "wiretap": 2, + "unit-jest": 2, + "instruction": 2, + "infrastructure": 2, + "rgb": 2, + "ideas": 2, + "target": 2, + "windows": 2, + "call": 2, + "iconography": 2, + "promote": 2, + "template": 2, + "support": 2, + "first-timers-only": 2, + "java": 2, + "cdn": 2, + "dependency": 2, + "ready": 0.8, + "for": 0.8, + "deploy": 0.8, + "troubleshooting": 2, + "spec": 0.75, + "bigint": 2, + "async": 2, + "generators": 2, + "proposal": 2, + "e": 2, + "approachability": 2, + "investment": 2, + "conflicts": 2, + "optimisation": 2, + "kotlin": 2, + "release": 2, + "unconfirmed": 2, + "duplicate": 2, + "repeat": 2, + "devops": 2, + "defend": 2, + "friendliness": 2, + "i": 2, + "n": 2, + "cla": 2, + "signed": 2, + "icebox": 2, + "meetup": 2, + "examination": 2, + "mobile": 2, + "device": 2, + "api": 2, + "decorators": 2, + "addon": 2, + "cracking": 2, + "sparkles": 2, + "enhancement": 2, + "hooks": 2, + "improved": 2, + "error": 2, + "handling": 2, + "needs": 0.8, + "repro": 2, + "upkeep": 2, + "reactis": 2, + "to": 2, + "be": 2, + "sample": 2, + "white": 2, + "check": 2, + "mark": 2, + "external": 2, + "hacktoberfest": 2, + "lang-dart": 2, + "framework": 2, + "icon": 2, + "grant": 2, + "needs-research": 2, + "cybersec": 2, + "biz": 2, + "internationalization": 2, + "utility-lib": 2, + "qa": 2, + "do": 2, + "not": 2, + "merge": 2, + "hacked": 2, + "how-to": 2, + "beginner-friendly": 2, + "trello": 2, + "os": 2, + "sound": 2, + "docs": 2, + "improvement": 2, + "heavy": 2, + "plus": 2, + "sign": 2, + "request": 2, + "glitch": 2, + "cx": 2, + "dependencies": 2, + "inquiry": 2, + "deno": 2, + "area": 2, + "crash": 2, + "camera": 2, + "wip": 2, + "configure": 2, + "dom": 2, + "programming": 2, + "font-face": 2, + "rgba": 2, + "parser-specific": 2, + "wikipedia": 2, + "shell": 2, + "contributions": 2, + "tryout": 2, + "thought": 2, + "analysis": 2, + "contenu": 2, + "cli": 2, + "fund": 2, + "investigation": 2, + "basecamp": 2, + "literature": 2, + "socket": 2, + "io": 2, + "client": 2, + "fiscal": 2, + "user": 2, + "debug": 2, + "information": 2, + "frontend": 2, + "upstream": 2, + "raising": 2, + "hand": 2, + "style": 2, + "clean": 2, + "up": 2, + "motif": 2, + "event": 2, + "help": 2, + "wanted": 2, + "priority": 2, + "medium": 2, + "financial": 2, + "ruby": 2, + "es": 2, + "warrant": 2, + "cancelled": 2, + "plan": 2, + "hackathon": 2, + "beginner": 2, + "typography": 2, + "counsel": 2, + "recording": 2, + "crowdin": 2, + "eslint": 2, + "rules": 2, + "easy": 2, + "repare": 2, + "conference": 2, + "great": 2, + "insight": 2, + "phd": 2, + "orange": 2, + "invalid": 2, + "x": 2, + "changelog": 2, + "e-cypress": 2, + "lipstick": 2, + "-": 2, + "backdoor": 2, + "approved": 2, + "talk": 2, + "subtitle": 2, + "research": 2, + "todo": 2, + "spiral": 2, + "notepad": 2, + "interface": 2, + "critical": 2, + "privacy": 2, + "tests": 2, + "boom": 2, + "web": 2, + "app": 2, + "television": 2, + "uat": 2, + "backer": 2, + "exploit": 2, + "requires": 2, + "travis-yml": 2, + "node": 2, + "dev": 2, + "experience": 2, + "fix": 2, + "backend": 2, + "cleaning": 2, + "internal": 2, + "house": 2, + "technical": 2, + "debt": 2, + "shallow": 2, + "renderer": 2, + "commerce": 2, + "ie": 2, + "hsl": 2, + "left": 2, + "out": 2, + "welcome": 2, + "opinions": 2, + "documents": 2, + "legacy": 2, + "grafana": 2, + "react": 2, + "native": 2, + "lang-go": 2, + "tutorial": 2, + "plugin": 2, + "logo": 2, + "refactoring": 2, + "safari": 2, + "saltstack": 2, + "available": 2, + "server": 2, + "rendering": 2, + "htmlfile": 2, + "theorem": 2, + "social": 2, + "internationalisation": 2, + "definition": 2, + "enquire": 2, + "packaging": 2, + "lang-r": 2, + "regression": 2, + "container": 2, + "opencollective": 2, + "report": 2, + "performance": 2, + "clickup": 2, + "installer": 2, + "statement": 2, + "gcp": 2, + "opinion": 2, + "accepted": 2, + "html": 2, + "a": 0.8, + "y": 2, + "general": 2, + "js": 2, + "unit": 2, + "speak": 2, + "brainstorming": 2, + "backup": 2, + "language": 2, + "bugfix": 2, + "k": 2, + "s": 2, + "scrum": 2, + "paper": 2, + "library": 2, + "stale": 2, + "optimization": 2, + "show": 2, + "apple": 2, + "low": 2, + "functions": 2, + "gnu": 2, + "linux": 2, + "focus": 2, + "groups": 2, + "dependency-update": 2, + "related": 2, + "bootstrap": 2, + "usability": 2, + "*nix": 2, + "externs": 2, + "critique": 2, + "prince": 2, + "demonstration": 2, + "⬆️": 2, + "memo": 2, + "revisitinfuture": 2, + "tips": 2, + "reference": 2, + "high": 2, + "bug-report": 2, + "babel": 2, + "flashsocket": 2, + "unix": 2, + "npm": 2, + "site": 2, + "chore": 2, + "adapter": 2, + "slides": 2, + "query": 2, + "chat": 2, + "major": 2, + "alpha": 2, + "lock": 2, + "security": 2, + "newsletter": 2, + "verification": 2, + "color": 2, + "containerd": 2, + "doughnut": 2, + "sentry": 2, + "dissertation": 2, + "mentoring": 2, + "confer": 2, + "utilities": 2, + "infosec": 2, + "vulnerability": 2, + "has": 2, + "code": 2, + "teaching": 2, + "protection": 2, + "robot": 2, + "android": 2, + "webaim": 2, + "wontfix": 2, + "triage": 2, + "contribution": 2, + "macos": 2, + "assertion": 2, + "progress": 2, + "future": 2, + "architecture": 2, + "enhancements": 2, + "pmi": 2, + "promotion": 2, + "validation": 2, + "art": 2, + "film": 2, + "bitbucket": 2, + "cloud": 2, + "labour": 2, + "python": 2, + "suggestion": 2, + "crypto": 2, + "attitudinal": 2, + "electron": 2, + "trial": 2, + "example": 2, + "resolution": 2, + "redirect": 2, + "assessment": 2, + "monitor": 2, + "css": 2, + "hack": 2, + "translation": 2, + "opportunity": 2, + "vultr": 2, + "kubernetes": 2, + "wiki": 2, + "parser": 2, + "pwa": 2, + "iphone": 2, + "program": 2, + "finding": 2, + "digital": 2, + "ocean": 2, + "safeguard": 2, + "iac": 2, + "javascript": 2, + "integration": 2, + "glo": 2, + "porting": 2, + "on": 2, + "hold": 2, + "evaluation": 2, + "go": 2, + "must-triage": 2, + "gradle": 2, + "accessibility": 2, + "work": 2, + "other": 2, + "wrangling": 2, + "sast": 2, + "tech-debt": 2, + "entry": 2, + "fault": 2, + "problem": 2, + "brand": 2, + "internal-issue-created": 2, + "pmp": 2, + "bdd": 2, + "checkpoint": 2, + "csharp": 2, + "unreviewed": 2, + "idea": 2, + "feedback": 2, + "requested": 2, + "wcag": 2, + "bugs": 2, + "mentor": 2, + "economics": 2, + "lib": 2, + "puppet": 2, + "speech": 2, + "balloon": 2, + "blogs": 10.125, + "c": 0.6666666666666667, + "c++": 0.6666666666666667, + "bulb": 2, + "prometheus": 2, + "rocket": 0.8, + "discuss": 2, + "doc": 2, + "unit-mocha": 2, + "enterprise": 2, + "scheduler": 2, + "class": 0.75, + "fields": 0.75, + "commercial": 2, + "infra": 2, + "terraform": 2, + "figure": 2, + "layout": 2, + "specification": 2, + "vector": 2, + "greenkeeper": 2, + "tdd": 2, + "raster": 2, + "mishap": 2, + "sketch": 2, + "released": 2, + "font": 2, + "deployment": 2, + "e-nightwatch": 2, + "engine": 2, + "vulns": 2, + "syntax": 2, + "deliverable": 2, + "manual": 2, + "osx": 2, + "axe": 2, + "sendgrid": 2, + "operating": 2, + "system": 2, + "advance": 2, + "workflow": 2, + "safety": 2, + "phonetic": 2, + "concept": 2, + "lerna": 2, + "readme": 2, + "music": 2, + "failing": 0.8, + "customer": 2, + "extension": 2, + "lint": 2, + "optimizing": 2, + "compiler": 2, + "css-select": 2, + "figma": 2, + "finance": 2, + "closed": 2, + "due": 2, + "inactivity": 2, + "jira": 2, + "survey": 2, + "behavioral": 2, + "multi": 2, + "module": 2, + "mixing": 2, + "backlog": 2, + "update": 2, + "present": 2, + "modules": 2, + "lang-julia": 2, + "vuln": 2, + "demo": 2, + "corporate": 2, + "spam": 2, + "handshakes": 2, + "platform": 2, + "wave": 2, + "ansible": 2, + "lang-convert": 2, + "gdpr": 2, + "classes": 2, + "websocket": 2, + "speach": 2, + "b": 2, + "chef": 2, + "patreon": 2, + "reviewed-changes-requested": 2, + "youtube": 2, + "(legacy)": 2, + "mentorship": 2, + "typescript": 2, + "didactic": 2, + "story": 2, + "academia": 2 + }, + "negative_weights": { + "diary": 0.0625, + "bias": 4.3346503190304, + "blogging": 0.0625, + "weekly-digest": 0.0625, + "blog": 0.0625, + "component": 1.875, + "developer": 1.875, + "tools": 1.875, + "inspiration": 2.25, + "business": 2, + "process": 2, + "sustain": 2.25, + "confirmed": 2.25, + "type": 1.875, + "question": 1.875, + "grey": 1.875, + "cmty": 1, + "need-info": 2.25, + "sustenance": 2.25, + "good": 1.875, + "first": 1.875, + "issue": 1.875, + "kind": 2, + "discussion": 2, + "palette": 2.25, + "azure": 2, + "ad": 2, + "data": 2, + "collection": 2, + "external-bugs": 2.25, + "deal": 1, + "hacking": 1, + "video": 1, + "test": 1.7999999999999998, + "utils": 1, + "hsv": 1, + "thesis": 1, + "pentesting": 1, + "design": 1, + "website": 2, + "copy": 2, + "bug": 1, + "guide": 1, + "next": 1, + "meetup!": 1, + "feat": 1.875, + "ui": 1, + "mastering": 1, + "steps": 1, + "abandoned": 1, + "badges": 1, + "sponsor": 1, + "assess": 1, + "pr": 3.2399999999999993, + "merged": 1, + "vlog": 1, + "acceptance": 1, + "testing": 1, + "hot": 1, + "tv": 1, + "soundtrack": 1, + "(category)": 1, + "ci": 1, + "cd": 1, + "multi-cloud": 1, + "funding": 1, + "finder": 1, + "difficulty": 1, + "hard": 1, + "documentation": 1, + "book": 1, + "standard": 1, + "colour": 1, + "computer": 1, + "desktop": 1, + "flaw": 1, + "reliability": 1, + "cli-service": 1.875, + "build": 1.875, + "blocked": 1, + "maintenance": 1, + "construction": 1, + "ios": 1, + "planned": 1, + "feature": 1.7999999999999998, + "feature-request": 1, + "rfc": 1, + "image": 1, + "stock": 1, + "reminder": 1, + "status": 1.7999999999999998, + "review": 1, + "needed": 1, + "in": 1, + "lang-crystal": 1, + "breaking": 1, + "change": 1, + "phone": 1, + "refactor": 1, + "monologue": 1, + "reviewed-approved": 1, + "new": 1.7999999999999998, + "best": 1, + "practice": 1, + "lecture": 1, + "backing": 1, + "browser": 1, + "aws": 1, + "polish": 1.7999999999999998, + "nail": 1.7999999999999998, + "care": 1.7999999999999998, + "article": 1, + "peer-review": 1, + "writer-needed": 1, + "eventstorming": 1, + "freemasonry": 1, + "icons": 1, + "lean": 1, + "cannot": 1, + "reproduce": 1, + "paas": 1, + "net": 1, + "core": 1, + "wiretap": 1, + "unit-jest": 1, + "instruction": 1, + "infrastructure": 1, + "rgb": 1, + "ideas": 1, + "target": 1, + "windows": 1, + "call": 1, + "iconography": 1, + "promote": 1, + "template": 1, + "support": 1, + "first-timers-only": 1, + "java": 1, + "cdn": 1, + "dependency": 1, + "ready": 1.7999999999999998, + "for": 1.7999999999999998, + "deploy": 1.7999999999999998, + "troubleshooting": 1, + "spec": 1.875, + "bigint": 1, + "async": 1, + "generators": 1, + "proposal": 1, + "e": 1, + "approachability": 1, + "investment": 1, + "conflicts": 1, + "optimisation": 1, + "kotlin": 1, + "release": 1, + "unconfirmed": 1, + "duplicate": 1, + "repeat": 1, + "devops": 1, + "defend": 1, + "friendliness": 1, + "i": 1, + "n": 1, + "cla": 1, + "signed": 1, + "icebox": 1, + "meetup": 1, + "examination": 1, + "mobile": 1, + "device": 1, + "api": 1, + "decorators": 1, + "addon": 1, + "cracking": 1, + "sparkles": 1, + "enhancement": 1, + "hooks": 1, + "improved": 1, + "error": 1, + "handling": 1, + "needs": 1.7999999999999998, + "repro": 1, + "upkeep": 1, + "reactis": 1, + "to": 1, + "be": 1, + "sample": 1, + "white": 1, + "check": 1, + "mark": 1, + "external": 1, + "hacktoberfest": 1, + "lang-dart": 1, + "framework": 1, + "icon": 1, + "grant": 1, + "needs-research": 1, + "cybersec": 1, + "biz": 1, + "internationalization": 1, + "utility-lib": 1, + "qa": 1, + "do": 1, + "not": 1, + "merge": 1, + "hacked": 1, + "how-to": 1, + "beginner-friendly": 1, + "trello": 1, + "os": 1, + "sound": 1, + "docs": 1, + "improvement": 1, + "heavy": 1, + "plus": 1, + "sign": 1, + "request": 1, + "glitch": 1, + "cx": 1, + "dependencies": 1, + "inquiry": 1, + "deno": 1, + "area": 1, + "crash": 1, + "camera": 1, + "wip": 1, + "configure": 1, + "dom": 1, + "programming": 1, + "font-face": 1, + "rgba": 1, + "parser-specific": 1, + "wikipedia": 1, + "shell": 1, + "contributions": 1, + "tryout": 1, + "thought": 1, + "analysis": 1, + "contenu": 1, + "cli": 1, + "fund": 1, + "investigation": 1, + "basecamp": 1, + "literature": 1, + "socket": 1, + "io": 1, + "client": 1, + "fiscal": 1, + "user": 1, + "debug": 1, + "information": 1, + "frontend": 1, + "upstream": 1, + "raising": 1, + "hand": 1, + "style": 1, + "clean": 1, + "up": 1, + "motif": 1, + "event": 1, + "help": 1, + "wanted": 1, + "priority": 1, + "medium": 1, + "financial": 1, + "ruby": 1, + "es": 1, + "warrant": 1, + "cancelled": 1, + "plan": 1, + "hackathon": 1, + "beginner": 1, + "typography": 1, + "counsel": 1, + "recording": 1, + "crowdin": 1, + "eslint": 1, + "rules": 1, + "easy": 1, + "repare": 1, + "conference": 1, + "great": 1, + "insight": 1, + "phd": 1, + "orange": 1, + "invalid": 1, + "x": 1, + "changelog": 1, + "e-cypress": 1, + "lipstick": 1, + "-": 1, + "backdoor": 1, + "approved": 1, + "talk": 1, + "subtitle": 1, + "research": 1, + "todo": 1, + "spiral": 1, + "notepad": 1, + "interface": 1, + "critical": 1, + "privacy": 1, + "tests": 1, + "boom": 1, + "web": 1, + "app": 1, + "television": 1, + "uat": 1, + "backer": 1, + "exploit": 1, + "requires": 1, + "travis-yml": 1, + "node": 1, + "dev": 1, + "experience": 1, + "fix": 1, + "backend": 1, + "cleaning": 1, + "internal": 1, + "house": 1, + "technical": 1, + "debt": 1, + "shallow": 1, + "renderer": 1, + "commerce": 1, + "ie": 1, + "hsl": 1, + "left": 1, + "out": 1, + "welcome": 1, + "opinions": 1, + "documents": 1, + "legacy": 1, + "grafana": 1, + "react": 1, + "native": 1, + "lang-go": 1, + "tutorial": 1, + "plugin": 1, + "logo": 1, + "refactoring": 1, + "safari": 1, + "saltstack": 1, + "available": 1, + "server": 1, + "rendering": 1, + "htmlfile": 1, + "theorem": 1, + "social": 1, + "internationalisation": 1, + "definition": 1, + "enquire": 1, + "packaging": 1, + "lang-r": 1, + "regression": 1, + "container": 1, + "opencollective": 1, + "report": 1, + "performance": 1, + "clickup": 1, + "installer": 1, + "statement": 1, + "gcp": 1, + "opinion": 1, + "accepted": 1, + "html": 1, + "a": 1.7999999999999998, + "y": 1, + "general": 1, + "js": 1, + "unit": 1, + "speak": 1, + "brainstorming": 1, + "backup": 1, + "language": 1, + "bugfix": 1, + "k": 1, + "s": 1, + "scrum": 1, + "paper": 1, + "library": 1, + "stale": 1, + "optimization": 1, + "show": 1, + "apple": 1, + "low": 1, + "functions": 1, + "gnu": 1, + "linux": 1, + "focus": 1, + "groups": 1, + "dependency-update": 1, + "related": 1, + "bootstrap": 1, + "usability": 1, + "*nix": 1, + "externs": 1, + "critique": 1, + "prince": 1, + "demonstration": 1, + "⬆️": 1, + "memo": 1, + "revisitinfuture": 1, + "tips": 1, + "reference": 1, + "high": 1, + "bug-report": 1, + "babel": 1, + "flashsocket": 1, + "unix": 1, + "npm": 1, + "site": 1, + "chore": 1, + "adapter": 1, + "slides": 1, + "query": 1, + "chat": 1, + "major": 1, + "alpha": 1, + "lock": 1, + "security": 1, + "newsletter": 1, + "verification": 1, + "color": 1, + "containerd": 1, + "doughnut": 1, + "sentry": 1, + "dissertation": 1, + "mentoring": 1, + "confer": 1, + "utilities": 1, + "infosec": 1, + "vulnerability": 1, + "has": 1, + "code": 1, + "teaching": 1, + "protection": 1, + "robot": 1, + "android": 1, + "webaim": 1, + "wontfix": 1, + "triage": 1, + "contribution": 1, + "macos": 1, + "assertion": 1, + "progress": 1, + "future": 1, + "architecture": 1, + "enhancements": 1, + "pmi": 1, + "promotion": 1, + "validation": 1, + "art": 1, + "film": 1, + "bitbucket": 1, + "cloud": 1, + "labour": 1, + "python": 1, + "suggestion": 1, + "crypto": 1, + "attitudinal": 1, + "electron": 1, + "trial": 1, + "example": 1, + "resolution": 1, + "redirect": 1, + "assessment": 1, + "monitor": 1, + "css": 1, + "hack": 1, + "translation": 1, + "opportunity": 1, + "vultr": 1, + "kubernetes": 1, + "wiki": 1, + "parser": 1, + "pwa": 1, + "iphone": 1, + "program": 1, + "finding": 1, + "digital": 1, + "ocean": 1, + "safeguard": 1, + "iac": 1, + "javascript": 1, + "integration": 1, + "glo": 1, + "porting": 1, + "on": 1, + "hold": 1, + "evaluation": 1, + "go": 1, + "must-triage": 1, + "gradle": 1, + "accessibility": 1, + "work": 1, + "other": 1, + "wrangling": 1, + "sast": 1, + "tech-debt": 1, + "entry": 1, + "fault": 1, + "problem": 1, + "brand": 1, + "internal-issue-created": 1, + "pmp": 1, + "bdd": 1, + "checkpoint": 1, + "csharp": 1, + "unreviewed": 1, + "idea": 1, + "feedback": 1, + "requested": 1, + "wcag": 1, + "bugs": 1, + "mentor": 1, + "economics": 1, + "lib": 1, + "puppet": 1, + "speech": 1, + "balloon": 1, + "blogs": 0.0625, + "c": 2, + "c++": 2, + "bulb": 1, + "prometheus": 1, + "rocket": 1.7999999999999998, + "discuss": 1, + "doc": 1, + "unit-mocha": 1, + "enterprise": 1, + "scheduler": 1, + "class": 1.875, + "fields": 1.875, + "commercial": 1, + "infra": 1, + "terraform": 1, + "figure": 1, + "layout": 1, + "specification": 1, + "vector": 1, + "greenkeeper": 1, + "tdd": 1, + "raster": 1, + "mishap": 1, + "sketch": 1, + "released": 1, + "font": 1, + "deployment": 1, + "e-nightwatch": 1, + "engine": 1, + "vulns": 1, + "syntax": 1, + "deliverable": 1, + "manual": 1, + "osx": 1, + "axe": 1, + "sendgrid": 1, + "operating": 1, + "system": 1, + "advance": 1, + "workflow": 1, + "safety": 1, + "phonetic": 1, + "concept": 1, + "lerna": 1, + "readme": 1, + "music": 1, + "failing": 1.7999999999999998, + "customer": 1, + "extension": 1, + "lint": 1, + "optimizing": 1, + "compiler": 1, + "css-select": 1, + "figma": 1, + "finance": 1, + "closed": 1, + "due": 1, + "inactivity": 1, + "jira": 1, + "survey": 1, + "behavioral": 1, + "multi": 1, + "module": 1, + "mixing": 1, + "backlog": 1, + "update": 1, + "present": 1, + "modules": 1, + "lang-julia": 1, + "vuln": 1, + "demo": 1, + "corporate": 1, + "spam": 1, + "handshakes": 1, + "platform": 1, + "wave": 1, + "ansible": 1, + "lang-convert": 1, + "gdpr": 1, + "classes": 1, + "websocket": 1, + "speach": 1, + "b": 1, + "chef": 1, + "patreon": 1, + "reviewed-changes-requested": 1, + "youtube": 1, + "(legacy)": 1, + "mentorship": 1, + "typescript": 1, + "didactic": 1, + "story": 1, + "academia": 1 + }, + "positive_weights_sum": {}, + "negative_weights_sum": {} + }, + "platform": { + "positive_weights": { + "computer": 16, + "desktop": 16, + "bias": 6.669927047089643e-31, + "ios": 22.78125, + "phone": 22.78125, + "paas": 10.125, + "target": 15, + "windows": 9, + "cdn": 10.125, + "icebox": 10.125, + "mobile": 14.0625, + "device": 7.03125, + "support": 0.6591796875, + "os": 10.125, + "deno": 10.125, + "node": 18, + "browser": 2.666666666666667, + "ie": 16, + "safari": 8, + "packaging": 10.125, + "apple": 2, + "gnu": 3.75, + "linux": 18.984375, + "*nix": 10.125, + "unix": 4, + "robot": 8, + "android": 18, + "macos": 2, + "next": 2.666666666666667, + "iphone": 4, + "program": 10.125, + "porting": 10.125, + "component": 0.28125, + "developer": 0.28125, + "tools": 0.28125, + "inspiration": 0.5, + "business": 0.6666666666666667, + "process": 0.6666666666666667, + "sustain": 0.5, + "confirmed": 0.5, + "type": 0.28125, + "question": 0.25, + "grey": 0.75, + "cmty": 0.6666666666666667, + "need-info": 0.5, + "sustenance": 0.5, + "good": 0.75, + "first": 0.75, + "issue": 0.08333333333333334, + "kind": 0.6666666666666667, + "discussion": 0.6666666666666667, + "palette": 0.5, + "azure": 0.6666666666666667, + "ad": 0.6666666666666667, + "data": 0.6666666666666667, + "collection": 0.6666666666666667, + "external-bugs": 0.5, + "deal": 0.5, + "hacking": 0.5, + "video": 0.5, + "test": 0.6666666666666667, + "utils": 2, + "hsv": 0.5, + "thesis": 0.5, + "pentesting": 0.5, + "design": 0.5, + "website": 0.6666666666666667, + "copy": 0.6666666666666667, + "bug": 2, + "guide": 0.5, + "meetup!": 0.6666666666666667, + "feat": 0.25, + "ui": 0.6666666666666667, + "mastering": 0.5, + "steps": 0.5, + "abandoned": 0.5, + "badges": 0.5, + "sponsor": 0.5, + "assess": 0.5, + "pr": 0.30000000000000004, + "merged": 2, + "vlog": 0.5, + "acceptance": 0.6666666666666667, + "testing": 0.25, + "hot": 2, + "tv": 0.5, + "soundtrack": 0.5, + "(category)": 2, + "ci": 0.6666666666666667, + "cd": 0.6666666666666667, + "multi-cloud": 0.5, + "funding": 0.6666666666666667, + "finder": 0.6666666666666667, + "difficulty": 0.6666666666666667, + "hard": 0.6666666666666667, + "documentation": 0.6666666666666667, + "book": 0.6666666666666667, + "diary": 0.5, + "standard": 0.5, + "colour": 0.5, + "flaw": 0.5, + "reliability": 0.5, + "cli-service": 0.75, + "build": 0.75, + "blocked": 0.5, + "maintenance": 0.75, + "construction": 0.75, + "planned": 0.6666666666666667, + "feature": 0.2777777777777778, + "feature-request": 2, + "rfc": 0.5, + "image": 0.5, + "stock": 0.5, + "reminder": 0.5, + "status": 0.75, + "review": 0.75, + "needed": 0.75, + "in": 2, + "lang-crystal": 0.5, + "breaking": 0.75, + "change": 0.75, + "refactor": 0.5, + "monologue": 0.5, + "reviewed-approved": 2, + "new": 0.75, + "best": 0.75, + "practice": 0.75, + "lecture": 0.5, + "backing": 2, + "aws": 2, + "polish": 0.8, + "nail": 0.8, + "care": 0.8, + "article": 2, + "peer-review": 2, + "writer-needed": 2, + "eventstorming": 2, + "freemasonry": 0.6666666666666667, + "icons": 0.6666666666666667, + "lean": 2, + "cannot": 0.6666666666666667, + "reproduce": 0.6666666666666667, + "net": 0.6666666666666667, + "core": 0.6666666666666667, + "wiretap": 2, + "unit-jest": 2, + "instruction": 2, + "infrastructure": 2, + "rgb": 2, + "ideas": 2, + "call": 2, + "iconography": 2, + "promote": 2, + "template": 2, + "first-timers-only": 2, + "java": 2, + "dependency": 2, + "ready": 2, + "for": 2, + "deploy": 2, + "troubleshooting": 2, + "spec": 0.75, + "bigint": 2, + "async": 0.75, + "generators": 0.75, + "proposal": 2, + "e": 0.6666666666666667, + "approachability": 2, + "investment": 2, + "conflicts": 2, + "optimisation": 2, + "kotlin": 2, + "release": 0.8, + "unconfirmed": 2, + "duplicate": 2, + "repeat": 2, + "devops": 2, + "defend": 2, + "blogging": 2, + "friendliness": 2, + "i": 2, + "n": 2, + "cla": 2, + "signed": 2, + "meetup": 2, + "examination": 2, + "api": 2, + "decorators": 2, + "addon": 2, + "cracking": 2, + "sparkles": 2, + "enhancement": 2, + "hooks": 2, + "improved": 0.75, + "error": 0.75, + "handling": 0.75, + "needs": 0.30000000000000004, + "repro": 2, + "upkeep": 2, + "reactis": 2, + "to": 0.8, + "be": 2, + "sample": 2, + "white": 2, + "check": 2, + "mark": 2, + "external": 2, + "hacktoberfest": 2, + "lang-dart": 2, + "framework": 2, + "icon": 2, + "grant": 2, + "needs-research": 2, + "cybersec": 2, + "biz": 2, + "internationalization": 2, + "utility-lib": 2, + "qa": 2, + "do": 0.75, + "not": 0.75, + "merge": 0.75, + "hacked": 2, + "how-to": 2, + "beginner-friendly": 2, + "trello": 2, + "sound": 2, + "docs": 2, + "improvement": 2, + "heavy": 0.8333333333333333, + "plus": 0.8333333333333333, + "sign": 0.8333333333333333, + "request": 0.8333333333333333, + "glitch": 2, + "cx": 2, + "dependencies": 2, + "inquiry": 2, + "area": 2, + "crash": 2, + "camera": 2, + "wip": 2, + "configure": 2, + "dom": 2, + "programming": 2, + "font-face": 2, + "rgba": 2, + "parser-specific": 2, + "wikipedia": 2, + "shell": 2, + "contributions": 2, + "tryout": 2, + "thought": 2, + "analysis": 2, + "contenu": 2, + "cli": 2, + "fund": 2, + "investigation": 2, + "basecamp": 2, + "literature": 2, + "socket": 2, + "io": 2, + "client": 0.8, + "fiscal": 2, + "user": 2, + "debug": 2, + "information": 2, + "frontend": 2, + "upstream": 2, + "raising": 2, + "hand": 2, + "style": 2, + "clean": 2, + "up": 2, + "motif": 2, + "event": 2, + "help": 2, + "wanted": 2, + "priority": 2, + "medium": 2, + "financial": 2, + "ruby": 2, + "es": 2, + "warrant": 2, + "cancelled": 2, + "plan": 2, + "hackathon": 2, + "beginner": 2, + "typography": 2, + "counsel": 2, + "recording": 2, + "crowdin": 2, + "eslint": 2, + "rules": 2, + "easy": 2, + "repare": 2, + "conference": 2, + "great": 2, + "insight": 2, + "phd": 2, + "orange": 2, + "invalid": 2, + "x": 2, + "changelog": 2, + "e-cypress": 2, + "lipstick": 2, + "-": 2, + "backdoor": 2, + "approved": 2, + "talk": 2, + "subtitle": 2, + "research": 2, + "todo": 0.75, + "spiral": 0.75, + "notepad": 0.75, + "interface": 2, + "critical": 2, + "privacy": 2, + "tests": 2, + "boom": 2, + "web": 2, + "app": 0.8, + "television": 2, + "uat": 2, + "backer": 2, + "exploit": 2, + "requires": 2, + "travis-yml": 2, + "dev": 2, + "experience": 0.6666666666666667, + "fix": 2, + "backend": 2, + "cleaning": 2, + "internal": 0.8, + "house": 2, + "technical": 2, + "debt": 2, + "weekly-digest": 2, + "shallow": 2, + "renderer": 2, + "commerce": 2, + "hsl": 2, + "left": 2, + "out": 2, + "welcome": 2, + "opinions": 2, + "documents": 2, + "legacy": 2, + "grafana": 2, + "react": 2, + "native": 2, + "lang-go": 2, + "tutorial": 2, + "plugin": 2, + "logo": 2, + "refactoring": 2, + "saltstack": 2, + "available": 2, + "server": 2, + "rendering": 2, + "htmlfile": 2, + "theorem": 2, + "social": 2, + "internationalisation": 2, + "definition": 2, + "enquire": 2, + "lang-r": 2, + "regression": 2, + "container": 2, + "opencollective": 2, + "report": 2, + "performance": 2, + "clickup": 2, + "installer": 2, + "statement": 2, + "gcp": 2, + "opinion": 2, + "accepted": 2, + "html": 2, + "a": 0.8, + "y": 2, + "general": 2, + "js": 2, + "unit": 2, + "speak": 2, + "brainstorming": 2, + "backup": 2, + "language": 2, + "bugfix": 2, + "k": 2, + "s": 2, + "scrum": 2, + "paper": 2, + "library": 2, + "stale": 2, + "optimization": 2, + "show": 2, + "low": 2, + "functions": 2, + "focus": 2, + "groups": 2, + "dependency-update": 2, + "related": 2, + "bootstrap": 2, + "usability": 2, + "externs": 2, + "critique": 2, + "prince": 2, + "demonstration": 2, + "⬆️": 2, + "memo": 2, + "revisitinfuture": 2, + "tips": 2, + "reference": 2, + "high": 2, + "bug-report": 2, + "babel": 2, + "flashsocket": 2, + "npm": 2, + "site": 2, + "chore": 2, + "adapter": 2, + "slides": 2, + "query": 2, + "chat": 2, + "major": 2, + "alpha": 2, + "lock": 2, + "security": 2, + "newsletter": 2, + "verification": 2, + "color": 2, + "containerd": 2, + "doughnut": 2, + "sentry": 2, + "dissertation": 2, + "mentoring": 2, + "confer": 2, + "utilities": 2, + "infosec": 2, + "vulnerability": 2, + "has": 2, + "code": 2, + "teaching": 2, + "protection": 2, + "webaim": 2, + "wontfix": 2, + "triage": 0.5, + "contribution": 2, + "assertion": 2, + "blog": 2, + "progress": 2, + "future": 0.75, + "architecture": 0.75, + "enhancements": 0.75, + "pmi": 2, + "promotion": 2, + "validation": 2, + "art": 2, + "film": 2, + "bitbucket": 2, + "cloud": 2, + "labour": 2, + "python": 2, + "suggestion": 2, + "crypto": 2, + "attitudinal": 2, + "electron": 2, + "trial": 2, + "example": 0.8, + "resolution": 0.75, + "redirect": 0.75, + "assessment": 2, + "monitor": 2, + "css": 2, + "hack": 2, + "translation": 2, + "opportunity": 2, + "vultr": 2, + "kubernetes": 2, + "wiki": 2, + "parser": 2, + "pwa": 2, + "finding": 2, + "digital": 2, + "ocean": 2, + "safeguard": 2, + "iac": 2, + "javascript": 2, + "integration": 2, + "glo": 2, + "on": 2, + "hold": 2, + "evaluation": 2, + "go": 0.8, + "must-triage": 2, + "gradle": 2, + "accessibility": 2, + "work": 2, + "other": 2, + "wrangling": 2, + "sast": 2, + "tech-debt": 2, + "entry": 2, + "fault": 2, + "problem": 2, + "brand": 2, + "internal-issue-created": 2, + "pmp": 2, + "bdd": 2, + "checkpoint": 2, + "csharp": 2, + "unreviewed": 2, + "idea": 2, + "feedback": 2, + "requested": 2, + "wcag": 2, + "bugs": 2, + "mentor": 2, + "economics": 2, + "lib": 2, + "puppet": 2, + "speech": 2, + "balloon": 2, + "osx": 2, + "operating": 8, + "system": 8, + "platform": 10.125, + "c": 0.6666666666666667, + "c++": 0.6666666666666667, + "bulb": 2, + "prometheus": 0.5, + "rocket": 0.6666666666666667, + "discuss": 2, + "doc": 0.5, + "blogs": 0.5, + "unit-mocha": 2, + "enterprise": 0.5, + "scheduler": 2, + "class": 2, + "fields": 2, + "commercial": 2, + "infra": 2, + "terraform": 2, + "figure": 2, + "layout": 2, + "specification": 2, + "vector": 2, + "greenkeeper": 2, + "tdd": 2, + "raster": 2, + "mishap": 2, + "sketch": 2, + "released": 2, + "font": 2, + "deployment": 0.6666666666666667, + "e-nightwatch": 2, + "engine": 0.6666666666666667, + "vulns": 0.6666666666666667, + "syntax": 2, + "deliverable": 2, + "manual": 2, + "axe": 2, + "sendgrid": 2, + "advance": 2, + "workflow": 2, + "safety": 2, + "phonetic": 2, + "concept": 2, + "lerna": 2, + "readme": 2, + "music": 2, + "failing": 2, + "customer": 0.6666666666666667, + "extension": 2, + "lint": 2, + "optimizing": 2, + "compiler": 2, + "css-select": 2, + "figma": 2, + "finance": 2, + "closed": 0.8, + "due": 0.8, + "inactivity": 0.8, + "jira": 2, + "survey": 2, + "behavioral": 2, + "multi": 2, + "module": 2, + "mixing": 2, + "backlog": 2, + "update": 2, + "present": 2, + "modules": 2, + "lang-julia": 2, + "vuln": 2, + "demo": 2, + "corporate": 2, + "spam": 2, + "handshakes": 2, + "wave": 2, + "ansible": 2, + "lang-convert": 2, + "gdpr": 2, + "classes": 2, + "websocket": 2, + "speach": 2, + "b": 2, + "chef": 2, + "patreon": 2, + "reviewed-changes-requested": 2, + "youtube": 2, + "(legacy)": 2, + "mentorship": 2, + "typescript": 2, + "didactic": 2, + "story": 2, + "academia": 2 + }, + "negative_weights": { + "computer": 0.03703703703703705, + "desktop": 0.03703703703703705, + "bias": 4.490083059534111, + "ios": 0.015625, + "phone": 0.015625, + "paas": 0.0625, + "target": 0.04166666666666667, + "windows": 0.08333333333333334, + "cdn": 0.0625, + "icebox": 0.0625, + "mobile": 0.04687500000000001, + "device": 0.140625, + "support": 0.59326171875, + "os": 0.0625, + "deno": 0.0625, + "node": 0.027777777777777783, + "browser": 0.030864197530864213, + "ie": 0.03703703703703705, + "safari": 0.11111111111111113, + "packaging": 0.0625, + "apple": 1, + "gnu": 0.375, + "linux": 0.0234375, + "*nix": 0.0625, + "unix": 0.33333333333333337, + "robot": 0.11111111111111113, + "android": 0.027777777777777783, + "macos": 1, + "next": 0.22222222222222227, + "iphone": 0.33333333333333337, + "program": 0.0625, + "porting": 0.0625, + "component": 3.515625, + "developer": 3.515625, + "tools": 3.515625, + "inspiration": 2.25, + "business": 2, + "process": 2, + "sustain": 2.25, + "confirmed": 2.25, + "type": 3.515625, + "question": 3.75, + "grey": 1.875, + "cmty": 2, + "need-info": 2.25, + "sustenance": 2.25, + "good": 1.875, + "first": 1.875, + "issue": 7.5, + "kind": 2, + "discussion": 2, + "palette": 2.25, + "azure": 2, + "ad": 2, + "data": 2, + "collection": 2, + "external-bugs": 2.25, + "deal": 2.25, + "hacking": 2.25, + "video": 2.25, + "test": 2, + "utils": 1, + "hsv": 2.25, + "thesis": 2.25, + "pentesting": 2.25, + "design": 2.25, + "website": 2, + "copy": 2, + "bug": 1, + "guide": 2.25, + "meetup!": 2, + "feat": 3.75, + "ui": 2, + "mastering": 2.25, + "steps": 2.25, + "abandoned": 2.25, + "badges": 2.25, + "sponsor": 2.25, + "assess": 2.25, + "pr": 3.3749999999999996, + "merged": 1, + "vlog": 2.25, + "acceptance": 2, + "testing": 3.75, + "hot": 1, + "tv": 2.25, + "soundtrack": 2.25, + "(category)": 1, + "ci": 2, + "cd": 2, + "multi-cloud": 2.25, + "funding": 2, + "finder": 2, + "difficulty": 2, + "hard": 2, + "documentation": 2, + "book": 2, + "diary": 2.25, + "standard": 2.25, + "colour": 2.25, + "flaw": 2.25, + "reliability": 2.25, + "cli-service": 1.875, + "build": 1.875, + "blocked": 2.25, + "maintenance": 1.875, + "construction": 1.875, + "planned": 2, + "feature": 3.5, + "feature-request": 1, + "rfc": 2.25, + "image": 2.25, + "stock": 2.25, + "reminder": 2.25, + "status": 1.875, + "review": 1.875, + "needed": 1.875, + "in": 1, + "lang-crystal": 2.25, + "breaking": 1.875, + "change": 1.875, + "refactor": 2.25, + "monologue": 2.25, + "reviewed-approved": 1, + "new": 1.875, + "best": 1.875, + "practice": 1.875, + "lecture": 2.25, + "backing": 1, + "aws": 1, + "polish": 1.7999999999999998, + "nail": 1.7999999999999998, + "care": 1.7999999999999998, + "article": 1, + "peer-review": 1, + "writer-needed": 1, + "eventstorming": 1, + "freemasonry": 2, + "icons": 2, + "lean": 1, + "cannot": 2, + "reproduce": 2, + "net": 2, + "core": 2, + "wiretap": 1, + "unit-jest": 1, + "instruction": 1, + "infrastructure": 1, + "rgb": 1, + "ideas": 1, + "call": 1, + "iconography": 1, + "promote": 1, + "template": 1, + "first-timers-only": 1, + "java": 1, + "dependency": 1, + "ready": 1, + "for": 1, + "deploy": 1, + "troubleshooting": 1, + "spec": 1.875, + "bigint": 1, + "async": 1.875, + "generators": 1.875, + "proposal": 1, + "e": 2, + "approachability": 1, + "investment": 1, + "conflicts": 1, + "optimisation": 1, + "kotlin": 1, + "release": 1.7999999999999998, + "unconfirmed": 1, + "duplicate": 1, + "repeat": 1, + "devops": 1, + "defend": 1, + "blogging": 1, + "friendliness": 1, + "i": 1, + "n": 1, + "cla": 1, + "signed": 1, + "meetup": 1, + "examination": 1, + "api": 1, + "decorators": 1, + "addon": 1, + "cracking": 1, + "sparkles": 1, + "enhancement": 1, + "hooks": 1, + "improved": 1.875, + "error": 1.875, + "handling": 1.875, + "needs": 3.3749999999999996, + "repro": 1, + "upkeep": 1, + "reactis": 1, + "to": 1.7999999999999998, + "be": 1, + "sample": 1, + "white": 1, + "check": 1, + "mark": 1, + "external": 1, + "hacktoberfest": 1, + "lang-dart": 1, + "framework": 1, + "icon": 1, + "grant": 1, + "needs-research": 1, + "cybersec": 1, + "biz": 1, + "internationalization": 1, + "utility-lib": 1, + "qa": 1, + "do": 1.875, + "not": 1.875, + "merge": 1.875, + "hacked": 1, + "how-to": 1, + "beginner-friendly": 1, + "trello": 1, + "sound": 1, + "docs": 1, + "improvement": 1, + "heavy": 1.75, + "plus": 1.75, + "sign": 1.75, + "request": 1.75, + "glitch": 1, + "cx": 1, + "dependencies": 1, + "inquiry": 1, + "area": 1, + "crash": 1, + "camera": 1, + "wip": 1, + "configure": 1, + "dom": 1, + "programming": 1, + "font-face": 1, + "rgba": 1, + "parser-specific": 1, + "wikipedia": 1, + "shell": 1, + "contributions": 1, + "tryout": 1, + "thought": 1, + "analysis": 1, + "contenu": 1, + "cli": 1, + "fund": 1, + "investigation": 1, + "basecamp": 1, + "literature": 1, + "socket": 1, + "io": 1, + "client": 1.7999999999999998, + "fiscal": 1, + "user": 1, + "debug": 1, + "information": 1, + "frontend": 1, + "upstream": 1, + "raising": 1, + "hand": 1, + "style": 1, + "clean": 1, + "up": 1, + "motif": 1, + "event": 1, + "help": 1, + "wanted": 1, + "priority": 1, + "medium": 1, + "financial": 1, + "ruby": 1, + "es": 1, + "warrant": 1, + "cancelled": 1, + "plan": 1, + "hackathon": 1, + "beginner": 1, + "typography": 1, + "counsel": 1, + "recording": 1, + "crowdin": 1, + "eslint": 1, + "rules": 1, + "easy": 1, + "repare": 1, + "conference": 1, + "great": 1, + "insight": 1, + "phd": 1, + "orange": 1, + "invalid": 1, + "x": 1, + "changelog": 1, + "e-cypress": 1, + "lipstick": 1, + "-": 1, + "backdoor": 1, + "approved": 1, + "talk": 1, + "subtitle": 1, + "research": 1, + "todo": 1.875, + "spiral": 1.875, + "notepad": 1.875, + "interface": 1, + "critical": 1, + "privacy": 1, + "tests": 1, + "boom": 1, + "web": 1, + "app": 1.7999999999999998, + "television": 1, + "uat": 1, + "backer": 1, + "exploit": 1, + "requires": 1, + "travis-yml": 1, + "dev": 1, + "experience": 2, + "fix": 1, + "backend": 1, + "cleaning": 1, + "internal": 1.7999999999999998, + "house": 1, + "technical": 1, + "debt": 1, + "weekly-digest": 1, + "shallow": 1, + "renderer": 1, + "commerce": 1, + "hsl": 1, + "left": 1, + "out": 1, + "welcome": 1, + "opinions": 1, + "documents": 1, + "legacy": 1, + "grafana": 1, + "react": 1, + "native": 1, + "lang-go": 1, + "tutorial": 1, + "plugin": 1, + "logo": 1, + "refactoring": 1, + "saltstack": 1, + "available": 1, + "server": 1, + "rendering": 1, + "htmlfile": 1, + "theorem": 1, + "social": 1, + "internationalisation": 1, + "definition": 1, + "enquire": 1, + "lang-r": 1, + "regression": 1, + "container": 1, + "opencollective": 1, + "report": 1, + "performance": 1, + "clickup": 1, + "installer": 1, + "statement": 1, + "gcp": 1, + "opinion": 1, + "accepted": 1, + "html": 1, + "a": 1.7999999999999998, + "y": 1, + "general": 1, + "js": 1, + "unit": 1, + "speak": 1, + "brainstorming": 1, + "backup": 1, + "language": 1, + "bugfix": 1, + "k": 1, + "s": 1, + "scrum": 1, + "paper": 1, + "library": 1, + "stale": 1, + "optimization": 1, + "show": 1, + "low": 1, + "functions": 1, + "focus": 1, + "groups": 1, + "dependency-update": 1, + "related": 1, + "bootstrap": 1, + "usability": 1, + "externs": 1, + "critique": 1, + "prince": 1, + "demonstration": 1, + "⬆️": 1, + "memo": 1, + "revisitinfuture": 1, + "tips": 1, + "reference": 1, + "high": 1, + "bug-report": 1, + "babel": 1, + "flashsocket": 1, + "npm": 1, + "site": 1, + "chore": 1, + "adapter": 1, + "slides": 1, + "query": 1, + "chat": 1, + "major": 1, + "alpha": 1, + "lock": 1, + "security": 1, + "newsletter": 1, + "verification": 1, + "color": 1, + "containerd": 1, + "doughnut": 1, + "sentry": 1, + "dissertation": 1, + "mentoring": 1, + "confer": 1, + "utilities": 1, + "infosec": 1, + "vulnerability": 1, + "has": 1, + "code": 1, + "teaching": 1, + "protection": 1, + "webaim": 1, + "wontfix": 1, + "triage": 2.25, + "contribution": 1, + "assertion": 1, + "blog": 1, + "progress": 1, + "future": 1.875, + "architecture": 1.875, + "enhancements": 1.875, + "pmi": 1, + "promotion": 1, + "validation": 1, + "art": 1, + "film": 1, + "bitbucket": 1, + "cloud": 1, + "labour": 1, + "python": 1, + "suggestion": 1, + "crypto": 1, + "attitudinal": 1, + "electron": 1, + "trial": 1, + "example": 1.7999999999999998, + "resolution": 1.875, + "redirect": 1.875, + "assessment": 1, + "monitor": 1, + "css": 1, + "hack": 1, + "translation": 1, + "opportunity": 1, + "vultr": 1, + "kubernetes": 1, + "wiki": 1, + "parser": 1, + "pwa": 1, + "finding": 1, + "digital": 1, + "ocean": 1, + "safeguard": 1, + "iac": 1, + "javascript": 1, + "integration": 1, + "glo": 1, + "on": 1, + "hold": 1, + "evaluation": 1, + "go": 1.7999999999999998, + "must-triage": 1, + "gradle": 1, + "accessibility": 1, + "work": 1, + "other": 1, + "wrangling": 1, + "sast": 1, + "tech-debt": 1, + "entry": 1, + "fault": 1, + "problem": 1, + "brand": 1, + "internal-issue-created": 1, + "pmp": 1, + "bdd": 1, + "checkpoint": 1, + "csharp": 1, + "unreviewed": 1, + "idea": 1, + "feedback": 1, + "requested": 1, + "wcag": 1, + "bugs": 1, + "mentor": 1, + "economics": 1, + "lib": 1, + "puppet": 1, + "speech": 1, + "balloon": 1, + "osx": 1, + "operating": 0.11111111111111113, + "system": 0.11111111111111113, + "platform": 0.0625, + "c": 2, + "c++": 2, + "bulb": 1, + "prometheus": 2.25, + "rocket": 2, + "discuss": 1, + "doc": 2.25, + "blogs": 2.25, + "unit-mocha": 1, + "enterprise": 2.25, + "scheduler": 1, + "class": 1, + "fields": 1, + "commercial": 1, + "infra": 1, + "terraform": 1, + "figure": 1, + "layout": 1, + "specification": 1, + "vector": 1, + "greenkeeper": 1, + "tdd": 1, + "raster": 1, + "mishap": 1, + "sketch": 1, + "released": 1, + "font": 1, + "deployment": 2, + "e-nightwatch": 1, + "engine": 2, + "vulns": 2, + "syntax": 1, + "deliverable": 1, + "manual": 1, + "axe": 1, + "sendgrid": 1, + "advance": 1, + "workflow": 1, + "safety": 1, + "phonetic": 1, + "concept": 1, + "lerna": 1, + "readme": 1, + "music": 1, + "failing": 1, + "customer": 2, + "extension": 1, + "lint": 1, + "optimizing": 1, + "compiler": 1, + "css-select": 1, + "figma": 1, + "finance": 1, + "closed": 1.7999999999999998, + "due": 1.7999999999999998, + "inactivity": 1.7999999999999998, + "jira": 1, + "survey": 1, + "behavioral": 1, + "multi": 1, + "module": 1, + "mixing": 1, + "backlog": 1, + "update": 1, + "present": 1, + "modules": 1, + "lang-julia": 1, + "vuln": 1, + "demo": 1, + "corporate": 1, + "spam": 1, + "handshakes": 1, + "wave": 1, + "ansible": 1, + "lang-convert": 1, + "gdpr": 1, + "classes": 1, + "websocket": 1, + "speach": 1, + "b": 1, + "chef": 1, + "patreon": 1, + "reviewed-changes-requested": 1, + "youtube": 1, + "(legacy)": 1, + "mentorship": 1, + "typescript": 1, + "didactic": 1, + "story": 1, + "academia": 1 + }, + "positive_weights_sum": {}, + "negative_weights_sum": {} + }, + "code": { + "positive_weights": { + "feat": 0.7716049382716059, + "cli-service": 13.18359375, + "build": 1.85394287109375, + "bias": 1.6119599477344106e-91, + "lang-crystal": 22.78125, + "pr": 0.13732910156250014, + "breaking": 13.18359375, + "change": 13.18359375, + "refactor": 22.78125, + "website": 12.163719177246097, + "net": 16, + "core": 0.5625, + "java": 22.78125, + "optimisation": 10.125, + "kotlin": 10.125, + "component": 1.7204925883973494, + "api": 7.59375, + "hooks": 8, + "improved": 7.03125, + "error": 7.03125, + "handling": 7.03125, + "reactis": 8, + "hacktoberfest": 8.54296875, + "lang-dart": 10.125, + "framework": 4, + "dom": 8, + "programming": 10.125, + "cli": 16.000000000000007, + "frontend": 10.125, + "ruby": 10.125, + "es": 10.125, + "hackathon": 10.125, + "boom": 2, + "web": 16, + "app": 6.4, + "requires": 2, + "upstream": 2, + "backend": 10.125, + "internal": 18.432000000000002, + "house": 7.03125, + "shallow": 13.18359375, + "renderer": 4.94384765625, + "standard": 0.25, + "react": 8, + "native": 8, + "lang-go": 10.125, + "refactoring": 10.125, + "server": 7.03125, + "rendering": 7.03125, + "htmlfile": 10.125, + "lang-r": 10.125, + "new": 5.7665039062500005, + "definition": 4.439431658453153, + "html": 10.125, + "general": 8, + "js": 8, + "optimization": 10.125, + "python": 10.125, + "css": 10.125, + "hack": 10.125, + "pwa": 16, + "javascript": 10.125, + "csharp": 10.125, + "developer": 0.10546875, + "tools": 0.10546875, + "inspiration": 0.125, + "business": 0.6666666666666667, + "process": 0.6666666666666667, + "sustain": 0.125, + "confirmed": 0.5, + "type": 0.28125, + "question": 0.25, + "grey": 0.75, + "cmty": 0.6666666666666667, + "need-info": 0.5, + "sustenance": 0.5, + "good": 0.75, + "first": 0.75, + "issue": 0.75, + "kind": 0.6666666666666667, + "discussion": 0.25, + "palette": 0.5, + "azure": 0.6666666666666667, + "ad": 0.6666666666666667, + "data": 0.6666666666666667, + "collection": 0.6666666666666667, + "external-bugs": 0.5, + "deal": 0.5, + "hacking": 0.5, + "video": 0.5, + "test": 0.03955078125, + "utils": 0.10546875, + "hsv": 0.5, + "thesis": 0.5, + "pentesting": 0.5, + "design": 0.5, + "copy": 0.008230452674897124, + "bug": 0.024691358024691367, + "guide": 0.5, + "next": 0.6666666666666667, + "meetup!": 0.6666666666666667, + "ui": 0.0740740740740741, + "mastering": 0.5, + "steps": 0.5, + "abandoned": 0.5, + "badges": 0.5, + "sponsor": 0.5, + "assess": 0.5, + "merged": 0.22222222222222227, + "vlog": 0.5, + "acceptance": 0.6666666666666667, + "testing": 0.2666666666666667, + "hot": 2, + "tv": 0.5, + "soundtrack": 0.5, + "(category)": 2, + "ci": 0.6666666666666667, + "cd": 0.6666666666666667, + "multi-cloud": 0.5, + "funding": 0.6666666666666667, + "finder": 0.6666666666666667, + "difficulty": 0.6666666666666667, + "hard": 0.6666666666666667, + "documentation": 0.6666666666666667, + "book": 0.6666666666666667, + "diary": 0.5, + "colour": 0.5, + "computer": 0.6666666666666667, + "desktop": 0.6666666666666667, + "flaw": 0.5, + "reliability": 0.5, + "blocked": 0.5, + "maintenance": 0.75, + "construction": 0.75, + "ios": 0.5, + "planned": 0.6666666666666667, + "feature": 0.11111111111111115, + "feature-request": 2, + "rfc": 0.5, + "image": 0.5, + "stock": 0.5, + "reminder": 0.5, + "status": 0.11250000000000002, + "review": 0.75, + "needed": 0.75, + "in": 2, + "phone": 0.5, + "monologue": 0.5, + "reviewed-approved": 0.6666666666666667, + "best": 0.28125, + "practice": 0.28125, + "lecture": 0.5, + "backing": 0.5, + "browser": 2, + "aws": 0.5, + "polish": 0.8, + "nail": 0.8, + "care": 0.8, + "article": 0.5, + "peer-review": 0.5, + "writer-needed": 0.5, + "eventstorming": 0.5, + "freemasonry": 0.6666666666666667, + "icons": 0.6666666666666667, + "lean": 0.5, + "cannot": 0.6666666666666667, + "reproduce": 0.6666666666666667, + "paas": 0.5, + "wiretap": 0.5, + "unit-jest": 0.0740740740740741, + "instruction": 0.5, + "infrastructure": 0.0703125, + "rgb": 0.5, + "ideas": 0.5, + "target": 0.6666666666666667, + "windows": 0.6666666666666667, + "call": 2, + "iconography": 0.5, + "promote": 0.5, + "template": 0.5, + "support": 0.1875, + "first-timers-only": 0.5, + "cdn": 0.5, + "dependency": 0.10546875, + "ready": 0.8, + "for": 0.8, + "deploy": 0.8, + "troubleshooting": 0.5, + "spec": 0.25, + "bigint": 0.6666666666666667, + "async": 0.75, + "generators": 0.75, + "proposal": 0.01483154296875, + "e": 0.28125, + "approachability": 0.5, + "investment": 0.5, + "conflicts": 0.5, + "release": 0.02048000000000001, + "unconfirmed": 0.5, + "duplicate": 0.5, + "repeat": 2, + "devops": 0.6666666666666667, + "defend": 0.6666666666666667, + "blogging": 0.5, + "friendliness": 0.5, + "i": 0.6666666666666667, + "n": 0.6666666666666667, + "cla": 0.6666666666666667, + "signed": 0.6666666666666667, + "icebox": 0.5, + "meetup": 0.5, + "examination": 0.5, + "mobile": 0.75, + "device": 0.75, + "decorators": 2, + "addon": 0.5, + "cracking": 0.5, + "sparkles": 2, + "enhancement": 0.024691358024691367, + "needs": 0.2666666666666667, + "repro": 0.6666666666666667, + "upkeep": 0.5, + "to": 0.8, + "be": 2, + "sample": 0.5, + "white": 0.8, + "check": 0.8, + "mark": 0.8, + "external": 0.5, + "icon": 0.5, + "grant": 2, + "needs-research": 0.5, + "cybersec": 0.5, + "biz": 0.5, + "internationalization": 0.5, + "utility-lib": 0.5, + "qa": 0.5, + "do": 0.75, + "not": 0.75, + "merge": 0.75, + "hacked": 2, + "how-to": 2, + "beginner-friendly": 2, + "trello": 2, + "os": 2, + "sound": 2, + "docs": 0.6666666666666667, + "improvement": 0.6666666666666667, + "heavy": 0.8333333333333334, + "plus": 0.8333333333333334, + "sign": 0.8333333333333334, + "request": 0.09259259259259263, + "glitch": 2, + "cx": 2, + "dependencies": 2, + "inquiry": 2, + "deno": 2, + "area": 0.024691358024691367, + "crash": 2, + "camera": 2, + "wip": 0.6666666666666667, + "configure": 2, + "font-face": 2, + "rgba": 2, + "parser-specific": 2, + "wikipedia": 2, + "shell": 2, + "contributions": 2, + "tryout": 2, + "thought": 2, + "analysis": 0.5, + "contenu": 2, + "fund": 0.6666666666666667, + "investigation": 0.6666666666666667, + "basecamp": 2, + "literature": 2, + "socket": 2, + "io": 2, + "client": 0.02048000000000001, + "fiscal": 2, + "user": 0.6666666666666667, + "debug": 0.6666666666666667, + "information": 0.6666666666666667, + "raising": 2, + "hand": 2, + "style": 2, + "clean": 0.6666666666666667, + "up": 0.6666666666666667, + "motif": 2, + "event": 0.6666666666666667, + "help": 0.6666666666666667, + "wanted": 0.6666666666666667, + "priority": 0.6666666666666667, + "medium": 0.6666666666666667, + "financial": 2, + "warrant": 2, + "cancelled": 2, + "plan": 2, + "beginner": 2, + "typography": 2, + "counsel": 2, + "recording": 2, + "crowdin": 2, + "eslint": 0.28125, + "rules": 0.28125, + "easy": 2, + "repare": 2, + "conference": 2, + "great": 2, + "insight": 2, + "phd": 2, + "orange": 2, + "invalid": 2, + "x": 2, + "changelog": 2, + "e-cypress": 0.75, + "lipstick": 2, + "-": 0.6666666666666667, + "backdoor": 2, + "approved": 0.75, + "talk": 2, + "subtitle": 2, + "research": 2, + "todo": 0.75, + "spiral": 0.75, + "notepad": 0.75, + "interface": 0.6666666666666667, + "critical": 0.5, + "privacy": 0.5, + "tests": 0.5, + "television": 0.5, + "uat": 2, + "backer": 2, + "exploit": 2, + "travis-yml": 2, + "node": 2, + "dev": 2, + "experience": 0.6666666666666667, + "fix": 2, + "cleaning": 2, + "technical": 0.6666666666666667, + "debt": 0.6666666666666667, + "weekly-digest": 2, + "commerce": 2, + "ie": 0.5, + "hsl": 2, + "left": 2, + "out": 2, + "welcome": 0.6666666666666667, + "opinions": 2, + "documents": 2, + "legacy": 2, + "grafana": 2, + "tutorial": 2, + "plugin": 2, + "logo": 2, + "safari": 2, + "saltstack": 2, + "available": 2, + "theorem": 2, + "social": 2, + "internationalisation": 2, + "enquire": 2, + "packaging": 2, + "regression": 0.5, + "container": 2, + "opencollective": 2, + "report": 2, + "performance": 0.5, + "clickup": 2, + "installer": 2, + "statement": 2, + "gcp": 2, + "opinion": 2, + "accepted": 2, + "a": 0.8, + "y": 2, + "unit": 2, + "speak": 2, + "brainstorming": 2, + "backup": 2, + "language": 2, + "bugfix": 2, + "k": 2, + "s": 2, + "scrum": 2, + "paper": 2, + "library": 2, + "stale": 2, + "show": 2, + "apple": 2, + "low": 2, + "functions": 2, + "gnu": 2, + "linux": 0.5, + "focus": 2, + "groups": 2, + "dependency-update": 2, + "related": 2, + "bootstrap": 2, + "usability": 2, + "*nix": 2, + "externs": 2, + "critique": 2, + "prince": 2, + "demonstration": 2, + "⬆️": 2, + "memo": 2, + "revisitinfuture": 2, + "tips": 2, + "reference": 2, + "high": 2, + "bug-report": 2, + "babel": 0.6666666666666667, + "flashsocket": 2, + "unix": 2, + "npm": 2, + "site": 2, + "chore": 2, + "adapter": 2, + "slides": 2, + "query": 2, + "chat": 2, + "major": 2, + "alpha": 2, + "lock": 2, + "security": 0.5, + "newsletter": 2, + "verification": 2, + "color": 2, + "containerd": 2, + "doughnut": 2, + "sentry": 2, + "dissertation": 2, + "mentoring": 2, + "confer": 2, + "utilities": 0.28125, + "infosec": 2, + "vulnerability": 2, + "has": 2, + "code": 2, + "teaching": 2, + "protection": 2, + "robot": 2, + "android": 0.5, + "webaim": 2, + "wontfix": 2, + "triage": 0.5, + "contribution": 2, + "macos": 2, + "assertion": 2, + "blog": 2, + "progress": 2, + "future": 0.75, + "architecture": 0.75, + "enhancements": 0.75, + "pmi": 2, + "promotion": 2, + "validation": 2, + "art": 2, + "film": 2, + "bitbucket": 2, + "cloud": 2, + "labour": 2, + "suggestion": 2, + "crypto": 2, + "attitudinal": 2, + "electron": 2, + "trial": 2, + "example": 0.8, + "resolution": 2, + "redirect": 2, + "assessment": 2, + "monitor": 2, + "translation": 2, + "opportunity": 2, + "vultr": 2, + "kubernetes": 2, + "wiki": 2, + "parser": 2, + "iphone": 2, + "program": 2, + "finding": 2, + "digital": 2, + "ocean": 2, + "safeguard": 2, + "iac": 2, + "integration": 2, + "glo": 2, + "porting": 2, + "on": 0.6666666666666667, + "hold": 0.6666666666666667, + "evaluation": 2, + "go": 13.452100312500002, + "must-triage": 2, + "gradle": 2, + "accessibility": 2, + "work": 2, + "other": 2, + "wrangling": 2, + "sast": 2, + "tech-debt": 2, + "entry": 2, + "fault": 2, + "problem": 2, + "brand": 2, + "internal-issue-created": 2, + "pmp": 2, + "bdd": 2, + "checkpoint": 2, + "unreviewed": 2, + "idea": 2, + "feedback": 2, + "requested": 2, + "wcag": 2, + "bugs": 2, + "mentor": 2, + "economics": 2, + "lib": 2, + "puppet": 2, + "speech": 0.75, + "balloon": 0.75, + "c": 16, + "c++": 16, + "optimizing": 7.03125, + "compiler": 7.03125, + "css-select": 22.78125, + "modules": 22.78125, + "lang-julia": 10.125, + "typescript": 16, + "bulb": 2, + "prometheus": 0.5, + "rocket": 0.2666666666666667, + "discuss": 2, + "doc": 0.5, + "blogs": 0.5, + "unit-mocha": 0.22222222222222227, + "enterprise": 0.5, + "scheduler": 0.22222222222222227, + "class": 2, + "fields": 2, + "commercial": 0.5, + "infra": 0.5, + "terraform": 0.5, + "figure": 0.5, + "layout": 0.5, + "specification": 0.5, + "vector": 2, + "greenkeeper": 0.5, + "tdd": 0.5, + "raster": 2, + "mishap": 0.5, + "sketch": 0.5, + "released": 0.5, + "font": 2, + "deployment": 0.6666666666666667, + "e-nightwatch": 0.75, + "engine": 0.6666666666666667, + "vulns": 0.6666666666666667, + "syntax": 2, + "deliverable": 0.5, + "manual": 0.5, + "osx": 2, + "axe": 0.5, + "sendgrid": 2, + "operating": 0.6666666666666667, + "system": 0.6666666666666667, + "advance": 2, + "workflow": 2, + "safety": 0.5, + "phonetic": 0.5, + "concept": 0.5, + "lerna": 0.5, + "readme": 0.5, + "music": 0.5, + "failing": 2, + "customer": 0.6666666666666667, + "extension": 0.5, + "lint": 0.5, + "figma": 0.5, + "finance": 0.5, + "closed": 0.8, + "due": 0.8, + "inactivity": 0.8, + "jira": 0.5, + "survey": 0.5, + "behavioral": 2, + "multi": 0.6666666666666667, + "module": 0.6666666666666667, + "mixing": 0.5, + "backlog": 0.6666666666666667, + "update": 0.5, + "present": 0.5, + "vuln": 0.5, + "demo": 0.5, + "corporate": 0.6666666666666667, + "spam": 0.5, + "handshakes": 0.5, + "platform": 0.5, + "wave": 0.5, + "ansible": 0.5, + "lang-convert": 0.5, + "gdpr": 0.5, + "classes": 2, + "websocket": 0.5, + "speach": 0.5, + "b": 2, + "chef": 0.5, + "patreon": 0.5, + "reviewed-changes-requested": 0.6666666666666667, + "youtube": 0.5, + "(legacy)": 2, + "mentorship": 0.5, + "didactic": 0.5, + "story": 0.5, + "academia": 0.5 + }, + "negative_weights": { + "feat": 0.00005953741807651283, + "cli-service": 0.052734375, + "build": 0.185394287109375, + "bias": 2.1423512138651577, + "lang-crystal": 0.015625, + "pr": 0.001544952392578126, + "breaking": 0.052734375, + "change": 0.052734375, + "refactor": 0.015625, + "website": 0.0001220703125, + "net": 0.03703703703703705, + "core": 1.1718750000000002, + "java": 0.015625, + "optimisation": 0.0625, + "kotlin": 0.0625, + "component": 0.0000010291450309139766, + "api": 0.0011773756992669764, + "hooks": 0.11111111111111113, + "improved": 0.140625, + "error": 0.140625, + "handling": 0.140625, + "reactis": 0.11111111111111113, + "hacktoberfest": 0.029296875, + "lang-dart": 0.0625, + "framework": 0.33333333333333337, + "dom": 0.11111111111111113, + "programming": 0.0625, + "cli": 0.00045724737082761805, + "frontend": 0.0625, + "ruby": 0.0625, + "es": 0.0625, + "hackathon": 0.0625, + "boom": 1, + "web": 0.03703703703703705, + "app": 0.06666666666666668, + "requires": 1, + "upstream": 1, + "backend": 0.0625, + "internal": 0.0004050000000000003, + "house": 0.140625, + "shallow": 0.052734375, + "renderer": 0.098876953125, + "standard": 1.6875000000000002, + "react": 0.11111111111111113, + "native": 0.11111111111111113, + "lang-go": 0.0625, + "refactoring": 0.0625, + "server": 0.140625, + "rendering": 0.140625, + "htmlfile": 0.0625, + "lang-r": 0.0625, + "new": 0.0000074855531010117695, + "definition": 0.000007929368960142955, + "html": 0.0625, + "general": 0.11111111111111113, + "js": 0.11111111111111113, + "optimization": 0.0625, + "python": 0.0625, + "css": 0.0625, + "hack": 0.0625, + "pwa": 0.03703703703703705, + "javascript": 0.0625, + "csharp": 0.0625, + "developer": 6.591796875, + "tools": 6.591796875, + "inspiration": 5.0625, + "business": 2, + "process": 2, + "sustain": 5.0625, + "confirmed": 2.25, + "type": 3.515625, + "question": 3.75, + "grey": 1.875, + "cmty": 2, + "need-info": 2.25, + "sustenance": 2.25, + "good": 1.875, + "first": 1.875, + "issue": 1.875, + "kind": 2, + "discussion": 3.75, + "palette": 2.25, + "azure": 2, + "ad": 2, + "data": 2, + "collection": 2, + "external-bugs": 2.25, + "deal": 2.25, + "hacking": 2.25, + "video": 2.25, + "test": 12.359619140625, + "utils": 6.591796875, + "hsv": 2.25, + "thesis": 2.25, + "pentesting": 2.25, + "design": 2.25, + "copy": 32, + "bug": 16, + "guide": 2.25, + "next": 2, + "meetup!": 2, + "ui": 8, + "mastering": 2.25, + "steps": 2.25, + "abandoned": 2.25, + "badges": 2.25, + "sponsor": 2.25, + "assess": 2.25, + "merged": 4, + "vlog": 2.25, + "acceptance": 2, + "testing": 3.5999999999999996, + "hot": 1, + "tv": 2.25, + "soundtrack": 2.25, + "(category)": 1, + "ci": 2, + "cd": 2, + "multi-cloud": 2.25, + "funding": 2, + "finder": 2, + "difficulty": 2, + "hard": 2, + "documentation": 2, + "book": 2, + "diary": 2.25, + "colour": 2.25, + "computer": 2, + "desktop": 2, + "flaw": 2.25, + "reliability": 2.25, + "blocked": 2.25, + "maintenance": 1.875, + "construction": 1.875, + "ios": 2.25, + "planned": 2, + "feature": 6.299999999999999, + "feature-request": 1, + "rfc": 2.25, + "image": 2.25, + "stock": 2.25, + "reminder": 2.25, + "status": 6.328124999999999, + "review": 1.875, + "needed": 1.875, + "in": 1, + "phone": 2.25, + "monologue": 2.25, + "reviewed-approved": 2, + "best": 3.515625, + "practice": 3.515625, + "lecture": 2.25, + "backing": 2.25, + "browser": 1, + "aws": 2.25, + "polish": 1.7999999999999998, + "nail": 1.7999999999999998, + "care": 1.7999999999999998, + "article": 2.25, + "peer-review": 2.25, + "writer-needed": 2.25, + "eventstorming": 2.25, + "freemasonry": 2, + "icons": 2, + "lean": 2.25, + "cannot": 2, + "reproduce": 2, + "paas": 2.25, + "wiretap": 2.25, + "unit-jest": 8, + "instruction": 2.25, + "infrastructure": 7.91015625, + "rgb": 2.25, + "ideas": 2.25, + "target": 2, + "windows": 2, + "call": 1, + "iconography": 2.25, + "promote": 2.25, + "template": 2.25, + "support": 4.21875, + "first-timers-only": 2.25, + "cdn": 2.25, + "dependency": 6.591796875, + "ready": 1.7999999999999998, + "for": 1.7999999999999998, + "deploy": 1.7999999999999998, + "troubleshooting": 2.25, + "spec": 3.75, + "bigint": 2, + "async": 1.875, + "generators": 1.875, + "proposal": 23.174285888671875, + "e": 3.515625, + "approachability": 2.25, + "investment": 2.25, + "conflicts": 2.25, + "release": 18.895679999999988, + "unconfirmed": 2.25, + "duplicate": 2.25, + "repeat": 1, + "devops": 2, + "defend": 2, + "blogging": 2.25, + "friendliness": 2.25, + "i": 2, + "n": 2, + "cla": 2, + "signed": 2, + "icebox": 2.25, + "meetup": 2.25, + "examination": 2.25, + "mobile": 1.875, + "device": 1.875, + "decorators": 1, + "addon": 2.25, + "cracking": 2.25, + "sparkles": 1, + "enhancement": 16, + "needs": 3.5999999999999996, + "repro": 2, + "upkeep": 2.25, + "to": 1.7999999999999998, + "be": 1, + "sample": 2.25, + "white": 1.7999999999999998, + "check": 1.7999999999999998, + "mark": 1.7999999999999998, + "external": 2.25, + "icon": 2.25, + "grant": 1, + "needs-research": 2.25, + "cybersec": 2.25, + "biz": 2.25, + "internationalization": 2.25, + "utility-lib": 2.25, + "qa": 2.25, + "do": 1.875, + "not": 1.875, + "merge": 1.875, + "hacked": 1, + "how-to": 1, + "beginner-friendly": 1, + "trello": 1, + "os": 1, + "sound": 1, + "docs": 2, + "improvement": 2, + "heavy": 1.75, + "plus": 1.75, + "sign": 1.75, + "request": 7, + "glitch": 1, + "cx": 1, + "dependencies": 1, + "inquiry": 1, + "deno": 1, + "area": 16, + "crash": 1, + "camera": 1, + "wip": 2, + "configure": 1, + "font-face": 1, + "rgba": 1, + "parser-specific": 1, + "wikipedia": 1, + "shell": 1, + "contributions": 1, + "tryout": 1, + "thought": 1, + "analysis": 2.25, + "contenu": 1, + "fund": 2, + "investigation": 2, + "basecamp": 1, + "literature": 1, + "socket": 1, + "io": 1, + "client": 18.895679999999988, + "fiscal": 1, + "user": 2, + "debug": 2, + "information": 2, + "raising": 1, + "hand": 1, + "style": 1, + "clean": 2, + "up": 2, + "motif": 1, + "event": 2, + "help": 2, + "wanted": 2, + "priority": 2, + "medium": 2, + "financial": 1, + "warrant": 1, + "cancelled": 1, + "plan": 1, + "beginner": 1, + "typography": 1, + "counsel": 1, + "recording": 1, + "crowdin": 1, + "eslint": 3.515625, + "rules": 3.515625, + "easy": 1, + "repare": 1, + "conference": 1, + "great": 1, + "insight": 1, + "phd": 1, + "orange": 1, + "invalid": 1, + "x": 1, + "changelog": 1, + "e-cypress": 1.875, + "lipstick": 1, + "-": 2, + "backdoor": 1, + "approved": 1.875, + "talk": 1, + "subtitle": 1, + "research": 1, + "todo": 1.875, + "spiral": 1.875, + "notepad": 1.875, + "interface": 2, + "critical": 2.25, + "privacy": 2.25, + "tests": 2.25, + "television": 2.25, + "uat": 1, + "backer": 1, + "exploit": 1, + "travis-yml": 1, + "node": 1, + "dev": 1, + "experience": 2, + "fix": 1, + "cleaning": 1, + "technical": 2, + "debt": 2, + "weekly-digest": 1, + "commerce": 1, + "ie": 2.25, + "hsl": 1, + "left": 1, + "out": 1, + "welcome": 2, + "opinions": 1, + "documents": 1, + "legacy": 1, + "grafana": 1, + "tutorial": 1, + "plugin": 1, + "logo": 1, + "safari": 1, + "saltstack": 1, + "available": 1, + "theorem": 1, + "social": 1, + "internationalisation": 1, + "enquire": 1, + "packaging": 1, + "regression": 2.25, + "container": 1, + "opencollective": 1, + "report": 1, + "performance": 2.25, + "clickup": 1, + "installer": 1, + "statement": 1, + "gcp": 1, + "opinion": 1, + "accepted": 1, + "a": 1.7999999999999998, + "y": 1, + "unit": 1, + "speak": 1, + "brainstorming": 1, + "backup": 1, + "language": 1, + "bugfix": 1, + "k": 1, + "s": 1, + "scrum": 1, + "paper": 1, + "library": 1, + "stale": 1, + "show": 1, + "apple": 1, + "low": 1, + "functions": 1, + "gnu": 1, + "linux": 2.25, + "focus": 1, + "groups": 1, + "dependency-update": 1, + "related": 1, + "bootstrap": 1, + "usability": 1, + "*nix": 1, + "externs": 1, + "critique": 1, + "prince": 1, + "demonstration": 1, + "⬆️": 1, + "memo": 1, + "revisitinfuture": 1, + "tips": 1, + "reference": 1, + "high": 1, + "bug-report": 1, + "babel": 2, + "flashsocket": 1, + "unix": 1, + "npm": 1, + "site": 1, + "chore": 1, + "adapter": 1, + "slides": 1, + "query": 1, + "chat": 1, + "major": 1, + "alpha": 1, + "lock": 1, + "security": 2.25, + "newsletter": 1, + "verification": 1, + "color": 1, + "containerd": 1, + "doughnut": 1, + "sentry": 1, + "dissertation": 1, + "mentoring": 1, + "confer": 1, + "utilities": 3.515625, + "infosec": 1, + "vulnerability": 1, + "has": 1, + "code": 1, + "teaching": 1, + "protection": 1, + "robot": 1, + "android": 2.25, + "webaim": 1, + "wontfix": 1, + "triage": 2.25, + "contribution": 1, + "macos": 1, + "assertion": 1, + "blog": 1, + "progress": 1, + "future": 1.875, + "architecture": 1.875, + "enhancements": 1.875, + "pmi": 1, + "promotion": 1, + "validation": 1, + "art": 1, + "film": 1, + "bitbucket": 1, + "cloud": 1, + "labour": 1, + "suggestion": 1, + "crypto": 1, + "attitudinal": 1, + "electron": 1, + "trial": 1, + "example": 1.7999999999999998, + "resolution": 1, + "redirect": 1, + "assessment": 1, + "monitor": 1, + "translation": 1, + "opportunity": 1, + "vultr": 1, + "kubernetes": 1, + "wiki": 1, + "parser": 1, + "iphone": 1, + "program": 1, + "finding": 1, + "digital": 1, + "ocean": 1, + "safeguard": 1, + "iac": 1, + "integration": 1, + "glo": 1, + "porting": 1, + "on": 2, + "hold": 2, + "evaluation": 1, + "go": 0.0002883251953124998, + "must-triage": 1, + "gradle": 1, + "accessibility": 1, + "work": 1, + "other": 1, + "wrangling": 1, + "sast": 1, + "tech-debt": 1, + "entry": 1, + "fault": 1, + "problem": 1, + "brand": 1, + "internal-issue-created": 1, + "pmp": 1, + "bdd": 1, + "checkpoint": 1, + "unreviewed": 1, + "idea": 1, + "feedback": 1, + "requested": 1, + "wcag": 1, + "bugs": 1, + "mentor": 1, + "economics": 1, + "lib": 1, + "puppet": 1, + "speech": 1.875, + "balloon": 1.875, + "c": 0.03703703703703705, + "c++": 0.03703703703703705, + "optimizing": 0.140625, + "compiler": 0.140625, + "css-select": 0.015625, + "modules": 0.015625, + "lang-julia": 0.0625, + "typescript": 0.03703703703703705, + "bulb": 1, + "prometheus": 2.25, + "rocket": 3.5999999999999996, + "discuss": 1, + "doc": 2.25, + "blogs": 2.25, + "unit-mocha": 4, + "enterprise": 2.25, + "scheduler": 4, + "class": 1, + "fields": 1, + "commercial": 2.25, + "infra": 2.25, + "terraform": 2.25, + "figure": 2.25, + "layout": 2.25, + "specification": 2.25, + "vector": 1, + "greenkeeper": 2.25, + "tdd": 2.25, + "raster": 1, + "mishap": 2.25, + "sketch": 2.25, + "released": 2.25, + "font": 1, + "deployment": 2, + "e-nightwatch": 1.875, + "engine": 2, + "vulns": 2, + "syntax": 1, + "deliverable": 2.25, + "manual": 2.25, + "osx": 1, + "axe": 2.25, + "sendgrid": 1, + "operating": 2, + "system": 2, + "advance": 1, + "workflow": 1, + "safety": 2.25, + "phonetic": 2.25, + "concept": 2.25, + "lerna": 2.25, + "readme": 2.25, + "music": 2.25, + "failing": 1, + "customer": 2, + "extension": 2.25, + "lint": 2.25, + "figma": 2.25, + "finance": 2.25, + "closed": 1.7999999999999998, + "due": 1.7999999999999998, + "inactivity": 1.7999999999999998, + "jira": 2.25, + "survey": 2.25, + "behavioral": 1, + "multi": 2, + "module": 2, + "mixing": 2.25, + "backlog": 2, + "update": 2.25, + "present": 2.25, + "vuln": 2.25, + "demo": 2.25, + "corporate": 2, + "spam": 2.25, + "handshakes": 2.25, + "platform": 2.25, + "wave": 2.25, + "ansible": 2.25, + "lang-convert": 2.25, + "gdpr": 2.25, + "classes": 1, + "websocket": 2.25, + "speach": 2.25, + "b": 1, + "chef": 2.25, + "patreon": 2.25, + "reviewed-changes-requested": 2, + "youtube": 2.25, + "(legacy)": 1, + "mentorship": 2.25, + "didactic": 2.25, + "story": 2.25, + "academia": 2.25 + }, + "positive_weights_sum": {}, + "negative_weights_sum": {} + }, + "talk": { + "positive_weights": { + "monologue": 22.78125, + "bias": 2.61594858647483e-12, + "talk": 22.78125, + "speak": 22.78125, + "slides": 10.125, + "confer": 10.125, + "component": 0.75, + "developer": 0.75, + "tools": 0.75, + "inspiration": 0.5, + "business": 0.6666666666666667, + "process": 0.6666666666666667, + "sustain": 0.5, + "confirmed": 0.5, + "type": 0.28125, + "question": 0.75, + "grey": 0.75, + "cmty": 2, + "need-info": 0.5, + "sustenance": 0.5, + "good": 0.75, + "first": 0.75, + "issue": 0.75, + "kind": 0.6666666666666667, + "discussion": 0.6666666666666667, + "palette": 0.5, + "azure": 0.6666666666666667, + "ad": 0.6666666666666667, + "data": 0.6666666666666667, + "collection": 0.6666666666666667, + "external-bugs": 0.5, + "deal": 0.5, + "hacking": 0.5, + "video": 0.5, + "test": 2, + "utils": 2, + "hsv": 0.5, + "thesis": 2, + "pentesting": 2, + "design": 0.6666666666666667, + "website": 0.6666666666666667, + "copy": 0.6666666666666667, + "bug": 2, + "guide": 2, + "next": 0.6666666666666667, + "meetup!": 0.6666666666666667, + "feat": 0.75, + "ui": 2, + "mastering": 2, + "steps": 2, + "abandoned": 2, + "badges": 2, + "sponsor": 2, + "assess": 2, + "pr": 0.8, + "merged": 2, + "vlog": 2, + "acceptance": 2, + "testing": 0.8, + "hot": 2, + "tv": 2, + "soundtrack": 2, + "(category)": 0.6666666666666667, + "ci": 2, + "cd": 2, + "multi-cloud": 2, + "funding": 2, + "finder": 2, + "difficulty": 2, + "hard": 2, + "documentation": 2, + "book": 2, + "diary": 2, + "standard": 2, + "colour": 2, + "computer": 2, + "desktop": 2, + "flaw": 2, + "reliability": 2, + "cli-service": 0.75, + "build": 0.75, + "blocked": 2, + "maintenance": 2, + "construction": 2, + "ios": 2, + "planned": 2, + "feature": 0.8333333333333333, + "feature-request": 2, + "rfc": 2, + "image": 0.6666666666666667, + "stock": 2, + "reminder": 2, + "status": 0.8, + "review": 2, + "needed": 2, + "in": 2, + "lang-crystal": 2, + "breaking": 2, + "change": 2, + "phone": 2, + "refactor": 2, + "reviewed-approved": 2, + "new": 2, + "best": 2, + "practice": 2, + "lecture": 2, + "backing": 2, + "browser": 2, + "aws": 2, + "polish": 0.8, + "nail": 0.8, + "care": 0.8, + "article": 2, + "peer-review": 2, + "writer-needed": 2, + "eventstorming": 2, + "freemasonry": 2, + "icons": 2, + "lean": 2, + "cannot": 2, + "reproduce": 2, + "paas": 2, + "net": 2, + "core": 2, + "wiretap": 2, + "unit-jest": 2, + "instruction": 2, + "infrastructure": 2, + "rgb": 2, + "ideas": 2, + "target": 2, + "windows": 2, + "call": 2, + "iconography": 2, + "promote": 2, + "template": 2, + "support": 0.75, + "first-timers-only": 2, + "java": 2, + "cdn": 2, + "dependency": 2, + "ready": 0.8, + "for": 0.8, + "deploy": 0.8, + "troubleshooting": 2, + "spec": 0.75, + "bigint": 2, + "async": 2, + "generators": 2, + "proposal": 2, + "e": 2, + "approachability": 2, + "investment": 2, + "conflicts": 2, + "optimisation": 2, + "kotlin": 2, + "release": 0.8, + "unconfirmed": 2, + "duplicate": 2, + "repeat": 2, + "devops": 2, + "defend": 2, + "blogging": 2, + "friendliness": 2, + "i": 2, + "n": 2, + "cla": 2, + "signed": 2, + "icebox": 2, + "meetup": 2, + "examination": 2, + "mobile": 0.75, + "device": 0.75, + "api": 2, + "decorators": 2, + "addon": 2, + "cracking": 2, + "sparkles": 2, + "enhancement": 0.75, + "hooks": 2, + "improved": 2, + "error": 2, + "handling": 2, + "needs": 0.8, + "repro": 2, + "upkeep": 2, + "reactis": 2, + "to": 0.8, + "be": 2, + "sample": 2, + "white": 0.8, + "check": 0.8, + "mark": 0.8, + "external": 2, + "hacktoberfest": 2, + "lang-dart": 2, + "framework": 2, + "icon": 2, + "grant": 2, + "needs-research": 2, + "cybersec": 2, + "biz": 2, + "internationalization": 2, + "utility-lib": 2, + "qa": 2, + "do": 2, + "not": 2, + "merge": 2, + "hacked": 2, + "how-to": 2, + "beginner-friendly": 2, + "trello": 2, + "os": 2, + "sound": 2, + "docs": 2, + "improvement": 2, + "heavy": 0.8333333333333333, + "plus": 0.8333333333333333, + "sign": 0.8333333333333333, + "request": 0.8333333333333333, + "glitch": 2, + "cx": 2, + "dependencies": 2, + "inquiry": 2, + "deno": 2, + "area": 2, + "crash": 2, + "camera": 2, + "wip": 2, + "configure": 2, + "dom": 2, + "programming": 2, + "font-face": 2, + "rgba": 2, + "parser-specific": 2, + "wikipedia": 2, + "shell": 2, + "contributions": 2, + "tryout": 2, + "thought": 2, + "analysis": 2, + "contenu": 2, + "cli": 2, + "fund": 2, + "investigation": 2, + "basecamp": 2, + "literature": 2, + "socket": 2, + "io": 2, + "client": 0.8, + "fiscal": 2, + "user": 2, + "debug": 2, + "information": 2, + "frontend": 2, + "upstream": 2, + "raising": 2, + "hand": 2, + "style": 2, + "clean": 2, + "up": 2, + "motif": 2, + "event": 2, + "help": 2, + "wanted": 2, + "priority": 2, + "medium": 2, + "financial": 2, + "ruby": 2, + "es": 2, + "warrant": 2, + "cancelled": 2, + "plan": 2, + "hackathon": 2, + "beginner": 2, + "typography": 2, + "counsel": 2, + "recording": 2, + "crowdin": 2, + "eslint": 2, + "rules": 2, + "easy": 2, + "repare": 2, + "conference": 2, + "great": 2, + "insight": 2, + "phd": 2, + "orange": 2, + "invalid": 2, + "x": 2, + "changelog": 2, + "e-cypress": 2, + "lipstick": 2, + "-": 2, + "backdoor": 2, + "approved": 2, + "subtitle": 2, + "research": 2, + "todo": 2, + "spiral": 2, + "notepad": 2, + "interface": 2, + "critical": 2, + "privacy": 2, + "tests": 2, + "boom": 2, + "web": 2, + "app": 0.8, + "television": 2, + "uat": 2, + "backer": 2, + "exploit": 2, + "requires": 2, + "travis-yml": 2, + "node": 2, + "dev": 2, + "experience": 2, + "fix": 2, + "backend": 2, + "cleaning": 2, + "internal": 0.8, + "house": 2, + "technical": 2, + "debt": 2, + "weekly-digest": 2, + "shallow": 2, + "renderer": 2, + "commerce": 2, + "ie": 2, + "hsl": 2, + "left": 2, + "out": 2, + "welcome": 2, + "opinions": 2, + "documents": 2, + "legacy": 2, + "grafana": 2, + "react": 2, + "native": 2, + "lang-go": 2, + "tutorial": 2, + "plugin": 2, + "logo": 2, + "refactoring": 2, + "safari": 2, + "saltstack": 2, + "available": 2, + "server": 2, + "rendering": 2, + "htmlfile": 2, + "theorem": 2, + "social": 2, + "internationalisation": 2, + "definition": 2, + "enquire": 2, + "packaging": 2, + "lang-r": 2, + "regression": 2, + "container": 2, + "opencollective": 2, + "report": 2, + "performance": 2, + "clickup": 2, + "installer": 2, + "statement": 2, + "gcp": 2, + "opinion": 2, + "accepted": 2, + "html": 2, + "a": 0.8, + "y": 2, + "general": 2, + "js": 2, + "unit": 2, + "brainstorming": 2, + "backup": 2, + "language": 2, + "bugfix": 2, + "k": 2, + "s": 2, + "scrum": 2, + "paper": 2, + "library": 2, + "stale": 2, + "optimization": 2, + "show": 2, + "apple": 2, + "low": 2, + "functions": 2, + "gnu": 2, + "linux": 2, + "focus": 2, + "groups": 2, + "dependency-update": 2, + "related": 2, + "bootstrap": 2, + "usability": 2, + "*nix": 2, + "externs": 2, + "critique": 2, + "prince": 2, + "demonstration": 2, + "⬆️": 2, + "memo": 2, + "revisitinfuture": 2, + "tips": 2, + "reference": 2, + "high": 2, + "bug-report": 2, + "babel": 2, + "flashsocket": 2, + "unix": 2, + "npm": 2, + "site": 2, + "chore": 2, + "adapter": 2, + "query": 2, + "chat": 2, + "major": 2, + "alpha": 2, + "lock": 2, + "security": 2, + "newsletter": 2, + "verification": 2, + "color": 2, + "containerd": 2, + "doughnut": 2, + "sentry": 2, + "dissertation": 2, + "mentoring": 2, + "utilities": 2, + "infosec": 2, + "vulnerability": 2, + "has": 2, + "code": 2, + "teaching": 2, + "protection": 2, + "robot": 2, + "android": 2, + "webaim": 2, + "wontfix": 2, + "triage": 0.5, + "contribution": 2, + "macos": 2, + "assertion": 2, + "blog": 2, + "progress": 2, + "future": 2, + "architecture": 2, + "enhancements": 2, + "pmi": 2, + "promotion": 2, + "validation": 2, + "art": 2, + "film": 2, + "bitbucket": 2, + "cloud": 2, + "labour": 2, + "python": 2, + "suggestion": 2, + "crypto": 2, + "attitudinal": 2, + "electron": 2, + "trial": 2, + "example": 0.8, + "resolution": 2, + "redirect": 2, + "assessment": 2, + "monitor": 2, + "css": 2, + "hack": 2, + "translation": 2, + "opportunity": 2, + "vultr": 2, + "kubernetes": 2, + "wiki": 2, + "parser": 2, + "pwa": 2, + "iphone": 2, + "program": 2, + "finding": 2, + "digital": 2, + "ocean": 2, + "safeguard": 2, + "iac": 2, + "javascript": 2, + "integration": 2, + "glo": 2, + "porting": 2, + "on": 2, + "hold": 2, + "evaluation": 2, + "go": 0.8, + "must-triage": 2, + "gradle": 2, + "accessibility": 2, + "work": 2, + "other": 2, + "wrangling": 2, + "sast": 2, + "tech-debt": 2, + "entry": 2, + "fault": 2, + "problem": 2, + "brand": 2, + "internal-issue-created": 2, + "pmp": 2, + "bdd": 2, + "checkpoint": 2, + "csharp": 2, + "unreviewed": 2, + "idea": 2, + "feedback": 2, + "requested": 2, + "wcag": 2, + "bugs": 2, + "mentor": 2, + "economics": 2, + "lib": 2, + "puppet": 2, + "speech": 2, + "balloon": 2, + "present": 10.125, + "speach": 10.125, + "c": 0.6666666666666667, + "c++": 0.6666666666666667, + "bulb": 0.75, + "prometheus": 0.5, + "rocket": 2, + "discuss": 2, + "doc": 2, + "blogs": 2, + "unit-mocha": 2, + "enterprise": 2, + "scheduler": 2, + "class": 0.75, + "fields": 0.75, + "commercial": 2, + "infra": 2, + "terraform": 2, + "figure": 2, + "layout": 2, + "specification": 2, + "vector": 0.6666666666666667, + "greenkeeper": 2, + "tdd": 2, + "raster": 2, + "mishap": 2, + "sketch": 2, + "released": 2, + "font": 2, + "deployment": 2, + "e-nightwatch": 2, + "engine": 2, + "vulns": 2, + "syntax": 2, + "deliverable": 2, + "manual": 2, + "osx": 2, + "axe": 2, + "sendgrid": 2, + "operating": 2, + "system": 2, + "advance": 2, + "workflow": 2, + "safety": 2, + "phonetic": 2, + "concept": 2, + "lerna": 2, + "readme": 2, + "music": 2, + "failing": 2, + "customer": 2, + "extension": 2, + "lint": 2, + "optimizing": 2, + "compiler": 2, + "css-select": 2, + "figma": 2, + "finance": 2, + "closed": 0.8, + "due": 0.8, + "inactivity": 0.8, + "jira": 2, + "survey": 2, + "behavioral": 2, + "multi": 2, + "module": 2, + "mixing": 2, + "backlog": 2, + "update": 2, + "modules": 2, + "lang-julia": 2, + "vuln": 2, + "demo": 2, + "corporate": 2, + "spam": 2, + "handshakes": 2, + "platform": 2, + "wave": 2, + "ansible": 2, + "lang-convert": 2, + "gdpr": 2, + "classes": 2, + "websocket": 2, + "b": 2, + "chef": 2, + "patreon": 2, + "reviewed-changes-requested": 2, + "youtube": 2, + "(legacy)": 2, + "mentorship": 2, + "typescript": 2, + "didactic": 2, + "story": 2, + "academia": 2 + }, + "negative_weights": { + "monologue": 0.015625, + "bias": 5.474000435182519, + "talk": 0.015625, + "speak": 0.015625, + "slides": 0.0625, + "confer": 0.0625, + "component": 1.875, + "developer": 1.875, + "tools": 1.875, + "inspiration": 2.25, + "business": 2, + "process": 2, + "sustain": 2.25, + "confirmed": 2.25, + "type": 3.515625, + "question": 1.875, + "grey": 1.875, + "cmty": 1, + "need-info": 2.25, + "sustenance": 2.25, + "good": 1.875, + "first": 1.875, + "issue": 1.875, + "kind": 2, + "discussion": 2, + "palette": 2.25, + "azure": 2, + "ad": 2, + "data": 2, + "collection": 2, + "external-bugs": 2.25, + "deal": 2.25, + "hacking": 2.25, + "video": 2.25, + "test": 1, + "utils": 1, + "hsv": 2.25, + "thesis": 1, + "pentesting": 1, + "design": 2, + "website": 2, + "copy": 2, + "bug": 1, + "guide": 1, + "next": 2, + "meetup!": 2, + "feat": 1.875, + "ui": 1, + "mastering": 1, + "steps": 1, + "abandoned": 1, + "badges": 1, + "sponsor": 1, + "assess": 1, + "pr": 1.7999999999999998, + "merged": 1, + "vlog": 1, + "acceptance": 1, + "testing": 1.7999999999999998, + "hot": 1, + "tv": 1, + "soundtrack": 1, + "(category)": 2, + "ci": 1, + "cd": 1, + "multi-cloud": 1, + "funding": 1, + "finder": 1, + "difficulty": 1, + "hard": 1, + "documentation": 1, + "book": 1, + "diary": 1, + "standard": 1, + "colour": 1, + "computer": 1, + "desktop": 1, + "flaw": 1, + "reliability": 1, + "cli-service": 1.875, + "build": 1.875, + "blocked": 1, + "maintenance": 1, + "construction": 1, + "ios": 1, + "planned": 1, + "feature": 1.75, + "feature-request": 1, + "rfc": 1, + "image": 2, + "stock": 1, + "reminder": 1, + "status": 1.7999999999999998, + "review": 1, + "needed": 1, + "in": 1, + "lang-crystal": 1, + "breaking": 1, + "change": 1, + "phone": 1, + "refactor": 1, + "reviewed-approved": 1, + "new": 1, + "best": 1, + "practice": 1, + "lecture": 1, + "backing": 1, + "browser": 1, + "aws": 1, + "polish": 1.7999999999999998, + "nail": 1.7999999999999998, + "care": 1.7999999999999998, + "article": 1, + "peer-review": 1, + "writer-needed": 1, + "eventstorming": 1, + "freemasonry": 1, + "icons": 1, + "lean": 1, + "cannot": 1, + "reproduce": 1, + "paas": 1, + "net": 1, + "core": 1, + "wiretap": 1, + "unit-jest": 1, + "instruction": 1, + "infrastructure": 1, + "rgb": 1, + "ideas": 1, + "target": 1, + "windows": 1, + "call": 1, + "iconography": 1, + "promote": 1, + "template": 1, + "support": 1.875, + "first-timers-only": 1, + "java": 1, + "cdn": 1, + "dependency": 1, + "ready": 1.7999999999999998, + "for": 1.7999999999999998, + "deploy": 1.7999999999999998, + "troubleshooting": 1, + "spec": 1.875, + "bigint": 1, + "async": 1, + "generators": 1, + "proposal": 1, + "e": 1, + "approachability": 1, + "investment": 1, + "conflicts": 1, + "optimisation": 1, + "kotlin": 1, + "release": 1.7999999999999998, + "unconfirmed": 1, + "duplicate": 1, + "repeat": 1, + "devops": 1, + "defend": 1, + "blogging": 1, + "friendliness": 1, + "i": 1, + "n": 1, + "cla": 1, + "signed": 1, + "icebox": 1, + "meetup": 1, + "examination": 1, + "mobile": 1.875, + "device": 1.875, + "api": 1, + "decorators": 1, + "addon": 1, + "cracking": 1, + "sparkles": 1, + "enhancement": 1.875, + "hooks": 1, + "improved": 1, + "error": 1, + "handling": 1, + "needs": 1.7999999999999998, + "repro": 1, + "upkeep": 1, + "reactis": 1, + "to": 1.7999999999999998, + "be": 1, + "sample": 1, + "white": 1.7999999999999998, + "check": 1.7999999999999998, + "mark": 1.7999999999999998, + "external": 1, + "hacktoberfest": 1, + "lang-dart": 1, + "framework": 1, + "icon": 1, + "grant": 1, + "needs-research": 1, + "cybersec": 1, + "biz": 1, + "internationalization": 1, + "utility-lib": 1, + "qa": 1, + "do": 1, + "not": 1, + "merge": 1, + "hacked": 1, + "how-to": 1, + "beginner-friendly": 1, + "trello": 1, + "os": 1, + "sound": 1, + "docs": 1, + "improvement": 1, + "heavy": 1.75, + "plus": 1.75, + "sign": 1.75, + "request": 1.75, + "glitch": 1, + "cx": 1, + "dependencies": 1, + "inquiry": 1, + "deno": 1, + "area": 1, + "crash": 1, + "camera": 1, + "wip": 1, + "configure": 1, + "dom": 1, + "programming": 1, + "font-face": 1, + "rgba": 1, + "parser-specific": 1, + "wikipedia": 1, + "shell": 1, + "contributions": 1, + "tryout": 1, + "thought": 1, + "analysis": 1, + "contenu": 1, + "cli": 1, + "fund": 1, + "investigation": 1, + "basecamp": 1, + "literature": 1, + "socket": 1, + "io": 1, + "client": 1.7999999999999998, + "fiscal": 1, + "user": 1, + "debug": 1, + "information": 1, + "frontend": 1, + "upstream": 1, + "raising": 1, + "hand": 1, + "style": 1, + "clean": 1, + "up": 1, + "motif": 1, + "event": 1, + "help": 1, + "wanted": 1, + "priority": 1, + "medium": 1, + "financial": 1, + "ruby": 1, + "es": 1, + "warrant": 1, + "cancelled": 1, + "plan": 1, + "hackathon": 1, + "beginner": 1, + "typography": 1, + "counsel": 1, + "recording": 1, + "crowdin": 1, + "eslint": 1, + "rules": 1, + "easy": 1, + "repare": 1, + "conference": 1, + "great": 1, + "insight": 1, + "phd": 1, + "orange": 1, + "invalid": 1, + "x": 1, + "changelog": 1, + "e-cypress": 1, + "lipstick": 1, + "-": 1, + "backdoor": 1, + "approved": 1, + "subtitle": 1, + "research": 1, + "todo": 1, + "spiral": 1, + "notepad": 1, + "interface": 1, + "critical": 1, + "privacy": 1, + "tests": 1, + "boom": 1, + "web": 1, + "app": 1.7999999999999998, + "television": 1, + "uat": 1, + "backer": 1, + "exploit": 1, + "requires": 1, + "travis-yml": 1, + "node": 1, + "dev": 1, + "experience": 1, + "fix": 1, + "backend": 1, + "cleaning": 1, + "internal": 1.7999999999999998, + "house": 1, + "technical": 1, + "debt": 1, + "weekly-digest": 1, + "shallow": 1, + "renderer": 1, + "commerce": 1, + "ie": 1, + "hsl": 1, + "left": 1, + "out": 1, + "welcome": 1, + "opinions": 1, + "documents": 1, + "legacy": 1, + "grafana": 1, + "react": 1, + "native": 1, + "lang-go": 1, + "tutorial": 1, + "plugin": 1, + "logo": 1, + "refactoring": 1, + "safari": 1, + "saltstack": 1, + "available": 1, + "server": 1, + "rendering": 1, + "htmlfile": 1, + "theorem": 1, + "social": 1, + "internationalisation": 1, + "definition": 1, + "enquire": 1, + "packaging": 1, + "lang-r": 1, + "regression": 1, + "container": 1, + "opencollective": 1, + "report": 1, + "performance": 1, + "clickup": 1, + "installer": 1, + "statement": 1, + "gcp": 1, + "opinion": 1, + "accepted": 1, + "html": 1, + "a": 1.7999999999999998, + "y": 1, + "general": 1, + "js": 1, + "unit": 1, + "brainstorming": 1, + "backup": 1, + "language": 1, + "bugfix": 1, + "k": 1, + "s": 1, + "scrum": 1, + "paper": 1, + "library": 1, + "stale": 1, + "optimization": 1, + "show": 1, + "apple": 1, + "low": 1, + "functions": 1, + "gnu": 1, + "linux": 1, + "focus": 1, + "groups": 1, + "dependency-update": 1, + "related": 1, + "bootstrap": 1, + "usability": 1, + "*nix": 1, + "externs": 1, + "critique": 1, + "prince": 1, + "demonstration": 1, + "⬆️": 1, + "memo": 1, + "revisitinfuture": 1, + "tips": 1, + "reference": 1, + "high": 1, + "bug-report": 1, + "babel": 1, + "flashsocket": 1, + "unix": 1, + "npm": 1, + "site": 1, + "chore": 1, + "adapter": 1, + "query": 1, + "chat": 1, + "major": 1, + "alpha": 1, + "lock": 1, + "security": 1, + "newsletter": 1, + "verification": 1, + "color": 1, + "containerd": 1, + "doughnut": 1, + "sentry": 1, + "dissertation": 1, + "mentoring": 1, + "utilities": 1, + "infosec": 1, + "vulnerability": 1, + "has": 1, + "code": 1, + "teaching": 1, + "protection": 1, + "robot": 1, + "android": 1, + "webaim": 1, + "wontfix": 1, + "triage": 2.25, + "contribution": 1, + "macos": 1, + "assertion": 1, + "blog": 1, + "progress": 1, + "future": 1, + "architecture": 1, + "enhancements": 1, + "pmi": 1, + "promotion": 1, + "validation": 1, + "art": 1, + "film": 1, + "bitbucket": 1, + "cloud": 1, + "labour": 1, + "python": 1, + "suggestion": 1, + "crypto": 1, + "attitudinal": 1, + "electron": 1, + "trial": 1, + "example": 1.7999999999999998, + "resolution": 1, + "redirect": 1, + "assessment": 1, + "monitor": 1, + "css": 1, + "hack": 1, + "translation": 1, + "opportunity": 1, + "vultr": 1, + "kubernetes": 1, + "wiki": 1, + "parser": 1, + "pwa": 1, + "iphone": 1, + "program": 1, + "finding": 1, + "digital": 1, + "ocean": 1, + "safeguard": 1, + "iac": 1, + "javascript": 1, + "integration": 1, + "glo": 1, + "porting": 1, + "on": 1, + "hold": 1, + "evaluation": 1, + "go": 1.7999999999999998, + "must-triage": 1, + "gradle": 1, + "accessibility": 1, + "work": 1, + "other": 1, + "wrangling": 1, + "sast": 1, + "tech-debt": 1, + "entry": 1, + "fault": 1, + "problem": 1, + "brand": 1, + "internal-issue-created": 1, + "pmp": 1, + "bdd": 1, + "checkpoint": 1, + "csharp": 1, + "unreviewed": 1, + "idea": 1, + "feedback": 1, + "requested": 1, + "wcag": 1, + "bugs": 1, + "mentor": 1, + "economics": 1, + "lib": 1, + "puppet": 1, + "speech": 1, + "balloon": 1, + "present": 0.0625, + "speach": 0.0625, + "c": 2, + "c++": 2, + "bulb": 1.875, + "prometheus": 2.25, + "rocket": 1, + "discuss": 1, + "doc": 1, + "blogs": 1, + "unit-mocha": 1, + "enterprise": 1, + "scheduler": 1, + "class": 1.875, + "fields": 1.875, + "commercial": 1, + "infra": 1, + "terraform": 1, + "figure": 1, + "layout": 1, + "specification": 1, + "vector": 2, + "greenkeeper": 1, + "tdd": 1, + "raster": 1, + "mishap": 1, + "sketch": 1, + "released": 1, + "font": 1, + "deployment": 1, + "e-nightwatch": 1, + "engine": 1, + "vulns": 1, + "syntax": 1, + "deliverable": 1, + "manual": 1, + "osx": 1, + "axe": 1, + "sendgrid": 1, + "operating": 1, + "system": 1, + "advance": 1, + "workflow": 1, + "safety": 1, + "phonetic": 1, + "concept": 1, + "lerna": 1, + "readme": 1, + "music": 1, + "failing": 1, + "customer": 1, + "extension": 1, + "lint": 1, + "optimizing": 1, + "compiler": 1, + "css-select": 1, + "figma": 1, + "finance": 1, + "closed": 1.7999999999999998, + "due": 1.7999999999999998, + "inactivity": 1.7999999999999998, + "jira": 1, + "survey": 1, + "behavioral": 1, + "multi": 1, + "module": 1, + "mixing": 1, + "backlog": 1, + "update": 1, + "modules": 1, + "lang-julia": 1, + "vuln": 1, + "demo": 1, + "corporate": 1, + "spam": 1, + "handshakes": 1, + "platform": 1, + "wave": 1, + "ansible": 1, + "lang-convert": 1, + "gdpr": 1, + "classes": 1, + "websocket": 1, + "b": 1, + "chef": 1, + "patreon": 1, + "reviewed-changes-requested": 1, + "youtube": 1, + "(legacy)": 1, + "mentorship": 1, + "typescript": 1, + "didactic": 1, + "story": 1, + "academia": 1 + }, + "positive_weights_sum": {}, + "negative_weights_sum": {} + }, + "financial": { + "positive_weights": { + "backing": 16.218292236328132, + "bias": 6.751080231987706e-19, + "investment": 22.78125, + "fiscal": 22.78125, + "backer": 9.610839843750002, + "opencollective": 10.125, + "economics": 10.125, + "component": 0.28125, + "developer": 0.75, + "tools": 0.75, + "inspiration": 0.125, + "business": 0.6666666666666667, + "process": 0.6666666666666667, + "sustain": 0.5, + "confirmed": 0.5, + "type": 0.28125, + "question": 0.75, + "grey": 0.75, + "cmty": 2, + "need-info": 0.5, + "sustenance": 0.5, + "good": 0.75, + "first": 0.75, + "issue": 0.75, + "kind": 0.6666666666666667, + "discussion": 0.6666666666666667, + "palette": 0.5, + "azure": 0.6666666666666667, + "ad": 0.6666666666666667, + "data": 0.6666666666666667, + "collection": 0.6666666666666667, + "external-bugs": 0.5, + "deal": 0.5, + "hacking": 0.5, + "video": 0.5, + "test": 0.75, + "utils": 0.75, + "hsv": 0.5, + "thesis": 0.5, + "pentesting": 0.5, + "design": 0.6666666666666667, + "website": 0.6666666666666667, + "copy": 0.6666666666666667, + "bug": 2, + "guide": 0.5, + "next": 0.6666666666666667, + "meetup!": 0.6666666666666667, + "feat": 0.75, + "ui": 2, + "mastering": 0.5, + "steps": 0.5, + "abandoned": 2, + "badges": 2, + "sponsor": 2, + "assess": 2, + "pr": 0.8, + "merged": 2, + "vlog": 2, + "acceptance": 2, + "testing": 0.8, + "hot": 2, + "tv": 2, + "soundtrack": 2, + "(category)": 0.6666666666666667, + "ci": 0.6666666666666667, + "cd": 0.6666666666666667, + "multi-cloud": 2, + "funding": 2, + "finder": 2, + "difficulty": 2, + "hard": 2, + "documentation": 0.75, + "book": 0.75, + "diary": 2, + "standard": 2, + "colour": 2, + "computer": 2, + "desktop": 2, + "flaw": 2, + "reliability": 2, + "cli-service": 0.75, + "build": 0.75, + "blocked": 2, + "maintenance": 2, + "construction": 2, + "ios": 2, + "planned": 2, + "feature": 0.8333333333333334, + "feature-request": 2, + "rfc": 2, + "image": 0.6666666666666667, + "stock": 2, + "reminder": 2, + "status": 0.8, + "review": 2, + "needed": 2, + "in": 2, + "lang-crystal": 2, + "breaking": 2, + "change": 2, + "phone": 2, + "refactor": 2, + "monologue": 2, + "reviewed-approved": 2, + "new": 0.75, + "best": 0.75, + "practice": 0.75, + "lecture": 2, + "browser": 2, + "aws": 2, + "polish": 0.8, + "nail": 0.8, + "care": 0.8, + "article": 2, + "peer-review": 2, + "writer-needed": 2, + "eventstorming": 2, + "freemasonry": 2, + "icons": 2, + "lean": 2, + "cannot": 2, + "reproduce": 2, + "paas": 2, + "net": 2, + "core": 2, + "wiretap": 2, + "unit-jest": 2, + "instruction": 2, + "infrastructure": 2, + "rgb": 2, + "ideas": 2, + "target": 2, + "windows": 2, + "call": 2, + "iconography": 2, + "promote": 2, + "template": 2, + "support": 0.75, + "first-timers-only": 2, + "java": 2, + "cdn": 2, + "dependency": 2, + "ready": 0.8, + "for": 0.8, + "deploy": 0.8, + "troubleshooting": 2, + "spec": 0.75, + "bigint": 2, + "async": 0.75, + "generators": 0.75, + "proposal": 2, + "e": 2, + "approachability": 2, + "conflicts": 2, + "optimisation": 2, + "kotlin": 2, + "release": 0.8, + "unconfirmed": 2, + "duplicate": 2, + "repeat": 2, + "devops": 2, + "defend": 2, + "blogging": 2, + "friendliness": 2, + "i": 2, + "n": 2, + "cla": 2, + "signed": 2, + "icebox": 2, + "meetup": 2, + "examination": 2, + "mobile": 0.75, + "device": 0.75, + "api": 2, + "decorators": 2, + "addon": 2, + "cracking": 2, + "sparkles": 2, + "enhancement": 0.75, + "hooks": 2, + "improved": 0.75, + "error": 0.75, + "handling": 0.75, + "needs": 0.8, + "repro": 2, + "upkeep": 2, + "reactis": 2, + "to": 0.8, + "be": 2, + "sample": 2, + "white": 0.8, + "check": 0.8, + "mark": 0.8, + "external": 2, + "hacktoberfest": 2, + "lang-dart": 2, + "framework": 2, + "icon": 2, + "grant": 2, + "needs-research": 2, + "cybersec": 2, + "biz": 2, + "internationalization": 2, + "utility-lib": 2, + "qa": 2, + "do": 0.75, + "not": 0.75, + "merge": 0.75, + "hacked": 2, + "how-to": 2, + "beginner-friendly": 2, + "trello": 2, + "os": 2, + "sound": 2, + "docs": 2, + "improvement": 2, + "heavy": 0.8333333333333334, + "plus": 0.8333333333333334, + "sign": 0.8333333333333334, + "request": 0.8333333333333334, + "glitch": 2, + "cx": 2, + "dependencies": 2, + "inquiry": 2, + "deno": 2, + "area": 2, + "crash": 2, + "camera": 2, + "wip": 2, + "configure": 2, + "dom": 2, + "programming": 2, + "font-face": 2, + "rgba": 2, + "parser-specific": 2, + "wikipedia": 2, + "shell": 2, + "contributions": 2, + "tryout": 2, + "thought": 2, + "analysis": 2, + "contenu": 2, + "cli": 2, + "fund": 2, + "investigation": 2, + "basecamp": 2, + "literature": 2, + "socket": 2, + "io": 2, + "client": 0.8, + "user": 2, + "debug": 2, + "information": 2, + "frontend": 2, + "upstream": 2, + "raising": 2, + "hand": 2, + "style": 2, + "clean": 2, + "up": 2, + "motif": 2, + "event": 2, + "help": 2, + "wanted": 2, + "priority": 2, + "medium": 2, + "financial": 0.024691358024691367, + "ruby": 2, + "es": 2, + "warrant": 2, + "cancelled": 2, + "plan": 2, + "hackathon": 2, + "beginner": 2, + "typography": 2, + "counsel": 2, + "recording": 2, + "crowdin": 2, + "eslint": 2, + "rules": 2, + "easy": 2, + "repare": 2, + "conference": 2, + "great": 2, + "insight": 2, + "phd": 2, + "orange": 0.75, + "invalid": 2, + "x": 2, + "changelog": 2, + "e-cypress": 2, + "lipstick": 2, + "-": 2, + "backdoor": 2, + "approved": 2, + "talk": 2, + "subtitle": 2, + "research": 2, + "todo": 0.75, + "spiral": 0.75, + "notepad": 0.75, + "interface": 2, + "critical": 2, + "privacy": 2, + "tests": 2, + "boom": 2, + "web": 2, + "app": 0.8, + "television": 2, + "uat": 2, + "exploit": 2, + "requires": 2, + "travis-yml": 2, + "node": 2, + "dev": 2, + "experience": 2, + "fix": 2, + "backend": 2, + "cleaning": 2, + "internal": 0.8, + "house": 2, + "technical": 2, + "debt": 2, + "weekly-digest": 2, + "shallow": 2, + "renderer": 2, + "commerce": 2, + "ie": 2, + "hsl": 2, + "left": 2, + "out": 2, + "welcome": 2, + "opinions": 2, + "documents": 2, + "legacy": 2, + "grafana": 2, + "react": 2, + "native": 2, + "lang-go": 2, + "tutorial": 2, + "plugin": 2, + "logo": 2, + "refactoring": 2, + "safari": 2, + "saltstack": 2, + "available": 2, + "server": 2, + "rendering": 2, + "htmlfile": 2, + "theorem": 2, + "social": 2, + "internationalisation": 2, + "definition": 2, + "enquire": 2, + "packaging": 2, + "lang-r": 2, + "regression": 2, + "container": 2, + "report": 2, + "performance": 2, + "clickup": 2, + "installer": 2, + "statement": 2, + "gcp": 2, + "opinion": 2, + "accepted": 2, + "html": 2, + "a": 0.8, + "y": 2, + "general": 2, + "js": 2, + "unit": 2, + "speak": 2, + "brainstorming": 2, + "backup": 2, + "language": 2, + "bugfix": 2, + "k": 2, + "s": 2, + "scrum": 2, + "paper": 2, + "library": 2, + "stale": 2, + "optimization": 2, + "show": 2, + "apple": 2, + "low": 2, + "functions": 2, + "gnu": 2, + "linux": 2, + "focus": 2, + "groups": 2, + "dependency-update": 2, + "related": 2, + "bootstrap": 2, + "usability": 2, + "*nix": 2, + "externs": 2, + "critique": 2, + "prince": 2, + "demonstration": 2, + "⬆️": 2, + "memo": 2, + "revisitinfuture": 2, + "tips": 2, + "reference": 2, + "high": 2, + "bug-report": 2, + "babel": 2, + "flashsocket": 2, + "unix": 2, + "npm": 2, + "site": 2, + "chore": 2, + "adapter": 2, + "slides": 2, + "query": 2, + "chat": 2, + "major": 2, + "alpha": 2, + "lock": 2, + "security": 2, + "newsletter": 2, + "verification": 2, + "color": 2, + "containerd": 2, + "doughnut": 2, + "sentry": 2, + "dissertation": 2, + "mentoring": 2, + "confer": 2, + "utilities": 2, + "infosec": 2, + "vulnerability": 2, + "has": 2, + "code": 2, + "teaching": 2, + "protection": 2, + "robot": 2, + "android": 2, + "webaim": 2, + "wontfix": 2, + "triage": 0.5, + "contribution": 2, + "macos": 2, + "assertion": 2, + "blog": 2, + "progress": 2, + "future": 2, + "architecture": 2, + "enhancements": 2, + "pmi": 2, + "promotion": 2, + "validation": 2, + "art": 2, + "film": 2, + "bitbucket": 2, + "cloud": 2, + "labour": 2, + "python": 2, + "suggestion": 2, + "crypto": 2, + "attitudinal": 2, + "electron": 2, + "trial": 2, + "example": 0.8, + "resolution": 2, + "redirect": 2, + "assessment": 2, + "monitor": 2, + "css": 2, + "hack": 2, + "translation": 2, + "opportunity": 2, + "vultr": 2, + "kubernetes": 2, + "wiki": 2, + "parser": 2, + "pwa": 2, + "iphone": 2, + "program": 2, + "finding": 0.0740740740740741, + "digital": 2, + "ocean": 2, + "safeguard": 2, + "iac": 2, + "javascript": 2, + "integration": 2, + "glo": 2, + "porting": 2, + "on": 2, + "hold": 2, + "evaluation": 2, + "go": 0.8, + "must-triage": 2, + "gradle": 2, + "accessibility": 2, + "work": 2, + "other": 2, + "wrangling": 2, + "sast": 2, + "tech-debt": 2, + "entry": 2, + "fault": 2, + "problem": 2, + "brand": 2, + "internal-issue-created": 2, + "pmp": 2, + "bdd": 2, + "checkpoint": 2, + "csharp": 2, + "unreviewed": 2, + "idea": 2, + "feedback": 2, + "requested": 2, + "wcag": 2, + "bugs": 2, + "mentor": 2, + "lib": 2, + "puppet": 2, + "speech": 2, + "balloon": 2, + "finance": 10.125, + "patreon": 10.125, + "c": 0.6666666666666667, + "c++": 0.6666666666666667, + "bulb": 0.75, + "prometheus": 0.5, + "rocket": 0.6666666666666667, + "discuss": 2, + "doc": 2, + "blogs": 2, + "unit-mocha": 2, + "enterprise": 2, + "scheduler": 2, + "class": 2, + "fields": 2, + "commercial": 2, + "infra": 2, + "terraform": 2, + "figure": 2, + "layout": 2, + "specification": 2, + "vector": 0.6666666666666667, + "greenkeeper": 2, + "tdd": 2, + "raster": 2, + "mishap": 2, + "sketch": 2, + "released": 2, + "font": 2, + "deployment": 0.6666666666666667, + "e-nightwatch": 2, + "engine": 2, + "vulns": 2, + "syntax": 2, + "deliverable": 2, + "manual": 2, + "osx": 2, + "axe": 2, + "sendgrid": 2, + "operating": 2, + "system": 2, + "advance": 2, + "workflow": 2, + "safety": 2, + "phonetic": 2, + "concept": 2, + "lerna": 2, + "readme": 2, + "music": 2, + "failing": 2, + "customer": 2, + "extension": 2, + "lint": 2, + "optimizing": 2, + "compiler": 2, + "css-select": 2, + "figma": 2, + "closed": 0.8, + "due": 0.8, + "inactivity": 0.8, + "jira": 2, + "survey": 2, + "behavioral": 2, + "multi": 2, + "module": 2, + "mixing": 2, + "backlog": 2, + "update": 2, + "present": 2, + "modules": 2, + "lang-julia": 2, + "vuln": 2, + "demo": 2, + "corporate": 2, + "spam": 2, + "handshakes": 2, + "platform": 2, + "wave": 2, + "ansible": 2, + "lang-convert": 2, + "gdpr": 2, + "classes": 2, + "websocket": 2, + "speach": 2, + "b": 2, + "chef": 2, + "reviewed-changes-requested": 2, + "youtube": 2, + "(legacy)": 2, + "mentorship": 2, + "typescript": 2, + "didactic": 2, + "story": 2, + "academia": 2 + }, + "negative_weights": { + "backing": 0.000244140625, + "bias": 3.767190871046154, + "investment": 0.015625, + "fiscal": 0.015625, + "backer": 0.001953125, + "opencollective": 0.0625, + "economics": 0.0625, + "component": 3.515625, + "developer": 1.875, + "tools": 1.875, + "inspiration": 5.0625, + "business": 2, + "process": 2, + "sustain": 2.25, + "confirmed": 2.25, + "type": 3.515625, + "question": 1.875, + "grey": 1.875, + "cmty": 1, + "need-info": 2.25, + "sustenance": 2.25, + "good": 1.875, + "first": 1.875, + "issue": 1.875, + "kind": 2, + "discussion": 2, + "palette": 2.25, + "azure": 2, + "ad": 2, + "data": 2, + "collection": 2, + "external-bugs": 2.25, + "deal": 2.25, + "hacking": 2.25, + "video": 2.25, + "test": 1.875, + "utils": 1.875, + "hsv": 2.25, + "thesis": 2.25, + "pentesting": 2.25, + "design": 2, + "website": 2, + "copy": 2, + "bug": 1, + "guide": 2.25, + "next": 2, + "meetup!": 2, + "feat": 1.875, + "ui": 1, + "mastering": 2.25, + "steps": 2.25, + "abandoned": 1, + "badges": 1, + "sponsor": 1, + "assess": 1, + "pr": 1.7999999999999998, + "merged": 1, + "vlog": 1, + "acceptance": 1, + "testing": 1.7999999999999998, + "hot": 1, + "tv": 1, + "soundtrack": 1, + "(category)": 2, + "ci": 2, + "cd": 2, + "multi-cloud": 1, + "funding": 1, + "finder": 1, + "difficulty": 1, + "hard": 1, + "documentation": 1.875, + "book": 1.875, + "diary": 1, + "standard": 1, + "colour": 1, + "computer": 1, + "desktop": 1, + "flaw": 1, + "reliability": 1, + "cli-service": 1.875, + "build": 1.875, + "blocked": 1, + "maintenance": 1, + "construction": 1, + "ios": 1, + "planned": 1, + "feature": 1.75, + "feature-request": 1, + "rfc": 1, + "image": 2, + "stock": 1, + "reminder": 1, + "status": 1.7999999999999998, + "review": 1, + "needed": 1, + "in": 1, + "lang-crystal": 1, + "breaking": 1, + "change": 1, + "phone": 1, + "refactor": 1, + "monologue": 1, + "reviewed-approved": 1, + "new": 1.875, + "best": 1.875, + "practice": 1.875, + "lecture": 1, + "browser": 1, + "aws": 1, + "polish": 1.7999999999999998, + "nail": 1.7999999999999998, + "care": 1.7999999999999998, + "article": 1, + "peer-review": 1, + "writer-needed": 1, + "eventstorming": 1, + "freemasonry": 1, + "icons": 1, + "lean": 1, + "cannot": 1, + "reproduce": 1, + "paas": 1, + "net": 1, + "core": 1, + "wiretap": 1, + "unit-jest": 1, + "instruction": 1, + "infrastructure": 1, + "rgb": 1, + "ideas": 1, + "target": 1, + "windows": 1, + "call": 1, + "iconography": 1, + "promote": 1, + "template": 1, + "support": 1.875, + "first-timers-only": 1, + "java": 1, + "cdn": 1, + "dependency": 1, + "ready": 1.7999999999999998, + "for": 1.7999999999999998, + "deploy": 1.7999999999999998, + "troubleshooting": 1, + "spec": 1.875, + "bigint": 1, + "async": 1.875, + "generators": 1.875, + "proposal": 1, + "e": 1, + "approachability": 1, + "conflicts": 1, + "optimisation": 1, + "kotlin": 1, + "release": 1.7999999999999998, + "unconfirmed": 1, + "duplicate": 1, + "repeat": 1, + "devops": 1, + "defend": 1, + "blogging": 1, + "friendliness": 1, + "i": 1, + "n": 1, + "cla": 1, + "signed": 1, + "icebox": 1, + "meetup": 1, + "examination": 1, + "mobile": 1.875, + "device": 1.875, + "api": 1, + "decorators": 1, + "addon": 1, + "cracking": 1, + "sparkles": 1, + "enhancement": 1.875, + "hooks": 1, + "improved": 1.875, + "error": 1.875, + "handling": 1.875, + "needs": 1.7999999999999998, + "repro": 1, + "upkeep": 1, + "reactis": 1, + "to": 1.7999999999999998, + "be": 1, + "sample": 1, + "white": 1.7999999999999998, + "check": 1.7999999999999998, + "mark": 1.7999999999999998, + "external": 1, + "hacktoberfest": 1, + "lang-dart": 1, + "framework": 1, + "icon": 1, + "grant": 1, + "needs-research": 1, + "cybersec": 1, + "biz": 1, + "internationalization": 1, + "utility-lib": 1, + "qa": 1, + "do": 1.875, + "not": 1.875, + "merge": 1.875, + "hacked": 1, + "how-to": 1, + "beginner-friendly": 1, + "trello": 1, + "os": 1, + "sound": 1, + "docs": 1, + "improvement": 1, + "heavy": 1.75, + "plus": 1.75, + "sign": 1.75, + "request": 1.75, + "glitch": 1, + "cx": 1, + "dependencies": 1, + "inquiry": 1, + "deno": 1, + "area": 1, + "crash": 1, + "camera": 1, + "wip": 1, + "configure": 1, + "dom": 1, + "programming": 1, + "font-face": 1, + "rgba": 1, + "parser-specific": 1, + "wikipedia": 1, + "shell": 1, + "contributions": 1, + "tryout": 1, + "thought": 1, + "analysis": 1, + "contenu": 1, + "cli": 1, + "fund": 1, + "investigation": 1, + "basecamp": 1, + "literature": 1, + "socket": 1, + "io": 1, + "client": 1.7999999999999998, + "user": 1, + "debug": 1, + "information": 1, + "frontend": 1, + "upstream": 1, + "raising": 1, + "hand": 1, + "style": 1, + "clean": 1, + "up": 1, + "motif": 1, + "event": 1, + "help": 1, + "wanted": 1, + "priority": 1, + "medium": 1, + "financial": 16, + "ruby": 1, + "es": 1, + "warrant": 1, + "cancelled": 1, + "plan": 1, + "hackathon": 1, + "beginner": 1, + "typography": 1, + "counsel": 1, + "recording": 1, + "crowdin": 1, + "eslint": 1, + "rules": 1, + "easy": 1, + "repare": 1, + "conference": 1, + "great": 1, + "insight": 1, + "phd": 1, + "orange": 1.875, + "invalid": 1, + "x": 1, + "changelog": 1, + "e-cypress": 1, + "lipstick": 1, + "-": 1, + "backdoor": 1, + "approved": 1, + "talk": 1, + "subtitle": 1, + "research": 1, + "todo": 1.875, + "spiral": 1.875, + "notepad": 1.875, + "interface": 1, + "critical": 1, + "privacy": 1, + "tests": 1, + "boom": 1, + "web": 1, + "app": 1.7999999999999998, + "television": 1, + "uat": 1, + "exploit": 1, + "requires": 1, + "travis-yml": 1, + "node": 1, + "dev": 1, + "experience": 1, + "fix": 1, + "backend": 1, + "cleaning": 1, + "internal": 1.7999999999999998, + "house": 1, + "technical": 1, + "debt": 1, + "weekly-digest": 1, + "shallow": 1, + "renderer": 1, + "commerce": 1, + "ie": 1, + "hsl": 1, + "left": 1, + "out": 1, + "welcome": 1, + "opinions": 1, + "documents": 1, + "legacy": 1, + "grafana": 1, + "react": 1, + "native": 1, + "lang-go": 1, + "tutorial": 1, + "plugin": 1, + "logo": 1, + "refactoring": 1, + "safari": 1, + "saltstack": 1, + "available": 1, + "server": 1, + "rendering": 1, + "htmlfile": 1, + "theorem": 1, + "social": 1, + "internationalisation": 1, + "definition": 1, + "enquire": 1, + "packaging": 1, + "lang-r": 1, + "regression": 1, + "container": 1, + "report": 1, + "performance": 1, + "clickup": 1, + "installer": 1, + "statement": 1, + "gcp": 1, + "opinion": 1, + "accepted": 1, + "html": 1, + "a": 1.7999999999999998, + "y": 1, + "general": 1, + "js": 1, + "unit": 1, + "speak": 1, + "brainstorming": 1, + "backup": 1, + "language": 1, + "bugfix": 1, + "k": 1, + "s": 1, + "scrum": 1, + "paper": 1, + "library": 1, + "stale": 1, + "optimization": 1, + "show": 1, + "apple": 1, + "low": 1, + "functions": 1, + "gnu": 1, + "linux": 1, + "focus": 1, + "groups": 1, + "dependency-update": 1, + "related": 1, + "bootstrap": 1, + "usability": 1, + "*nix": 1, + "externs": 1, + "critique": 1, + "prince": 1, + "demonstration": 1, + "⬆️": 1, + "memo": 1, + "revisitinfuture": 1, + "tips": 1, + "reference": 1, + "high": 1, + "bug-report": 1, + "babel": 1, + "flashsocket": 1, + "unix": 1, + "npm": 1, + "site": 1, + "chore": 1, + "adapter": 1, + "slides": 1, + "query": 1, + "chat": 1, + "major": 1, + "alpha": 1, + "lock": 1, + "security": 1, + "newsletter": 1, + "verification": 1, + "color": 1, + "containerd": 1, + "doughnut": 1, + "sentry": 1, + "dissertation": 1, + "mentoring": 1, + "confer": 1, + "utilities": 1, + "infosec": 1, + "vulnerability": 1, + "has": 1, + "code": 1, + "teaching": 1, + "protection": 1, + "robot": 1, + "android": 1, + "webaim": 1, + "wontfix": 1, + "triage": 2.25, + "contribution": 1, + "macos": 1, + "assertion": 1, + "blog": 1, + "progress": 1, + "future": 1, + "architecture": 1, + "enhancements": 1, + "pmi": 1, + "promotion": 1, + "validation": 1, + "art": 1, + "film": 1, + "bitbucket": 1, + "cloud": 1, + "labour": 1, + "python": 1, + "suggestion": 1, + "crypto": 1, + "attitudinal": 1, + "electron": 1, + "trial": 1, + "example": 1.7999999999999998, + "resolution": 1, + "redirect": 1, + "assessment": 1, + "monitor": 1, + "css": 1, + "hack": 1, + "translation": 1, + "opportunity": 1, + "vultr": 1, + "kubernetes": 1, + "wiki": 1, + "parser": 1, + "pwa": 1, + "iphone": 1, + "program": 1, + "finding": 8, + "digital": 1, + "ocean": 1, + "safeguard": 1, + "iac": 1, + "javascript": 1, + "integration": 1, + "glo": 1, + "porting": 1, + "on": 1, + "hold": 1, + "evaluation": 1, + "go": 1.7999999999999998, + "must-triage": 1, + "gradle": 1, + "accessibility": 1, + "work": 1, + "other": 1, + "wrangling": 1, + "sast": 1, + "tech-debt": 1, + "entry": 1, + "fault": 1, + "problem": 1, + "brand": 1, + "internal-issue-created": 1, + "pmp": 1, + "bdd": 1, + "checkpoint": 1, + "csharp": 1, + "unreviewed": 1, + "idea": 1, + "feedback": 1, + "requested": 1, + "wcag": 1, + "bugs": 1, + "mentor": 1, + "lib": 1, + "puppet": 1, + "speech": 1, + "balloon": 1, + "finance": 0.0625, + "patreon": 0.0625, + "c": 2, + "c++": 2, + "bulb": 1.875, + "prometheus": 2.25, + "rocket": 2, + "discuss": 1, + "doc": 1, + "blogs": 1, + "unit-mocha": 1, + "enterprise": 1, + "scheduler": 1, + "class": 1, + "fields": 1, + "commercial": 1, + "infra": 1, + "terraform": 1, + "figure": 1, + "layout": 1, + "specification": 1, + "vector": 2, + "greenkeeper": 1, + "tdd": 1, + "raster": 1, + "mishap": 1, + "sketch": 1, + "released": 1, + "font": 1, + "deployment": 2, + "e-nightwatch": 1, + "engine": 1, + "vulns": 1, + "syntax": 1, + "deliverable": 1, + "manual": 1, + "osx": 1, + "axe": 1, + "sendgrid": 1, + "operating": 1, + "system": 1, + "advance": 1, + "workflow": 1, + "safety": 1, + "phonetic": 1, + "concept": 1, + "lerna": 1, + "readme": 1, + "music": 1, + "failing": 1, + "customer": 1, + "extension": 1, + "lint": 1, + "optimizing": 1, + "compiler": 1, + "css-select": 1, + "figma": 1, + "closed": 1.7999999999999998, + "due": 1.7999999999999998, + "inactivity": 1.7999999999999998, + "jira": 1, + "survey": 1, + "behavioral": 1, + "multi": 1, + "module": 1, + "mixing": 1, + "backlog": 1, + "update": 1, + "present": 1, + "modules": 1, + "lang-julia": 1, + "vuln": 1, + "demo": 1, + "corporate": 1, + "spam": 1, + "handshakes": 1, + "platform": 1, + "wave": 1, + "ansible": 1, + "lang-convert": 1, + "gdpr": 1, + "classes": 1, + "websocket": 1, + "speach": 1, + "b": 1, + "chef": 1, + "reviewed-changes-requested": 1, + "youtube": 1, + "(legacy)": 1, + "mentorship": 1, + "typescript": 1, + "didactic": 1, + "story": 1, + "academia": 1 + }, + "positive_weights_sum": {}, + "negative_weights_sum": {} + }, + "review": { + "positive_weights": { + "peer-review": 22.78125, + "bias": 2.1292051010376156e-30, + "review": 8.88738773223703, + "check": 16.607531249999997, + "critique": 10.125, + "validation": 22.78125, + "checkpoint": 10.125, + "component": 0.28125, + "developer": 0.75, + "tools": 0.75, + "inspiration": 0.125, + "business": 0.6666666666666667, + "process": 0.6666666666666667, + "sustain": 0.5, + "confirmed": 0.5, + "type": 0.28125, + "question": 0.75, + "grey": 0.75, + "cmty": 2, + "need-info": 0.5, + "sustenance": 0.5, + "good": 0.75, + "first": 0.75, + "issue": 0.75, + "kind": 0.6666666666666667, + "discussion": 0.6666666666666667, + "palette": 0.5, + "azure": 0.6666666666666667, + "ad": 0.6666666666666667, + "data": 0.008230452674897124, + "collection": 0.6666666666666667, + "external-bugs": 0.5, + "deal": 0.5, + "hacking": 0.5, + "video": 0.5, + "test": 0.75, + "utils": 0.75, + "hsv": 0.5, + "thesis": 0.5, + "pentesting": 0.5, + "design": 0.5, + "website": 0.6666666666666667, + "copy": 0.6666666666666667, + "bug": 0.6666666666666667, + "guide": 0.5, + "next": 0.6666666666666667, + "meetup!": 0.6666666666666667, + "feat": 0.75, + "ui": 2, + "mastering": 0.5, + "steps": 2, + "abandoned": 2, + "badges": 2, + "sponsor": 2, + "assess": 2, + "pr": 0.11250000000000002, + "merged": 2, + "vlog": 2, + "acceptance": 2, + "testing": 0.12800000000000003, + "hot": 2, + "tv": 2, + "soundtrack": 2, + "(category)": 2, + "ci": 0.6666666666666667, + "cd": 0.6666666666666667, + "multi-cloud": 2, + "funding": 0.6666666666666667, + "finder": 0.6666666666666667, + "difficulty": 0.6666666666666667, + "hard": 0.6666666666666667, + "documentation": 0.6666666666666667, + "book": 0.6666666666666667, + "diary": 2, + "standard": 2, + "colour": 2, + "computer": 2, + "desktop": 2, + "flaw": 2, + "reliability": 2, + "cli-service": 0.75, + "build": 0.75, + "blocked": 2, + "maintenance": 2, + "construction": 2, + "ios": 2, + "planned": 2, + "feature": 0.8333333333333333, + "feature-request": 2, + "rfc": 2, + "image": 0.6666666666666667, + "stock": 2, + "reminder": 2, + "status": 0.1125, + "needed": 0.28125, + "in": 0.0740740740740741, + "lang-crystal": 2, + "breaking": 2, + "change": 0.75, + "phone": 2, + "refactor": 2, + "monologue": 2, + "reviewed-approved": 2, + "new": 0.75, + "best": 0.75, + "practice": 0.75, + "lecture": 2, + "backing": 2, + "browser": 2, + "aws": 2, + "polish": 0.8, + "nail": 0.8, + "care": 0.8, + "article": 2, + "writer-needed": 2, + "eventstorming": 2, + "freemasonry": 2, + "icons": 2, + "lean": 2, + "cannot": 2, + "reproduce": 2, + "paas": 2, + "net": 2, + "core": 2, + "wiretap": 2, + "unit-jest": 2, + "instruction": 2, + "infrastructure": 2, + "rgb": 2, + "ideas": 2, + "target": 0.6666666666666667, + "windows": 2, + "call": 2, + "iconography": 2, + "promote": 2, + "template": 2, + "support": 0.75, + "first-timers-only": 2, + "java": 2, + "cdn": 2, + "dependency": 2, + "ready": 2, + "for": 2, + "deploy": 2, + "troubleshooting": 2, + "spec": 0.28125, + "bigint": 2, + "async": 0.75, + "generators": 0.75, + "proposal": 2, + "e": 2, + "approachability": 2, + "investment": 2, + "conflicts": 2, + "optimisation": 2, + "kotlin": 2, + "release": 2, + "unconfirmed": 2, + "duplicate": 2, + "repeat": 2, + "devops": 2, + "defend": 2, + "blogging": 2, + "friendliness": 2, + "i": 2, + "n": 2, + "cla": 2, + "signed": 2, + "icebox": 2, + "meetup": 2, + "examination": 2, + "mobile": 0.75, + "device": 0.75, + "api": 2, + "decorators": 2, + "addon": 2, + "cracking": 2, + "sparkles": 2, + "enhancement": 0.75, + "hooks": 2, + "improved": 0.75, + "error": 0.75, + "handling": 0.75, + "needs": 0.03125, + "repro": 2, + "upkeep": 2, + "reactis": 2, + "to": 0.8, + "be": 2, + "sample": 2, + "white": 0.12800000000000003, + "mark": 0.12800000000000003, + "external": 2, + "hacktoberfest": 2, + "lang-dart": 2, + "framework": 2, + "icon": 2, + "grant": 2, + "needs-research": 2, + "cybersec": 2, + "biz": 2, + "internationalization": 2, + "utility-lib": 2, + "qa": 2, + "do": 0.75, + "not": 0.75, + "merge": 0.75, + "hacked": 2, + "how-to": 2, + "beginner-friendly": 2, + "trello": 2, + "os": 2, + "sound": 2, + "docs": 2, + "improvement": 2, + "heavy": 0.8333333333333333, + "plus": 0.8333333333333333, + "sign": 0.8333333333333333, + "request": 0.3333333333333333, + "glitch": 2, + "cx": 2, + "dependencies": 2, + "inquiry": 2, + "deno": 2, + "area": 2, + "crash": 2, + "camera": 2, + "wip": 2, + "configure": 2, + "dom": 2, + "programming": 2, + "font-face": 2, + "rgba": 2, + "parser-specific": 2, + "wikipedia": 2, + "shell": 2, + "contributions": 2, + "tryout": 2, + "thought": 2, + "analysis": 16.218292236328132, + "contenu": 2, + "cli": 2, + "fund": 2, + "investigation": 2, + "basecamp": 2, + "literature": 0.024691358024691367, + "socket": 0.75, + "io": 0.75, + "client": 0.75, + "fiscal": 2, + "user": 2, + "debug": 2, + "information": 2, + "frontend": 2, + "upstream": 0.75, + "raising": 2, + "hand": 2, + "style": 2, + "clean": 2, + "up": 2, + "motif": 2, + "event": 0.6666666666666667, + "help": 0.6666666666666667, + "wanted": 0.6666666666666667, + "priority": 2, + "medium": 2, + "financial": 2, + "ruby": 2, + "es": 2, + "warrant": 2, + "cancelled": 2, + "plan": 2, + "hackathon": 2, + "beginner": 2, + "typography": 2, + "counsel": 2, + "recording": 2, + "crowdin": 2, + "eslint": 2, + "rules": 2, + "easy": 2, + "repare": 2, + "conference": 2, + "great": 2, + "insight": 2, + "phd": 2, + "orange": 2, + "invalid": 2, + "x": 2, + "changelog": 2, + "e-cypress": 2, + "lipstick": 2, + "-": 0.6666666666666667, + "backdoor": 2, + "approved": 2, + "talk": 2, + "subtitle": 2, + "research": 2, + "todo": 0.75, + "spiral": 0.75, + "notepad": 0.75, + "interface": 2, + "critical": 2, + "privacy": 2, + "tests": 2, + "boom": 2, + "web": 2, + "app": 2, + "television": 2, + "uat": 2, + "backer": 2, + "exploit": 2, + "requires": 0.75, + "travis-yml": 2, + "node": 2, + "dev": 2, + "experience": 0.6666666666666667, + "fix": 2, + "backend": 2, + "cleaning": 2, + "internal": 2, + "house": 2, + "technical": 2, + "debt": 2, + "weekly-digest": 2, + "shallow": 2, + "renderer": 2, + "commerce": 2, + "ie": 0.5, + "hsl": 2, + "left": 2, + "out": 2, + "welcome": 2, + "opinions": 2, + "documents": 2, + "legacy": 2, + "grafana": 2, + "react": 2, + "native": 2, + "lang-go": 2, + "tutorial": 2, + "plugin": 2, + "logo": 2, + "refactoring": 2, + "safari": 2, + "saltstack": 2, + "available": 2, + "server": 2, + "rendering": 2, + "htmlfile": 2, + "theorem": 2, + "social": 2, + "internationalisation": 2, + "definition": 0.6666666666666667, + "enquire": 2, + "packaging": 2, + "lang-r": 2, + "regression": 0.5, + "container": 2, + "opencollective": 2, + "report": 2, + "performance": 2, + "clickup": 2, + "installer": 2, + "statement": 2, + "gcp": 2, + "opinion": 2, + "accepted": 2, + "html": 2, + "a": 2, + "y": 2, + "general": 2, + "js": 2, + "unit": 2, + "speak": 2, + "brainstorming": 2, + "backup": 2, + "language": 2, + "bugfix": 2, + "k": 2, + "s": 2, + "scrum": 2, + "paper": 2, + "library": 2, + "stale": 2, + "optimization": 2, + "show": 2, + "apple": 2, + "low": 2, + "functions": 2, + "gnu": 2, + "linux": 2, + "focus": 2, + "groups": 2, + "dependency-update": 2, + "related": 2, + "bootstrap": 2, + "usability": 2, + "*nix": 2, + "externs": 2, + "prince": 2, + "demonstration": 2, + "⬆️": 2, + "memo": 2, + "revisitinfuture": 2, + "tips": 2, + "reference": 2, + "high": 2, + "bug-report": 2, + "babel": 2, + "flashsocket": 2, + "unix": 2, + "npm": 2, + "site": 2, + "chore": 2, + "adapter": 2, + "slides": 2, + "query": 2, + "chat": 2, + "major": 2, + "alpha": 2, + "lock": 2, + "security": 2, + "newsletter": 2, + "verification": 2, + "color": 2, + "containerd": 2, + "doughnut": 2, + "sentry": 2, + "dissertation": 2, + "mentoring": 2, + "confer": 2, + "utilities": 2, + "infosec": 2, + "vulnerability": 2, + "has": 2, + "code": 0.8, + "teaching": 2, + "protection": 2, + "robot": 2, + "android": 2, + "webaim": 2, + "wontfix": 2, + "triage": 0.5, + "contribution": 2, + "macos": 2, + "assertion": 2, + "blog": 2, + "progress": 2, + "future": 0.75, + "architecture": 0.75, + "enhancements": 0.75, + "pmi": 2, + "promotion": 2, + "art": 2, + "film": 2, + "bitbucket": 2, + "cloud": 2, + "labour": 2, + "python": 2, + "suggestion": 2, + "crypto": 2, + "attitudinal": 2, + "electron": 2, + "trial": 2, + "example": 2, + "resolution": 2, + "redirect": 2, + "assessment": 2, + "monitor": 2, + "css": 2, + "hack": 2, + "translation": 2, + "opportunity": 2, + "vultr": 2, + "kubernetes": 2, + "wiki": 2, + "parser": 2, + "pwa": 2, + "iphone": 2, + "program": 2, + "finding": 2, + "digital": 2, + "ocean": 2, + "safeguard": 2, + "iac": 2, + "javascript": 2, + "integration": 2, + "glo": 2, + "porting": 2, + "on": 0.6666666666666667, + "hold": 0.6666666666666667, + "evaluation": 2, + "go": 0.5, + "must-triage": 2, + "gradle": 2, + "accessibility": 2, + "work": 2, + "other": 2, + "wrangling": 2, + "sast": 2, + "tech-debt": 2, + "entry": 2, + "fault": 2, + "problem": 2, + "brand": 2, + "internal-issue-created": 2, + "pmp": 2, + "bdd": 2, + "csharp": 2, + "unreviewed": 2, + "idea": 2, + "feedback": 2, + "requested": 2, + "wcag": 2, + "bugs": 2, + "mentor": 2, + "economics": 2, + "lib": 2, + "puppet": 2, + "speech": 2, + "balloon": 2, + "survey": 22.78125, + "c": 0.6666666666666667, + "c++": 0.6666666666666667, + "bulb": 0.75, + "prometheus": 0.5, + "rocket": 0.6666666666666667, + "discuss": 2, + "doc": 0.5, + "blogs": 0.5, + "unit-mocha": 2, + "enterprise": 0.5, + "scheduler": 2, + "class": 0.75, + "fields": 0.75, + "commercial": 0.5, + "infra": 0.5, + "terraform": 0.5, + "figure": 0.5, + "layout": 0.5, + "specification": 2, + "vector": 0.6666666666666667, + "greenkeeper": 2, + "tdd": 2, + "raster": 2, + "mishap": 2, + "sketch": 2, + "released": 2, + "font": 2, + "deployment": 0.6666666666666667, + "e-nightwatch": 2, + "engine": 0.6666666666666667, + "vulns": 0.6666666666666667, + "syntax": 2, + "deliverable": 2, + "manual": 2, + "osx": 0.6666666666666667, + "axe": 2, + "sendgrid": 2, + "operating": 0.6666666666666667, + "system": 0.6666666666666667, + "advance": 2, + "workflow": 2, + "safety": 2, + "phonetic": 2, + "concept": 2, + "lerna": 2, + "readme": 2, + "music": 2, + "failing": 2, + "customer": 0.6666666666666667, + "extension": 2, + "lint": 2, + "optimizing": 2, + "compiler": 2, + "css-select": 2, + "figma": 2, + "finance": 2, + "closed": 0.8, + "due": 0.8, + "inactivity": 0.8, + "jira": 2, + "behavioral": 2, + "multi": 0.6666666666666667, + "module": 0.6666666666666667, + "mixing": 2, + "backlog": 0.6666666666666667, + "update": 2, + "present": 2, + "modules": 2, + "lang-julia": 2, + "vuln": 2, + "demo": 2, + "corporate": 0.6666666666666667, + "spam": 2, + "handshakes": 2, + "platform": 2, + "wave": 2, + "ansible": 2, + "lang-convert": 2, + "gdpr": 2, + "classes": 2, + "websocket": 2, + "speach": 2, + "b": 2, + "chef": 2, + "patreon": 2, + "reviewed-changes-requested": 2, + "youtube": 2, + "(legacy)": 2, + "mentorship": 2, + "typescript": 2, + "didactic": 2, + "story": 2, + "academia": 2 + }, + "negative_weights": { + "peer-review": 0.015625, + "bias": 2.189950585354234, + "review": 1.0359713087382259e-8, + "check": 0.0014238281249999995, + "critique": 0.0625, + "validation": 0.015625, + "checkpoint": 0.0625, + "component": 3.515625, + "developer": 1.875, + "tools": 1.875, + "inspiration": 5.0625, + "business": 2, + "process": 2, + "sustain": 2.25, + "confirmed": 2.25, + "type": 3.515625, + "question": 1.875, + "grey": 1.875, + "cmty": 1, + "need-info": 2.25, + "sustenance": 2.25, + "good": 1.875, + "first": 1.875, + "issue": 1.875, + "kind": 2, + "discussion": 2, + "palette": 2.25, + "azure": 2, + "ad": 2, + "data": 32, + "collection": 2, + "external-bugs": 2.25, + "deal": 2.25, + "hacking": 2.25, + "video": 2.25, + "test": 1.875, + "utils": 1.875, + "hsv": 2.25, + "thesis": 2.25, + "pentesting": 2.25, + "design": 2.25, + "website": 2, + "copy": 2, + "bug": 2, + "guide": 2.25, + "next": 2, + "meetup!": 2, + "feat": 1.875, + "ui": 1, + "mastering": 2.25, + "steps": 1, + "abandoned": 1, + "badges": 1, + "sponsor": 1, + "assess": 1, + "pr": 6.328124999999999, + "merged": 1, + "vlog": 1, + "acceptance": 1, + "testing": 5.831999999999998, + "hot": 1, + "tv": 1, + "soundtrack": 1, + "(category)": 1, + "ci": 2, + "cd": 2, + "multi-cloud": 1, + "funding": 2, + "finder": 2, + "difficulty": 2, + "hard": 2, + "documentation": 2, + "book": 2, + "diary": 1, + "standard": 1, + "colour": 1, + "computer": 1, + "desktop": 1, + "flaw": 1, + "reliability": 1, + "cli-service": 1.875, + "build": 1.875, + "blocked": 1, + "maintenance": 1, + "construction": 1, + "ios": 1, + "planned": 1, + "feature": 1.75, + "feature-request": 1, + "rfc": 1, + "image": 2, + "stock": 1, + "reminder": 1, + "status": 6.328124999999999, + "needed": 3.515625, + "in": 8, + "lang-crystal": 1, + "breaking": 1, + "change": 1.875, + "phone": 1, + "refactor": 1, + "monologue": 1, + "reviewed-approved": 1, + "new": 1.875, + "best": 1.875, + "practice": 1.875, + "lecture": 1, + "backing": 1, + "browser": 1, + "aws": 1, + "polish": 1.7999999999999998, + "nail": 1.7999999999999998, + "care": 1.7999999999999998, + "article": 1, + "writer-needed": 1, + "eventstorming": 1, + "freemasonry": 1, + "icons": 1, + "lean": 1, + "cannot": 1, + "reproduce": 1, + "paas": 1, + "net": 1, + "core": 1, + "wiretap": 1, + "unit-jest": 1, + "instruction": 1, + "infrastructure": 1, + "rgb": 1, + "ideas": 1, + "target": 2, + "windows": 1, + "call": 1, + "iconography": 1, + "promote": 1, + "template": 1, + "support": 1.875, + "first-timers-only": 1, + "java": 1, + "cdn": 1, + "dependency": 1, + "ready": 1, + "for": 1, + "deploy": 1, + "troubleshooting": 1, + "spec": 3.515625, + "bigint": 1, + "async": 1.875, + "generators": 1.875, + "proposal": 1, + "e": 1, + "approachability": 1, + "investment": 1, + "conflicts": 1, + "optimisation": 1, + "kotlin": 1, + "release": 1, + "unconfirmed": 1, + "duplicate": 1, + "repeat": 1, + "devops": 1, + "defend": 1, + "blogging": 1, + "friendliness": 1, + "i": 1, + "n": 1, + "cla": 1, + "signed": 1, + "icebox": 1, + "meetup": 1, + "examination": 1, + "mobile": 1.875, + "device": 1.875, + "api": 1, + "decorators": 1, + "addon": 1, + "cracking": 1, + "sparkles": 1, + "enhancement": 1.875, + "hooks": 1, + "improved": 1.875, + "error": 1.875, + "handling": 1.875, + "needs": 14.0625, + "repro": 1, + "upkeep": 1, + "reactis": 1, + "to": 1.7999999999999998, + "be": 1, + "sample": 1, + "white": 5.831999999999998, + "mark": 5.831999999999998, + "external": 1, + "hacktoberfest": 1, + "lang-dart": 1, + "framework": 1, + "icon": 1, + "grant": 1, + "needs-research": 1, + "cybersec": 1, + "biz": 1, + "internationalization": 1, + "utility-lib": 1, + "qa": 1, + "do": 1.875, + "not": 1.875, + "merge": 1.875, + "hacked": 1, + "how-to": 1, + "beginner-friendly": 1, + "trello": 1, + "os": 1, + "sound": 1, + "docs": 1, + "improvement": 1, + "heavy": 1.75, + "plus": 1.75, + "sign": 1.75, + "request": 3.1499999999999995, + "glitch": 1, + "cx": 1, + "dependencies": 1, + "inquiry": 1, + "deno": 1, + "area": 1, + "crash": 1, + "camera": 1, + "wip": 1, + "configure": 1, + "dom": 1, + "programming": 1, + "font-face": 1, + "rgba": 1, + "parser-specific": 1, + "wikipedia": 1, + "shell": 1, + "contributions": 1, + "tryout": 1, + "thought": 1, + "analysis": 0.000244140625, + "contenu": 1, + "cli": 1, + "fund": 1, + "investigation": 1, + "basecamp": 1, + "literature": 16, + "socket": 1.875, + "io": 1.875, + "client": 1.875, + "fiscal": 1, + "user": 1, + "debug": 1, + "information": 1, + "frontend": 1, + "upstream": 1.875, + "raising": 1, + "hand": 1, + "style": 1, + "clean": 1, + "up": 1, + "motif": 1, + "event": 2, + "help": 2, + "wanted": 2, + "priority": 1, + "medium": 1, + "financial": 1, + "ruby": 1, + "es": 1, + "warrant": 1, + "cancelled": 1, + "plan": 1, + "hackathon": 1, + "beginner": 1, + "typography": 1, + "counsel": 1, + "recording": 1, + "crowdin": 1, + "eslint": 1, + "rules": 1, + "easy": 1, + "repare": 1, + "conference": 1, + "great": 1, + "insight": 1, + "phd": 1, + "orange": 1, + "invalid": 1, + "x": 1, + "changelog": 1, + "e-cypress": 1, + "lipstick": 1, + "-": 2, + "backdoor": 1, + "approved": 1, + "talk": 1, + "subtitle": 1, + "research": 1, + "todo": 1.875, + "spiral": 1.875, + "notepad": 1.875, + "interface": 1, + "critical": 1, + "privacy": 1, + "tests": 1, + "boom": 1, + "web": 1, + "app": 1, + "television": 1, + "uat": 1, + "backer": 1, + "exploit": 1, + "requires": 1.875, + "travis-yml": 1, + "node": 1, + "dev": 1, + "experience": 2, + "fix": 1, + "backend": 1, + "cleaning": 1, + "internal": 1, + "house": 1, + "technical": 1, + "debt": 1, + "weekly-digest": 1, + "shallow": 1, + "renderer": 1, + "commerce": 1, + "ie": 2.25, + "hsl": 1, + "left": 1, + "out": 1, + "welcome": 1, + "opinions": 1, + "documents": 1, + "legacy": 1, + "grafana": 1, + "react": 1, + "native": 1, + "lang-go": 1, + "tutorial": 1, + "plugin": 1, + "logo": 1, + "refactoring": 1, + "safari": 1, + "saltstack": 1, + "available": 1, + "server": 1, + "rendering": 1, + "htmlfile": 1, + "theorem": 1, + "social": 1, + "internationalisation": 1, + "definition": 2, + "enquire": 1, + "packaging": 1, + "lang-r": 1, + "regression": 2.25, + "container": 1, + "opencollective": 1, + "report": 1, + "performance": 1, + "clickup": 1, + "installer": 1, + "statement": 1, + "gcp": 1, + "opinion": 1, + "accepted": 1, + "html": 1, + "a": 1, + "y": 1, + "general": 1, + "js": 1, + "unit": 1, + "speak": 1, + "brainstorming": 1, + "backup": 1, + "language": 1, + "bugfix": 1, + "k": 1, + "s": 1, + "scrum": 1, + "paper": 1, + "library": 1, + "stale": 1, + "optimization": 1, + "show": 1, + "apple": 1, + "low": 1, + "functions": 1, + "gnu": 1, + "linux": 1, + "focus": 1, + "groups": 1, + "dependency-update": 1, + "related": 1, + "bootstrap": 1, + "usability": 1, + "*nix": 1, + "externs": 1, + "prince": 1, + "demonstration": 1, + "⬆️": 1, + "memo": 1, + "revisitinfuture": 1, + "tips": 1, + "reference": 1, + "high": 1, + "bug-report": 1, + "babel": 1, + "flashsocket": 1, + "unix": 1, + "npm": 1, + "site": 1, + "chore": 1, + "adapter": 1, + "slides": 1, + "query": 1, + "chat": 1, + "major": 1, + "alpha": 1, + "lock": 1, + "security": 1, + "newsletter": 1, + "verification": 1, + "color": 1, + "containerd": 1, + "doughnut": 1, + "sentry": 1, + "dissertation": 1, + "mentoring": 1, + "confer": 1, + "utilities": 1, + "infosec": 1, + "vulnerability": 1, + "has": 1, + "code": 1.7999999999999998, + "teaching": 1, + "protection": 1, + "robot": 1, + "android": 1, + "webaim": 1, + "wontfix": 1, + "triage": 2.25, + "contribution": 1, + "macos": 1, + "assertion": 1, + "blog": 1, + "progress": 1, + "future": 1.875, + "architecture": 1.875, + "enhancements": 1.875, + "pmi": 1, + "promotion": 1, + "art": 1, + "film": 1, + "bitbucket": 1, + "cloud": 1, + "labour": 1, + "python": 1, + "suggestion": 1, + "crypto": 1, + "attitudinal": 1, + "electron": 1, + "trial": 1, + "example": 1, + "resolution": 1, + "redirect": 1, + "assessment": 1, + "monitor": 1, + "css": 1, + "hack": 1, + "translation": 1, + "opportunity": 1, + "vultr": 1, + "kubernetes": 1, + "wiki": 1, + "parser": 1, + "pwa": 1, + "iphone": 1, + "program": 1, + "finding": 1, + "digital": 1, + "ocean": 1, + "safeguard": 1, + "iac": 1, + "javascript": 1, + "integration": 1, + "glo": 1, + "porting": 1, + "on": 2, + "hold": 2, + "evaluation": 1, + "go": 2.25, + "must-triage": 1, + "gradle": 1, + "accessibility": 1, + "work": 1, + "other": 1, + "wrangling": 1, + "sast": 1, + "tech-debt": 1, + "entry": 1, + "fault": 1, + "problem": 1, + "brand": 1, + "internal-issue-created": 1, + "pmp": 1, + "bdd": 1, + "csharp": 1, + "unreviewed": 1, + "idea": 1, + "feedback": 1, + "requested": 1, + "wcag": 1, + "bugs": 1, + "mentor": 1, + "economics": 1, + "lib": 1, + "puppet": 1, + "speech": 1, + "balloon": 1, + "survey": 0.015625, + "c": 2, + "c++": 2, + "bulb": 1.875, + "prometheus": 2.25, + "rocket": 2, + "discuss": 1, + "doc": 2.25, + "blogs": 2.25, + "unit-mocha": 1, + "enterprise": 2.25, + "scheduler": 1, + "class": 1.875, + "fields": 1.875, + "commercial": 2.25, + "infra": 2.25, + "terraform": 2.25, + "figure": 2.25, + "layout": 2.25, + "specification": 1, + "vector": 2, + "greenkeeper": 1, + "tdd": 1, + "raster": 1, + "mishap": 1, + "sketch": 1, + "released": 1, + "font": 1, + "deployment": 2, + "e-nightwatch": 1, + "engine": 2, + "vulns": 2, + "syntax": 1, + "deliverable": 1, + "manual": 1, + "osx": 2, + "axe": 1, + "sendgrid": 1, + "operating": 2, + "system": 2, + "advance": 1, + "workflow": 1, + "safety": 1, + "phonetic": 1, + "concept": 1, + "lerna": 1, + "readme": 1, + "music": 1, + "failing": 1, + "customer": 2, + "extension": 1, + "lint": 1, + "optimizing": 1, + "compiler": 1, + "css-select": 1, + "figma": 1, + "finance": 1, + "closed": 1.7999999999999998, + "due": 1.7999999999999998, + "inactivity": 1.7999999999999998, + "jira": 1, + "behavioral": 1, + "multi": 2, + "module": 2, + "mixing": 1, + "backlog": 2, + "update": 1, + "present": 1, + "modules": 1, + "lang-julia": 1, + "vuln": 1, + "demo": 1, + "corporate": 2, + "spam": 1, + "handshakes": 1, + "platform": 1, + "wave": 1, + "ansible": 1, + "lang-convert": 1, + "gdpr": 1, + "classes": 1, + "websocket": 1, + "speach": 1, + "b": 1, + "chef": 1, + "patreon": 1, + "reviewed-changes-requested": 1, + "youtube": 1, + "(legacy)": 1, + "mentorship": 1, + "typescript": 1, + "didactic": 1, + "story": 1, + "academia": 1 + }, + "positive_weights_sum": {}, + "negative_weights_sum": {} + }, + "projectManagement": { + "positive_weights": { + "lean": 22.78125, + "bias": 4.0460795069368617e-16, + "trello": 10.125, + "basecamp": 10.125, + "clickup": 10.125, + "scrum": 10.125, + "prince": 10.125, + "pmi": 10.125, + "glo": 10.125, + "pmp": 10.125, + "component": 0.28125, + "developer": 0.28125, + "tools": 0.28125, + "inspiration": 0.125, + "business": 0.6666666666666667, + "process": 0.6666666666666667, + "sustain": 0.5, + "confirmed": 0.5, + "type": 0.28125, + "question": 0.75, + "grey": 0.75, + "cmty": 2, + "need-info": 0.5, + "sustenance": 0.5, + "good": 0.75, + "first": 0.75, + "issue": 0.75, + "kind": 0.6666666666666667, + "discussion": 0.6666666666666667, + "palette": 0.5, + "azure": 0.6666666666666667, + "ad": 0.6666666666666667, + "data": 0.6666666666666667, + "collection": 0.6666666666666667, + "external-bugs": 0.5, + "deal": 0.5, + "hacking": 0.5, + "video": 0.5, + "test": 0.8, + "utils": 2, + "hsv": 0.5, + "thesis": 0.5, + "pentesting": 0.5, + "design": 0.5, + "website": 0.6666666666666667, + "copy": 0.6666666666666667, + "bug": 2, + "guide": 0.5, + "next": 0.6666666666666667, + "meetup!": 0.6666666666666667, + "feat": 0.6666666666666667, + "ui": 0.6666666666666667, + "mastering": 0.5, + "steps": 0.5, + "abandoned": 0.5, + "badges": 0.5, + "sponsor": 2, + "assess": 2, + "pr": 0.8, + "merged": 2, + "vlog": 2, + "acceptance": 2, + "testing": 0.8, + "hot": 2, + "tv": 2, + "soundtrack": 2, + "(category)": 2, + "ci": 0.6666666666666667, + "cd": 0.6666666666666667, + "multi-cloud": 2, + "funding": 2, + "finder": 2, + "difficulty": 2, + "hard": 2, + "documentation": 2, + "book": 2, + "diary": 2, + "standard": 2, + "colour": 2, + "computer": 2, + "desktop": 2, + "flaw": 2, + "reliability": 2, + "cli-service": 2, + "build": 2, + "blocked": 2, + "maintenance": 2, + "construction": 2, + "ios": 2, + "planned": 2, + "feature": 0.8333333333333334, + "feature-request": 2, + "rfc": 2, + "image": 0.6666666666666667, + "stock": 2, + "reminder": 2, + "status": 0.8, + "review": 2, + "needed": 2, + "in": 2, + "lang-crystal": 2, + "breaking": 2, + "change": 2, + "phone": 2, + "refactor": 2, + "monologue": 2, + "reviewed-approved": 2, + "new": 0.75, + "best": 0.75, + "practice": 0.75, + "lecture": 2, + "backing": 2, + "browser": 2, + "aws": 2, + "polish": 0.8, + "nail": 0.8, + "care": 0.8, + "article": 2, + "peer-review": 2, + "writer-needed": 2, + "eventstorming": 2, + "freemasonry": 2, + "icons": 2, + "cannot": 2, + "reproduce": 2, + "paas": 2, + "net": 2, + "core": 2, + "wiretap": 2, + "unit-jest": 2, + "instruction": 2, + "infrastructure": 2, + "rgb": 2, + "ideas": 2, + "target": 2, + "windows": 2, + "call": 2, + "iconography": 2, + "promote": 2, + "template": 2, + "support": 0.75, + "first-timers-only": 2, + "java": 2, + "cdn": 2, + "dependency": 2, + "ready": 0.8, + "for": 0.8, + "deploy": 0.8, + "troubleshooting": 2, + "spec": 0.75, + "bigint": 2, + "async": 0.75, + "generators": 0.75, + "proposal": 2, + "e": 2, + "approachability": 2, + "investment": 2, + "conflicts": 2, + "optimisation": 2, + "kotlin": 2, + "release": 2, + "unconfirmed": 2, + "duplicate": 2, + "repeat": 2, + "devops": 2, + "defend": 2, + "blogging": 2, + "friendliness": 2, + "i": 2, + "n": 2, + "cla": 2, + "signed": 2, + "icebox": 2, + "meetup": 2, + "examination": 2, + "mobile": 0.75, + "device": 0.75, + "api": 2, + "decorators": 2, + "addon": 2, + "cracking": 2, + "sparkles": 2, + "enhancement": 0.75, + "hooks": 2, + "improved": 2, + "error": 2, + "handling": 2, + "needs": 0.8, + "repro": 2, + "upkeep": 2, + "reactis": 2, + "to": 0.8, + "be": 2, + "sample": 2, + "white": 0.8, + "check": 0.8, + "mark": 0.8, + "external": 2, + "hacktoberfest": 2, + "lang-dart": 2, + "framework": 2, + "icon": 2, + "grant": 2, + "needs-research": 2, + "cybersec": 2, + "biz": 2, + "internationalization": 2, + "utility-lib": 2, + "qa": 2, + "do": 2, + "not": 2, + "merge": 2, + "hacked": 2, + "how-to": 2, + "beginner-friendly": 2, + "os": 2, + "sound": 2, + "docs": 2, + "improvement": 2, + "heavy": 0.8333333333333334, + "plus": 0.8333333333333334, + "sign": 0.8333333333333334, + "request": 0.8333333333333334, + "glitch": 2, + "cx": 2, + "dependencies": 2, + "inquiry": 2, + "deno": 2, + "area": 2, + "crash": 2, + "camera": 2, + "wip": 2, + "configure": 2, + "dom": 2, + "programming": 2, + "font-face": 2, + "rgba": 2, + "parser-specific": 2, + "wikipedia": 2, + "shell": 2, + "contributions": 2, + "tryout": 2, + "thought": 2, + "analysis": 2, + "contenu": 2, + "cli": 2, + "fund": 2, + "investigation": 2, + "literature": 2, + "socket": 2, + "io": 2, + "client": 2, + "fiscal": 2, + "user": 2, + "debug": 2, + "information": 2, + "frontend": 2, + "upstream": 2, + "raising": 2, + "hand": 2, + "style": 2, + "clean": 2, + "up": 2, + "motif": 2, + "event": 2, + "help": 2, + "wanted": 2, + "priority": 2, + "medium": 2, + "financial": 2, + "ruby": 2, + "es": 2, + "warrant": 2, + "cancelled": 2, + "plan": 2, + "hackathon": 2, + "beginner": 2, + "typography": 2, + "counsel": 2, + "recording": 2, + "crowdin": 2, + "eslint": 2, + "rules": 2, + "easy": 2, + "repare": 2, + "conference": 2, + "great": 2, + "insight": 2, + "phd": 2, + "orange": 2, + "invalid": 2, + "x": 2, + "changelog": 2, + "e-cypress": 2, + "lipstick": 2, + "-": 2, + "backdoor": 2, + "approved": 2, + "talk": 2, + "subtitle": 2, + "research": 2, + "todo": 2, + "spiral": 2, + "notepad": 2, + "interface": 2, + "critical": 2, + "privacy": 2, + "tests": 2, + "boom": 2, + "web": 2, + "app": 2, + "television": 2, + "uat": 2, + "backer": 2, + "exploit": 2, + "requires": 2, + "travis-yml": 2, + "node": 2, + "dev": 2, + "experience": 2, + "fix": 2, + "backend": 2, + "cleaning": 2, + "internal": 2, + "house": 2, + "technical": 2, + "debt": 2, + "weekly-digest": 2, + "shallow": 2, + "renderer": 2, + "commerce": 2, + "ie": 2, + "hsl": 2, + "left": 2, + "out": 2, + "welcome": 2, + "opinions": 2, + "documents": 2, + "legacy": 2, + "grafana": 2, + "react": 2, + "native": 2, + "lang-go": 2, + "tutorial": 2, + "plugin": 2, + "logo": 2, + "refactoring": 2, + "safari": 2, + "saltstack": 2, + "available": 2, + "server": 2, + "rendering": 2, + "htmlfile": 2, + "theorem": 2, + "social": 2, + "internationalisation": 2, + "definition": 2, + "enquire": 2, + "packaging": 2, + "lang-r": 2, + "regression": 2, + "container": 2, + "opencollective": 2, + "report": 2, + "performance": 2, + "installer": 2, + "statement": 2, + "gcp": 2, + "opinion": 2, + "accepted": 2, + "html": 2, + "a": 0.8, + "y": 2, + "general": 2, + "js": 2, + "unit": 2, + "speak": 2, + "brainstorming": 2, + "backup": 2, + "language": 2, + "bugfix": 2, + "k": 2, + "s": 2, + "paper": 2, + "library": 2, + "stale": 2, + "optimization": 2, + "show": 2, + "apple": 2, + "low": 2, + "functions": 2, + "gnu": 2, + "linux": 2, + "focus": 2, + "groups": 2, + "dependency-update": 2, + "related": 2, + "bootstrap": 2, + "usability": 2, + "*nix": 2, + "externs": 2, + "critique": 2, + "demonstration": 2, + "⬆️": 2, + "memo": 2, + "revisitinfuture": 2, + "tips": 2, + "reference": 2, + "high": 2, + "bug-report": 2, + "babel": 2, + "flashsocket": 2, + "unix": 2, + "npm": 2, + "site": 2, + "chore": 2, + "adapter": 2, + "slides": 2, + "query": 2, + "chat": 2, + "major": 2, + "alpha": 2, + "lock": 2, + "security": 2, + "newsletter": 2, + "verification": 2, + "color": 2, + "containerd": 2, + "doughnut": 2, + "sentry": 2, + "dissertation": 2, + "mentoring": 2, + "confer": 2, + "utilities": 2, + "infosec": 2, + "vulnerability": 2, + "has": 2, + "code": 2, + "teaching": 2, + "protection": 2, + "robot": 2, + "android": 2, + "webaim": 2, + "wontfix": 2, + "triage": 0.5, + "contribution": 2, + "macos": 2, + "assertion": 2, + "blog": 2, + "progress": 2, + "future": 2, + "architecture": 2, + "enhancements": 2, + "promotion": 2, + "validation": 2, + "art": 2, + "film": 2, + "bitbucket": 2, + "cloud": 2, + "labour": 2, + "python": 2, + "suggestion": 2, + "crypto": 2, + "attitudinal": 2, + "electron": 2, + "trial": 2, + "example": 2, + "resolution": 2, + "redirect": 2, + "assessment": 2, + "monitor": 2, + "css": 2, + "hack": 2, + "translation": 2, + "opportunity": 2, + "vultr": 2, + "kubernetes": 2, + "wiki": 2, + "parser": 2, + "pwa": 2, + "iphone": 2, + "program": 2, + "finding": 2, + "digital": 2, + "ocean": 2, + "safeguard": 2, + "iac": 2, + "javascript": 2, + "integration": 2, + "porting": 2, + "on": 2, + "hold": 2, + "evaluation": 2, + "go": 2, + "must-triage": 2, + "gradle": 2, + "accessibility": 2, + "work": 2, + "other": 2, + "wrangling": 2, + "sast": 2, + "tech-debt": 2, + "entry": 2, + "fault": 2, + "problem": 2, + "brand": 2, + "internal-issue-created": 2, + "bdd": 2, + "checkpoint": 2, + "csharp": 2, + "unreviewed": 2, + "idea": 2, + "feedback": 2, + "requested": 2, + "wcag": 2, + "bugs": 2, + "mentor": 2, + "economics": 2, + "lib": 2, + "puppet": 2, + "speech": 2, + "balloon": 2, + "deliverable": 10.125, + "jira": 10.125, + "c": 0.6666666666666667, + "c++": 0.6666666666666667, + "bulb": 0.75, + "prometheus": 0.5, + "rocket": 2, + "discuss": 2, + "doc": 2, + "blogs": 2, + "unit-mocha": 2, + "enterprise": 2, + "scheduler": 2, + "class": 2, + "fields": 2, + "commercial": 2, + "infra": 2, + "terraform": 2, + "figure": 2, + "layout": 2, + "specification": 2, + "vector": 0.6666666666666667, + "greenkeeper": 2, + "tdd": 2, + "raster": 2, + "mishap": 2, + "sketch": 2, + "released": 2, + "font": 2, + "deployment": 2, + "e-nightwatch": 2, + "engine": 2, + "vulns": 2, + "syntax": 2, + "manual": 2, + "osx": 2, + "axe": 2, + "sendgrid": 2, + "operating": 2, + "system": 2, + "advance": 2, + "workflow": 2, + "safety": 2, + "phonetic": 2, + "concept": 2, + "lerna": 2, + "readme": 2, + "music": 2, + "failing": 0.8, + "customer": 2, + "extension": 2, + "lint": 2, + "optimizing": 2, + "compiler": 2, + "css-select": 2, + "figma": 2, + "finance": 2, + "closed": 0.8, + "due": 0.8, + "inactivity": 0.8, + "survey": 2, + "behavioral": 2, + "multi": 2, + "module": 2, + "mixing": 2, + "backlog": 2, + "update": 2, + "present": 2, + "modules": 2, + "lang-julia": 2, + "vuln": 2, + "demo": 2, + "corporate": 2, + "spam": 2, + "handshakes": 2, + "platform": 2, + "wave": 2, + "ansible": 2, + "lang-convert": 2, + "gdpr": 2, + "classes": 2, + "websocket": 2, + "speach": 2, + "b": 2, + "chef": 2, + "patreon": 2, + "reviewed-changes-requested": 2, + "youtube": 2, + "(legacy)": 2, + "mentorship": 2, + "typescript": 2, + "didactic": 2, + "story": 2, + "academia": 2 + }, + "negative_weights": { + "lean": 0.015625, + "bias": 4.1147770154146786, + "trello": 0.0625, + "basecamp": 0.0625, + "clickup": 0.0625, + "scrum": 0.0625, + "prince": 0.0625, + "pmi": 0.0625, + "glo": 0.0625, + "pmp": 0.0625, + "component": 3.515625, + "developer": 3.515625, + "tools": 3.515625, + "inspiration": 5.0625, + "business": 2, + "process": 2, + "sustain": 2.25, + "confirmed": 2.25, + "type": 3.515625, + "question": 1.875, + "grey": 1.875, + "cmty": 1, + "need-info": 2.25, + "sustenance": 2.25, + "good": 1.875, + "first": 1.875, + "issue": 1.875, + "kind": 2, + "discussion": 2, + "palette": 2.25, + "azure": 2, + "ad": 2, + "data": 2, + "collection": 2, + "external-bugs": 2.25, + "deal": 2.25, + "hacking": 2.25, + "video": 2.25, + "test": 1.7999999999999998, + "utils": 1, + "hsv": 2.25, + "thesis": 2.25, + "pentesting": 2.25, + "design": 2.25, + "website": 2, + "copy": 2, + "bug": 1, + "guide": 2.25, + "next": 2, + "meetup!": 2, + "feat": 2, + "ui": 2, + "mastering": 2.25, + "steps": 2.25, + "abandoned": 2.25, + "badges": 2.25, + "sponsor": 1, + "assess": 1, + "pr": 1.7999999999999998, + "merged": 1, + "vlog": 1, + "acceptance": 1, + "testing": 1.7999999999999998, + "hot": 1, + "tv": 1, + "soundtrack": 1, + "(category)": 1, + "ci": 2, + "cd": 2, + "multi-cloud": 1, + "funding": 1, + "finder": 1, + "difficulty": 1, + "hard": 1, + "documentation": 1, + "book": 1, + "diary": 1, + "standard": 1, + "colour": 1, + "computer": 1, + "desktop": 1, + "flaw": 1, + "reliability": 1, + "cli-service": 1, + "build": 1, + "blocked": 1, + "maintenance": 1, + "construction": 1, + "ios": 1, + "planned": 1, + "feature": 1.75, + "feature-request": 1, + "rfc": 1, + "image": 2, + "stock": 1, + "reminder": 1, + "status": 1.7999999999999998, + "review": 1, + "needed": 1, + "in": 1, + "lang-crystal": 1, + "breaking": 1, + "change": 1, + "phone": 1, + "refactor": 1, + "monologue": 1, + "reviewed-approved": 1, + "new": 1.875, + "best": 1.875, + "practice": 1.875, + "lecture": 1, + "backing": 1, + "browser": 1, + "aws": 1, + "polish": 1.7999999999999998, + "nail": 1.7999999999999998, + "care": 1.7999999999999998, + "article": 1, + "peer-review": 1, + "writer-needed": 1, + "eventstorming": 1, + "freemasonry": 1, + "icons": 1, + "cannot": 1, + "reproduce": 1, + "paas": 1, + "net": 1, + "core": 1, + "wiretap": 1, + "unit-jest": 1, + "instruction": 1, + "infrastructure": 1, + "rgb": 1, + "ideas": 1, + "target": 1, + "windows": 1, + "call": 1, + "iconography": 1, + "promote": 1, + "template": 1, + "support": 1.875, + "first-timers-only": 1, + "java": 1, + "cdn": 1, + "dependency": 1, + "ready": 1.7999999999999998, + "for": 1.7999999999999998, + "deploy": 1.7999999999999998, + "troubleshooting": 1, + "spec": 1.875, + "bigint": 1, + "async": 1.875, + "generators": 1.875, + "proposal": 1, + "e": 1, + "approachability": 1, + "investment": 1, + "conflicts": 1, + "optimisation": 1, + "kotlin": 1, + "release": 1, + "unconfirmed": 1, + "duplicate": 1, + "repeat": 1, + "devops": 1, + "defend": 1, + "blogging": 1, + "friendliness": 1, + "i": 1, + "n": 1, + "cla": 1, + "signed": 1, + "icebox": 1, + "meetup": 1, + "examination": 1, + "mobile": 1.875, + "device": 1.875, + "api": 1, + "decorators": 1, + "addon": 1, + "cracking": 1, + "sparkles": 1, + "enhancement": 1.875, + "hooks": 1, + "improved": 1, + "error": 1, + "handling": 1, + "needs": 1.7999999999999998, + "repro": 1, + "upkeep": 1, + "reactis": 1, + "to": 1.7999999999999998, + "be": 1, + "sample": 1, + "white": 1.7999999999999998, + "check": 1.7999999999999998, + "mark": 1.7999999999999998, + "external": 1, + "hacktoberfest": 1, + "lang-dart": 1, + "framework": 1, + "icon": 1, + "grant": 1, + "needs-research": 1, + "cybersec": 1, + "biz": 1, + "internationalization": 1, + "utility-lib": 1, + "qa": 1, + "do": 1, + "not": 1, + "merge": 1, + "hacked": 1, + "how-to": 1, + "beginner-friendly": 1, + "os": 1, + "sound": 1, + "docs": 1, + "improvement": 1, + "heavy": 1.75, + "plus": 1.75, + "sign": 1.75, + "request": 1.75, + "glitch": 1, + "cx": 1, + "dependencies": 1, + "inquiry": 1, + "deno": 1, + "area": 1, + "crash": 1, + "camera": 1, + "wip": 1, + "configure": 1, + "dom": 1, + "programming": 1, + "font-face": 1, + "rgba": 1, + "parser-specific": 1, + "wikipedia": 1, + "shell": 1, + "contributions": 1, + "tryout": 1, + "thought": 1, + "analysis": 1, + "contenu": 1, + "cli": 1, + "fund": 1, + "investigation": 1, + "literature": 1, + "socket": 1, + "io": 1, + "client": 1, + "fiscal": 1, + "user": 1, + "debug": 1, + "information": 1, + "frontend": 1, + "upstream": 1, + "raising": 1, + "hand": 1, + "style": 1, + "clean": 1, + "up": 1, + "motif": 1, + "event": 1, + "help": 1, + "wanted": 1, + "priority": 1, + "medium": 1, + "financial": 1, + "ruby": 1, + "es": 1, + "warrant": 1, + "cancelled": 1, + "plan": 1, + "hackathon": 1, + "beginner": 1, + "typography": 1, + "counsel": 1, + "recording": 1, + "crowdin": 1, + "eslint": 1, + "rules": 1, + "easy": 1, + "repare": 1, + "conference": 1, + "great": 1, + "insight": 1, + "phd": 1, + "orange": 1, + "invalid": 1, + "x": 1, + "changelog": 1, + "e-cypress": 1, + "lipstick": 1, + "-": 1, + "backdoor": 1, + "approved": 1, + "talk": 1, + "subtitle": 1, + "research": 1, + "todo": 1, + "spiral": 1, + "notepad": 1, + "interface": 1, + "critical": 1, + "privacy": 1, + "tests": 1, + "boom": 1, + "web": 1, + "app": 1, + "television": 1, + "uat": 1, + "backer": 1, + "exploit": 1, + "requires": 1, + "travis-yml": 1, + "node": 1, + "dev": 1, + "experience": 1, + "fix": 1, + "backend": 1, + "cleaning": 1, + "internal": 1, + "house": 1, + "technical": 1, + "debt": 1, + "weekly-digest": 1, + "shallow": 1, + "renderer": 1, + "commerce": 1, + "ie": 1, + "hsl": 1, + "left": 1, + "out": 1, + "welcome": 1, + "opinions": 1, + "documents": 1, + "legacy": 1, + "grafana": 1, + "react": 1, + "native": 1, + "lang-go": 1, + "tutorial": 1, + "plugin": 1, + "logo": 1, + "refactoring": 1, + "safari": 1, + "saltstack": 1, + "available": 1, + "server": 1, + "rendering": 1, + "htmlfile": 1, + "theorem": 1, + "social": 1, + "internationalisation": 1, + "definition": 1, + "enquire": 1, + "packaging": 1, + "lang-r": 1, + "regression": 1, + "container": 1, + "opencollective": 1, + "report": 1, + "performance": 1, + "installer": 1, + "statement": 1, + "gcp": 1, + "opinion": 1, + "accepted": 1, + "html": 1, + "a": 1.7999999999999998, + "y": 1, + "general": 1, + "js": 1, + "unit": 1, + "speak": 1, + "brainstorming": 1, + "backup": 1, + "language": 1, + "bugfix": 1, + "k": 1, + "s": 1, + "paper": 1, + "library": 1, + "stale": 1, + "optimization": 1, + "show": 1, + "apple": 1, + "low": 1, + "functions": 1, + "gnu": 1, + "linux": 1, + "focus": 1, + "groups": 1, + "dependency-update": 1, + "related": 1, + "bootstrap": 1, + "usability": 1, + "*nix": 1, + "externs": 1, + "critique": 1, + "demonstration": 1, + "⬆️": 1, + "memo": 1, + "revisitinfuture": 1, + "tips": 1, + "reference": 1, + "high": 1, + "bug-report": 1, + "babel": 1, + "flashsocket": 1, + "unix": 1, + "npm": 1, + "site": 1, + "chore": 1, + "adapter": 1, + "slides": 1, + "query": 1, + "chat": 1, + "major": 1, + "alpha": 1, + "lock": 1, + "security": 1, + "newsletter": 1, + "verification": 1, + "color": 1, + "containerd": 1, + "doughnut": 1, + "sentry": 1, + "dissertation": 1, + "mentoring": 1, + "confer": 1, + "utilities": 1, + "infosec": 1, + "vulnerability": 1, + "has": 1, + "code": 1, + "teaching": 1, + "protection": 1, + "robot": 1, + "android": 1, + "webaim": 1, + "wontfix": 1, + "triage": 2.25, + "contribution": 1, + "macos": 1, + "assertion": 1, + "blog": 1, + "progress": 1, + "future": 1, + "architecture": 1, + "enhancements": 1, + "promotion": 1, + "validation": 1, + "art": 1, + "film": 1, + "bitbucket": 1, + "cloud": 1, + "labour": 1, + "python": 1, + "suggestion": 1, + "crypto": 1, + "attitudinal": 1, + "electron": 1, + "trial": 1, + "example": 1, + "resolution": 1, + "redirect": 1, + "assessment": 1, + "monitor": 1, + "css": 1, + "hack": 1, + "translation": 1, + "opportunity": 1, + "vultr": 1, + "kubernetes": 1, + "wiki": 1, + "parser": 1, + "pwa": 1, + "iphone": 1, + "program": 1, + "finding": 1, + "digital": 1, + "ocean": 1, + "safeguard": 1, + "iac": 1, + "javascript": 1, + "integration": 1, + "porting": 1, + "on": 1, + "hold": 1, + "evaluation": 1, + "go": 1, + "must-triage": 1, + "gradle": 1, + "accessibility": 1, + "work": 1, + "other": 1, + "wrangling": 1, + "sast": 1, + "tech-debt": 1, + "entry": 1, + "fault": 1, + "problem": 1, + "brand": 1, + "internal-issue-created": 1, + "bdd": 1, + "checkpoint": 1, + "csharp": 1, + "unreviewed": 1, + "idea": 1, + "feedback": 1, + "requested": 1, + "wcag": 1, + "bugs": 1, + "mentor": 1, + "economics": 1, + "lib": 1, + "puppet": 1, + "speech": 1, + "balloon": 1, + "deliverable": 0.0625, + "jira": 0.0625, + "c": 2, + "c++": 2, + "bulb": 1.875, + "prometheus": 2.25, + "rocket": 1, + "discuss": 1, + "doc": 1, + "blogs": 1, + "unit-mocha": 1, + "enterprise": 1, + "scheduler": 1, + "class": 1, + "fields": 1, + "commercial": 1, + "infra": 1, + "terraform": 1, + "figure": 1, + "layout": 1, + "specification": 1, + "vector": 2, + "greenkeeper": 1, + "tdd": 1, + "raster": 1, + "mishap": 1, + "sketch": 1, + "released": 1, + "font": 1, + "deployment": 1, + "e-nightwatch": 1, + "engine": 1, + "vulns": 1, + "syntax": 1, + "manual": 1, + "osx": 1, + "axe": 1, + "sendgrid": 1, + "operating": 1, + "system": 1, + "advance": 1, + "workflow": 1, + "safety": 1, + "phonetic": 1, + "concept": 1, + "lerna": 1, + "readme": 1, + "music": 1, + "failing": 1.7999999999999998, + "customer": 1, + "extension": 1, + "lint": 1, + "optimizing": 1, + "compiler": 1, + "css-select": 1, + "figma": 1, + "finance": 1, + "closed": 1.7999999999999998, + "due": 1.7999999999999998, + "inactivity": 1.7999999999999998, + "survey": 1, + "behavioral": 1, + "multi": 1, + "module": 1, + "mixing": 1, + "backlog": 1, + "update": 1, + "present": 1, + "modules": 1, + "lang-julia": 1, + "vuln": 1, + "demo": 1, + "corporate": 1, + "spam": 1, + "handshakes": 1, + "platform": 1, + "wave": 1, + "ansible": 1, + "lang-convert": 1, + "gdpr": 1, + "classes": 1, + "websocket": 1, + "speach": 1, + "b": 1, + "chef": 1, + "patreon": 1, + "reviewed-changes-requested": 1, + "youtube": 1, + "(legacy)": 1, + "mentorship": 1, + "typescript": 1, + "didactic": 1, + "story": 1, + "academia": 1 + }, + "positive_weights_sum": {}, + "negative_weights_sum": {} + }, + "promotion": { + "positive_weights": { + "promote": 22.78125, + "bias": 0.000019797720015048994, + "promotion": 22.78125, + "component": 0.75, + "developer": 0.75, + "tools": 0.75, + "inspiration": 0.5, + "business": 0.6666666666666667, + "process": 0.6666666666666667, + "sustain": 0.5, + "confirmed": 0.5, + "type": 0.75, + "question": 0.75, + "grey": 0.75, + "cmty": 2, + "need-info": 0.5, + "sustenance": 2, + "good": 0.75, + "first": 0.75, + "issue": 0.75, + "kind": 0.6666666666666667, + "discussion": 0.6666666666666667, + "palette": 2, + "azure": 0.6666666666666667, + "ad": 0.6666666666666667, + "data": 2, + "collection": 2, + "external-bugs": 2, + "deal": 2, + "hacking": 2, + "video": 2, + "test": 2, + "utils": 2, + "hsv": 2, + "thesis": 2, + "pentesting": 2, + "design": 2, + "website": 2, + "copy": 2, + "bug": 2, + "guide": 2, + "next": 2, + "meetup!": 2, + "feat": 0.75, + "ui": 2, + "mastering": 2, + "steps": 2, + "abandoned": 2, + "badges": 2, + "sponsor": 2, + "assess": 2, + "pr": 0.8, + "merged": 2, + "vlog": 2, + "acceptance": 2, + "testing": 0.8, + "hot": 2, + "tv": 2, + "soundtrack": 2, + "(category)": 2, + "ci": 2, + "cd": 2, + "multi-cloud": 2, + "funding": 2, + "finder": 2, + "difficulty": 2, + "hard": 2, + "documentation": 2, + "book": 2, + "diary": 2, + "standard": 2, + "colour": 2, + "computer": 2, + "desktop": 2, + "flaw": 2, + "reliability": 2, + "cli-service": 0.75, + "build": 0.75, + "blocked": 2, + "maintenance": 2, + "construction": 2, + "ios": 2, + "planned": 2, + "feature": 0.8333333333333333, + "feature-request": 2, + "rfc": 2, + "image": 2, + "stock": 2, + "reminder": 2, + "status": 0.8, + "review": 2, + "needed": 2, + "in": 2, + "lang-crystal": 2, + "breaking": 2, + "change": 2, + "phone": 2, + "refactor": 2, + "monologue": 2, + "reviewed-approved": 2, + "new": 2, + "best": 2, + "practice": 2, + "lecture": 2, + "backing": 2, + "browser": 2, + "aws": 2, + "polish": 0.8, + "nail": 0.8, + "care": 0.8, + "article": 2, + "peer-review": 2, + "writer-needed": 2, + "eventstorming": 2, + "freemasonry": 2, + "icons": 2, + "lean": 2, + "cannot": 2, + "reproduce": 2, + "paas": 2, + "net": 2, + "core": 2, + "wiretap": 2, + "unit-jest": 2, + "instruction": 2, + "infrastructure": 2, + "rgb": 2, + "ideas": 2, + "target": 2, + "windows": 2, + "call": 2, + "iconography": 2, + "template": 2, + "support": 2, + "first-timers-only": 2, + "java": 2, + "cdn": 2, + "dependency": 2, + "ready": 0.8, + "for": 0.8, + "deploy": 0.8, + "troubleshooting": 2, + "spec": 2, + "bigint": 2, + "async": 2, + "generators": 2, + "proposal": 2, + "e": 2, + "approachability": 2, + "investment": 2, + "conflicts": 2, + "optimisation": 2, + "kotlin": 2, + "release": 2, + "unconfirmed": 2, + "duplicate": 2, + "repeat": 2, + "devops": 2, + "defend": 2, + "blogging": 2, + "friendliness": 2, + "i": 2, + "n": 2, + "cla": 2, + "signed": 2, + "icebox": 2, + "meetup": 2, + "examination": 2, + "mobile": 2, + "device": 2, + "api": 2, + "decorators": 2, + "addon": 2, + "cracking": 2, + "sparkles": 2, + "enhancement": 2, + "hooks": 2, + "improved": 2, + "error": 2, + "handling": 2, + "needs": 2, + "repro": 2, + "upkeep": 2, + "reactis": 2, + "to": 2, + "be": 2, + "sample": 2, + "white": 0.8, + "check": 0.8, + "mark": 0.8, + "external": 2, + "hacktoberfest": 2, + "lang-dart": 2, + "framework": 2, + "icon": 2, + "grant": 2, + "needs-research": 2, + "cybersec": 2, + "biz": 2, + "internationalization": 2, + "utility-lib": 2, + "qa": 2, + "do": 2, + "not": 2, + "merge": 2, + "hacked": 2, + "how-to": 2, + "beginner-friendly": 2, + "trello": 2, + "os": 2, + "sound": 2, + "docs": 2, + "improvement": 2, + "heavy": 0.8333333333333333, + "plus": 0.8333333333333333, + "sign": 0.8333333333333333, + "request": 0.8333333333333333, + "glitch": 2, + "cx": 2, + "dependencies": 2, + "inquiry": 2, + "deno": 2, + "area": 2, + "crash": 2, + "camera": 2, + "wip": 2, + "configure": 2, + "dom": 2, + "programming": 2, + "font-face": 2, + "rgba": 2, + "parser-specific": 2, + "wikipedia": 2, + "shell": 2, + "contributions": 2, + "tryout": 2, + "thought": 2, + "analysis": 2, + "contenu": 2, + "cli": 2, + "fund": 2, + "investigation": 2, + "basecamp": 2, + "literature": 2, + "socket": 2, + "io": 2, + "client": 2, + "fiscal": 2, + "user": 2, + "debug": 2, + "information": 2, + "frontend": 2, + "upstream": 2, + "raising": 2, + "hand": 2, + "style": 2, + "clean": 2, + "up": 2, + "motif": 2, + "event": 2, + "help": 2, + "wanted": 2, + "priority": 2, + "medium": 2, + "financial": 2, + "ruby": 2, + "es": 2, + "warrant": 2, + "cancelled": 2, + "plan": 2, + "hackathon": 2, + "beginner": 2, + "typography": 2, + "counsel": 2, + "recording": 2, + "crowdin": 2, + "eslint": 2, + "rules": 2, + "easy": 2, + "repare": 2, + "conference": 2, + "great": 2, + "insight": 2, + "phd": 2, + "orange": 2, + "invalid": 2, + "x": 2, + "changelog": 2, + "e-cypress": 2, + "lipstick": 2, + "-": 2, + "backdoor": 2, + "approved": 2, + "talk": 2, + "subtitle": 2, + "research": 2, + "todo": 2, + "spiral": 2, + "notepad": 2, + "interface": 2, + "critical": 2, + "privacy": 2, + "tests": 2, + "boom": 2, + "web": 2, + "app": 2, + "television": 2, + "uat": 2, + "backer": 2, + "exploit": 2, + "requires": 2, + "travis-yml": 2, + "node": 2, + "dev": 2, + "experience": 2, + "fix": 2, + "backend": 2, + "cleaning": 2, + "internal": 2, + "house": 2, + "technical": 2, + "debt": 2, + "weekly-digest": 2, + "shallow": 2, + "renderer": 2, + "commerce": 2, + "ie": 2, + "hsl": 2, + "left": 2, + "out": 2, + "welcome": 2, + "opinions": 2, + "documents": 2, + "legacy": 2, + "grafana": 2, + "react": 2, + "native": 2, + "lang-go": 2, + "tutorial": 2, + "plugin": 2, + "logo": 2, + "refactoring": 2, + "safari": 2, + "saltstack": 2, + "available": 2, + "server": 2, + "rendering": 2, + "htmlfile": 2, + "theorem": 2, + "social": 2, + "internationalisation": 2, + "definition": 2, + "enquire": 2, + "packaging": 2, + "lang-r": 2, + "regression": 2, + "container": 2, + "opencollective": 2, + "report": 2, + "performance": 2, + "clickup": 2, + "installer": 2, + "statement": 2, + "gcp": 2, + "opinion": 2, + "accepted": 2, + "html": 2, + "a": 2, + "y": 2, + "general": 2, + "js": 2, + "unit": 2, + "speak": 2, + "brainstorming": 2, + "backup": 2, + "language": 2, + "bugfix": 2, + "k": 2, + "s": 2, + "scrum": 2, + "paper": 2, + "library": 2, + "stale": 2, + "optimization": 2, + "show": 2, + "apple": 2, + "low": 2, + "functions": 2, + "gnu": 2, + "linux": 2, + "focus": 2, + "groups": 2, + "dependency-update": 2, + "related": 2, + "bootstrap": 2, + "usability": 2, + "*nix": 2, + "externs": 2, + "critique": 2, + "prince": 2, + "demonstration": 2, + "⬆️": 2, + "memo": 2, + "revisitinfuture": 2, + "tips": 2, + "reference": 2, + "high": 2, + "bug-report": 2, + "babel": 2, + "flashsocket": 2, + "unix": 2, + "npm": 2, + "site": 2, + "chore": 2, + "adapter": 2, + "slides": 2, + "query": 2, + "chat": 2, + "major": 2, + "alpha": 2, + "lock": 2, + "security": 2, + "newsletter": 2, + "verification": 2, + "color": 2, + "containerd": 2, + "doughnut": 2, + "sentry": 2, + "dissertation": 2, + "mentoring": 2, + "confer": 2, + "utilities": 2, + "infosec": 2, + "vulnerability": 2, + "has": 2, + "code": 2, + "teaching": 2, + "protection": 2, + "robot": 2, + "android": 2, + "webaim": 2, + "wontfix": 2, + "triage": 2, + "contribution": 2, + "macos": 2, + "assertion": 2, + "blog": 2, + "progress": 2, + "future": 2, + "architecture": 2, + "enhancements": 2, + "pmi": 2, + "validation": 2, + "art": 2, + "film": 2, + "bitbucket": 2, + "cloud": 2, + "labour": 2, + "python": 2, + "suggestion": 2, + "crypto": 2, + "attitudinal": 2, + "electron": 2, + "trial": 2, + "example": 2, + "resolution": 2, + "redirect": 2, + "assessment": 2, + "monitor": 2, + "css": 2, + "hack": 2, + "translation": 2, + "opportunity": 2, + "vultr": 2, + "kubernetes": 2, + "wiki": 2, + "parser": 2, + "pwa": 2, + "iphone": 2, + "program": 2, + "finding": 2, + "digital": 2, + "ocean": 2, + "safeguard": 2, + "iac": 2, + "javascript": 2, + "integration": 2, + "glo": 2, + "porting": 2, + "on": 2, + "hold": 2, + "evaluation": 2, + "go": 2, + "must-triage": 2, + "gradle": 2, + "accessibility": 2, + "work": 2, + "other": 2, + "wrangling": 2, + "sast": 2, + "tech-debt": 2, + "entry": 2, + "fault": 2, + "problem": 2, + "brand": 2, + "internal-issue-created": 2, + "pmp": 2, + "bdd": 2, + "checkpoint": 2, + "csharp": 2, + "unreviewed": 2, + "idea": 2, + "feedback": 2, + "requested": 2, + "wcag": 2, + "bugs": 2, + "mentor": 2, + "economics": 2, + "lib": 2, + "puppet": 2, + "speech": 2, + "balloon": 2, + "c": 2, + "c++": 2, + "bulb": 2, + "prometheus": 2, + "rocket": 2, + "discuss": 2, + "doc": 2, + "blogs": 2, + "unit-mocha": 2, + "enterprise": 2, + "scheduler": 2, + "class": 2, + "fields": 2, + "commercial": 2, + "infra": 2, + "terraform": 2, + "figure": 2, + "layout": 2, + "specification": 2, + "vector": 2, + "greenkeeper": 2, + "tdd": 2, + "raster": 2, + "mishap": 2, + "sketch": 2, + "released": 2, + "font": 2, + "deployment": 2, + "e-nightwatch": 2, + "engine": 2, + "vulns": 2, + "syntax": 2, + "deliverable": 2, + "manual": 2, + "osx": 2, + "axe": 2, + "sendgrid": 2, + "operating": 2, + "system": 2, + "advance": 2, + "workflow": 2, + "safety": 2, + "phonetic": 2, + "concept": 2, + "lerna": 2, + "readme": 2, + "music": 2, + "failing": 2, + "customer": 2, + "extension": 2, + "lint": 2, + "optimizing": 2, + "compiler": 2, + "css-select": 2, + "figma": 2, + "finance": 2, + "closed": 2, + "due": 2, + "inactivity": 2, + "jira": 2, + "survey": 2, + "behavioral": 2, + "multi": 2, + "module": 2, + "mixing": 2, + "backlog": 2, + "update": 2, + "present": 2, + "modules": 2, + "lang-julia": 2, + "vuln": 2, + "demo": 2, + "corporate": 2, + "spam": 2, + "handshakes": 2, + "platform": 2, + "wave": 2, + "ansible": 2, + "lang-convert": 2, + "gdpr": 2, + "classes": 2, + "websocket": 2, + "speach": 2, + "b": 2, + "chef": 2, + "patreon": 2, + "reviewed-changes-requested": 2, + "youtube": 2, + "(legacy)": 2, + "mentorship": 2, + "typescript": 2, + "didactic": 2, + "story": 2, + "academia": 2 + }, + "negative_weights": { + "promote": 0.015625, + "bias": 6.314235327299682, + "promotion": 0.015625, + "component": 1.875, + "developer": 1.875, + "tools": 1.875, + "inspiration": 2.25, + "business": 2, + "process": 2, + "sustain": 2.25, + "confirmed": 2.25, + "type": 1.875, + "question": 1.875, + "grey": 1.875, + "cmty": 1, + "need-info": 2.25, + "sustenance": 1, + "good": 1.875, + "first": 1.875, + "issue": 1.875, + "kind": 2, + "discussion": 2, + "palette": 1, + "azure": 2, + "ad": 2, + "data": 1, + "collection": 1, + "external-bugs": 1, + "deal": 1, + "hacking": 1, + "video": 1, + "test": 1, + "utils": 1, + "hsv": 1, + "thesis": 1, + "pentesting": 1, + "design": 1, + "website": 1, + "copy": 1, + "bug": 1, + "guide": 1, + "next": 1, + "meetup!": 1, + "feat": 1.875, + "ui": 1, + "mastering": 1, + "steps": 1, + "abandoned": 1, + "badges": 1, + "sponsor": 1, + "assess": 1, + "pr": 1.7999999999999998, + "merged": 1, + "vlog": 1, + "acceptance": 1, + "testing": 1.7999999999999998, + "hot": 1, + "tv": 1, + "soundtrack": 1, + "(category)": 1, + "ci": 1, + "cd": 1, + "multi-cloud": 1, + "funding": 1, + "finder": 1, + "difficulty": 1, + "hard": 1, + "documentation": 1, + "book": 1, + "diary": 1, + "standard": 1, + "colour": 1, + "computer": 1, + "desktop": 1, + "flaw": 1, + "reliability": 1, + "cli-service": 1.875, + "build": 1.875, + "blocked": 1, + "maintenance": 1, + "construction": 1, + "ios": 1, + "planned": 1, + "feature": 1.75, + "feature-request": 1, + "rfc": 1, + "image": 1, + "stock": 1, + "reminder": 1, + "status": 1.7999999999999998, + "review": 1, + "needed": 1, + "in": 1, + "lang-crystal": 1, + "breaking": 1, + "change": 1, + "phone": 1, + "refactor": 1, + "monologue": 1, + "reviewed-approved": 1, + "new": 1, + "best": 1, + "practice": 1, + "lecture": 1, + "backing": 1, + "browser": 1, + "aws": 1, + "polish": 1.7999999999999998, + "nail": 1.7999999999999998, + "care": 1.7999999999999998, + "article": 1, + "peer-review": 1, + "writer-needed": 1, + "eventstorming": 1, + "freemasonry": 1, + "icons": 1, + "lean": 1, + "cannot": 1, + "reproduce": 1, + "paas": 1, + "net": 1, + "core": 1, + "wiretap": 1, + "unit-jest": 1, + "instruction": 1, + "infrastructure": 1, + "rgb": 1, + "ideas": 1, + "target": 1, + "windows": 1, + "call": 1, + "iconography": 1, + "template": 1, + "support": 1, + "first-timers-only": 1, + "java": 1, + "cdn": 1, + "dependency": 1, + "ready": 1.7999999999999998, + "for": 1.7999999999999998, + "deploy": 1.7999999999999998, + "troubleshooting": 1, + "spec": 1, + "bigint": 1, + "async": 1, + "generators": 1, + "proposal": 1, + "e": 1, + "approachability": 1, + "investment": 1, + "conflicts": 1, + "optimisation": 1, + "kotlin": 1, + "release": 1, + "unconfirmed": 1, + "duplicate": 1, + "repeat": 1, + "devops": 1, + "defend": 1, + "blogging": 1, + "friendliness": 1, + "i": 1, + "n": 1, + "cla": 1, + "signed": 1, + "icebox": 1, + "meetup": 1, + "examination": 1, + "mobile": 1, + "device": 1, + "api": 1, + "decorators": 1, + "addon": 1, + "cracking": 1, + "sparkles": 1, + "enhancement": 1, + "hooks": 1, + "improved": 1, + "error": 1, + "handling": 1, + "needs": 1, + "repro": 1, + "upkeep": 1, + "reactis": 1, + "to": 1, + "be": 1, + "sample": 1, + "white": 1.7999999999999998, + "check": 1.7999999999999998, + "mark": 1.7999999999999998, + "external": 1, + "hacktoberfest": 1, + "lang-dart": 1, + "framework": 1, + "icon": 1, + "grant": 1, + "needs-research": 1, + "cybersec": 1, + "biz": 1, + "internationalization": 1, + "utility-lib": 1, + "qa": 1, + "do": 1, + "not": 1, + "merge": 1, + "hacked": 1, + "how-to": 1, + "beginner-friendly": 1, + "trello": 1, + "os": 1, + "sound": 1, + "docs": 1, + "improvement": 1, + "heavy": 1.75, + "plus": 1.75, + "sign": 1.75, + "request": 1.75, + "glitch": 1, + "cx": 1, + "dependencies": 1, + "inquiry": 1, + "deno": 1, + "area": 1, + "crash": 1, + "camera": 1, + "wip": 1, + "configure": 1, + "dom": 1, + "programming": 1, + "font-face": 1, + "rgba": 1, + "parser-specific": 1, + "wikipedia": 1, + "shell": 1, + "contributions": 1, + "tryout": 1, + "thought": 1, + "analysis": 1, + "contenu": 1, + "cli": 1, + "fund": 1, + "investigation": 1, + "basecamp": 1, + "literature": 1, + "socket": 1, + "io": 1, + "client": 1, + "fiscal": 1, + "user": 1, + "debug": 1, + "information": 1, + "frontend": 1, + "upstream": 1, + "raising": 1, + "hand": 1, + "style": 1, + "clean": 1, + "up": 1, + "motif": 1, + "event": 1, + "help": 1, + "wanted": 1, + "priority": 1, + "medium": 1, + "financial": 1, + "ruby": 1, + "es": 1, + "warrant": 1, + "cancelled": 1, + "plan": 1, + "hackathon": 1, + "beginner": 1, + "typography": 1, + "counsel": 1, + "recording": 1, + "crowdin": 1, + "eslint": 1, + "rules": 1, + "easy": 1, + "repare": 1, + "conference": 1, + "great": 1, + "insight": 1, + "phd": 1, + "orange": 1, + "invalid": 1, + "x": 1, + "changelog": 1, + "e-cypress": 1, + "lipstick": 1, + "-": 1, + "backdoor": 1, + "approved": 1, + "talk": 1, + "subtitle": 1, + "research": 1, + "todo": 1, + "spiral": 1, + "notepad": 1, + "interface": 1, + "critical": 1, + "privacy": 1, + "tests": 1, + "boom": 1, + "web": 1, + "app": 1, + "television": 1, + "uat": 1, + "backer": 1, + "exploit": 1, + "requires": 1, + "travis-yml": 1, + "node": 1, + "dev": 1, + "experience": 1, + "fix": 1, + "backend": 1, + "cleaning": 1, + "internal": 1, + "house": 1, + "technical": 1, + "debt": 1, + "weekly-digest": 1, + "shallow": 1, + "renderer": 1, + "commerce": 1, + "ie": 1, + "hsl": 1, + "left": 1, + "out": 1, + "welcome": 1, + "opinions": 1, + "documents": 1, + "legacy": 1, + "grafana": 1, + "react": 1, + "native": 1, + "lang-go": 1, + "tutorial": 1, + "plugin": 1, + "logo": 1, + "refactoring": 1, + "safari": 1, + "saltstack": 1, + "available": 1, + "server": 1, + "rendering": 1, + "htmlfile": 1, + "theorem": 1, + "social": 1, + "internationalisation": 1, + "definition": 1, + "enquire": 1, + "packaging": 1, + "lang-r": 1, + "regression": 1, + "container": 1, + "opencollective": 1, + "report": 1, + "performance": 1, + "clickup": 1, + "installer": 1, + "statement": 1, + "gcp": 1, + "opinion": 1, + "accepted": 1, + "html": 1, + "a": 1, + "y": 1, + "general": 1, + "js": 1, + "unit": 1, + "speak": 1, + "brainstorming": 1, + "backup": 1, + "language": 1, + "bugfix": 1, + "k": 1, + "s": 1, + "scrum": 1, + "paper": 1, + "library": 1, + "stale": 1, + "optimization": 1, + "show": 1, + "apple": 1, + "low": 1, + "functions": 1, + "gnu": 1, + "linux": 1, + "focus": 1, + "groups": 1, + "dependency-update": 1, + "related": 1, + "bootstrap": 1, + "usability": 1, + "*nix": 1, + "externs": 1, + "critique": 1, + "prince": 1, + "demonstration": 1, + "⬆️": 1, + "memo": 1, + "revisitinfuture": 1, + "tips": 1, + "reference": 1, + "high": 1, + "bug-report": 1, + "babel": 1, + "flashsocket": 1, + "unix": 1, + "npm": 1, + "site": 1, + "chore": 1, + "adapter": 1, + "slides": 1, + "query": 1, + "chat": 1, + "major": 1, + "alpha": 1, + "lock": 1, + "security": 1, + "newsletter": 1, + "verification": 1, + "color": 1, + "containerd": 1, + "doughnut": 1, + "sentry": 1, + "dissertation": 1, + "mentoring": 1, + "confer": 1, + "utilities": 1, + "infosec": 1, + "vulnerability": 1, + "has": 1, + "code": 1, + "teaching": 1, + "protection": 1, + "robot": 1, + "android": 1, + "webaim": 1, + "wontfix": 1, + "triage": 1, + "contribution": 1, + "macos": 1, + "assertion": 1, + "blog": 1, + "progress": 1, + "future": 1, + "architecture": 1, + "enhancements": 1, + "pmi": 1, + "validation": 1, + "art": 1, + "film": 1, + "bitbucket": 1, + "cloud": 1, + "labour": 1, + "python": 1, + "suggestion": 1, + "crypto": 1, + "attitudinal": 1, + "electron": 1, + "trial": 1, + "example": 1, + "resolution": 1, + "redirect": 1, + "assessment": 1, + "monitor": 1, + "css": 1, + "hack": 1, + "translation": 1, + "opportunity": 1, + "vultr": 1, + "kubernetes": 1, + "wiki": 1, + "parser": 1, + "pwa": 1, + "iphone": 1, + "program": 1, + "finding": 1, + "digital": 1, + "ocean": 1, + "safeguard": 1, + "iac": 1, + "javascript": 1, + "integration": 1, + "glo": 1, + "porting": 1, + "on": 1, + "hold": 1, + "evaluation": 1, + "go": 1, + "must-triage": 1, + "gradle": 1, + "accessibility": 1, + "work": 1, + "other": 1, + "wrangling": 1, + "sast": 1, + "tech-debt": 1, + "entry": 1, + "fault": 1, + "problem": 1, + "brand": 1, + "internal-issue-created": 1, + "pmp": 1, + "bdd": 1, + "checkpoint": 1, + "csharp": 1, + "unreviewed": 1, + "idea": 1, + "feedback": 1, + "requested": 1, + "wcag": 1, + "bugs": 1, + "mentor": 1, + "economics": 1, + "lib": 1, + "puppet": 1, + "speech": 1, + "balloon": 1, + "c": 1, + "c++": 1, + "bulb": 1, + "prometheus": 1, + "rocket": 1, + "discuss": 1, + "doc": 1, + "blogs": 1, + "unit-mocha": 1, + "enterprise": 1, + "scheduler": 1, + "class": 1, + "fields": 1, + "commercial": 1, + "infra": 1, + "terraform": 1, + "figure": 1, + "layout": 1, + "specification": 1, + "vector": 1, + "greenkeeper": 1, + "tdd": 1, + "raster": 1, + "mishap": 1, + "sketch": 1, + "released": 1, + "font": 1, + "deployment": 1, + "e-nightwatch": 1, + "engine": 1, + "vulns": 1, + "syntax": 1, + "deliverable": 1, + "manual": 1, + "osx": 1, + "axe": 1, + "sendgrid": 1, + "operating": 1, + "system": 1, + "advance": 1, + "workflow": 1, + "safety": 1, + "phonetic": 1, + "concept": 1, + "lerna": 1, + "readme": 1, + "music": 1, + "failing": 1, + "customer": 1, + "extension": 1, + "lint": 1, + "optimizing": 1, + "compiler": 1, + "css-select": 1, + "figma": 1, + "finance": 1, + "closed": 1, + "due": 1, + "inactivity": 1, + "jira": 1, + "survey": 1, + "behavioral": 1, + "multi": 1, + "module": 1, + "mixing": 1, + "backlog": 1, + "update": 1, + "present": 1, + "modules": 1, + "lang-julia": 1, + "vuln": 1, + "demo": 1, + "corporate": 1, + "spam": 1, + "handshakes": 1, + "platform": 1, + "wave": 1, + "ansible": 1, + "lang-convert": 1, + "gdpr": 1, + "classes": 1, + "websocket": 1, + "speach": 1, + "b": 1, + "chef": 1, + "patreon": 1, + "reviewed-changes-requested": 1, + "youtube": 1, + "(legacy)": 1, + "mentorship": 1, + "typescript": 1, + "didactic": 1, + "story": 1, + "academia": 1 + }, + "positive_weights_sum": {}, + "negative_weights_sum": {} + }, + "example": { + "positive_weights": { + "template": 22.78125, + "bias": 3.9423414991964926e-12, + "sample": 22.78125, + "demonstration": 22.78125, + "reference": 22.78125, + "pr": 0.2574920654296876, + "good": 6.517767906188965, + "example": 7.415771484375, + "component": 0.28125, + "developer": 0.75, + "tools": 0.75, + "inspiration": 0.5, + "business": 0.6666666666666667, + "process": 0.6666666666666667, + "sustain": 0.5, + "confirmed": 0.5, + "type": 0.75, + "question": 0.75, + "grey": 0.75, + "cmty": 2, + "need-info": 0.5, + "sustenance": 0.5, + "first": 0.28125, + "issue": 0.28125, + "kind": 0.6666666666666667, + "discussion": 0.6666666666666667, + "palette": 0.5, + "azure": 0.6666666666666667, + "ad": 0.6666666666666667, + "data": 0.6666666666666667, + "collection": 0.6666666666666667, + "external-bugs": 0.5, + "deal": 0.5, + "hacking": 0.5, + "video": 0.5, + "test": 0.75, + "utils": 0.75, + "hsv": 2, + "thesis": 2, + "pentesting": 2, + "design": 0.6666666666666667, + "website": 0.6666666666666667, + "copy": 0.6666666666666667, + "bug": 2, + "guide": 2, + "next": 0.6666666666666667, + "meetup!": 0.6666666666666667, + "feat": 0.75, + "ui": 2, + "mastering": 2, + "steps": 2, + "abandoned": 2, + "badges": 2, + "sponsor": 2, + "assess": 2, + "merged": 0.6666666666666667, + "vlog": 2, + "acceptance": 0.6666666666666667, + "testing": 0.6666666666666667, + "hot": 2, + "tv": 2, + "soundtrack": 2, + "(category)": 0.6666666666666667, + "ci": 0.6666666666666667, + "cd": 0.6666666666666667, + "multi-cloud": 2, + "funding": 2, + "finder": 2, + "difficulty": 2, + "hard": 2, + "documentation": 2, + "book": 2, + "diary": 2, + "standard": 2, + "colour": 2, + "computer": 2, + "desktop": 2, + "flaw": 2, + "reliability": 2, + "cli-service": 0.75, + "build": 0.75, + "blocked": 2, + "maintenance": 2, + "construction": 2, + "ios": 2, + "planned": 2, + "feature": 0.8333333333333334, + "feature-request": 2, + "rfc": 2, + "image": 2, + "stock": 2, + "reminder": 2, + "status": 0.8, + "review": 2, + "needed": 2, + "in": 2, + "lang-crystal": 2, + "breaking": 0.75, + "change": 0.75, + "phone": 2, + "refactor": 2, + "monologue": 2, + "reviewed-approved": 0.6666666666666667, + "new": 2, + "best": 2, + "practice": 2, + "lecture": 2, + "backing": 2, + "browser": 2, + "aws": 2, + "polish": 0.8, + "nail": 0.8, + "care": 0.8, + "article": 2, + "peer-review": 2, + "writer-needed": 2, + "eventstorming": 2, + "freemasonry": 2, + "icons": 2, + "lean": 2, + "cannot": 2, + "reproduce": 2, + "paas": 2, + "net": 2, + "core": 2, + "wiretap": 2, + "unit-jest": 2, + "instruction": 2, + "infrastructure": 2, + "rgb": 2, + "ideas": 2, + "target": 2, + "windows": 2, + "call": 2, + "iconography": 2, + "promote": 2, + "support": 2, + "first-timers-only": 2, + "java": 2, + "cdn": 2, + "dependency": 2, + "ready": 0.8, + "for": 0.8, + "deploy": 0.8, + "troubleshooting": 2, + "spec": 0.75, + "bigint": 2, + "async": 2, + "generators": 2, + "proposal": 2, + "e": 2, + "approachability": 2, + "investment": 2, + "conflicts": 2, + "optimisation": 2, + "kotlin": 2, + "release": 2, + "unconfirmed": 2, + "duplicate": 2, + "repeat": 2, + "devops": 2, + "defend": 2, + "blogging": 2, + "friendliness": 2, + "i": 2, + "n": 2, + "cla": 2, + "signed": 2, + "icebox": 2, + "meetup": 2, + "examination": 2, + "mobile": 2, + "device": 2, + "api": 2, + "decorators": 2, + "addon": 2, + "cracking": 2, + "sparkles": 2, + "enhancement": 2, + "hooks": 2, + "improved": 2, + "error": 2, + "handling": 2, + "needs": 0.32000000000000006, + "repro": 2, + "upkeep": 2, + "reactis": 2, + "to": 0.8, + "be": 2, + "white": 2, + "check": 2, + "mark": 2, + "external": 2, + "hacktoberfest": 2, + "lang-dart": 2, + "framework": 2, + "icon": 2, + "grant": 2, + "needs-research": 2, + "cybersec": 2, + "biz": 2, + "internationalization": 2, + "utility-lib": 2, + "qa": 2, + "do": 2, + "not": 2, + "merge": 2, + "hacked": 2, + "how-to": 2, + "beginner-friendly": 2, + "trello": 2, + "os": 2, + "sound": 2, + "docs": 2, + "improvement": 2, + "heavy": 0.8333333333333334, + "plus": 0.8333333333333334, + "sign": 0.8333333333333334, + "request": 0.8333333333333334, + "glitch": 2, + "cx": 2, + "dependencies": 2, + "inquiry": 2, + "deno": 2, + "area": 2, + "crash": 2, + "camera": 2, + "wip": 2, + "configure": 2, + "dom": 2, + "programming": 2, + "font-face": 2, + "rgba": 2, + "parser-specific": 2, + "wikipedia": 2, + "shell": 2, + "contributions": 2, + "tryout": 2, + "thought": 2, + "analysis": 2, + "contenu": 2, + "cli": 2, + "fund": 2, + "investigation": 2, + "basecamp": 2, + "literature": 2, + "socket": 2, + "io": 2, + "client": 2, + "fiscal": 2, + "user": 2, + "debug": 2, + "information": 2, + "frontend": 2, + "upstream": 2, + "raising": 2, + "hand": 2, + "style": 2, + "clean": 2, + "up": 2, + "motif": 2, + "event": 2, + "help": 2, + "wanted": 2, + "priority": 2, + "medium": 2, + "financial": 2, + "ruby": 2, + "es": 2, + "warrant": 2, + "cancelled": 2, + "plan": 2, + "hackathon": 2, + "beginner": 2, + "typography": 2, + "counsel": 2, + "recording": 2, + "crowdin": 2, + "eslint": 2, + "rules": 2, + "easy": 2, + "repare": 2, + "conference": 2, + "great": 2, + "insight": 2, + "phd": 2, + "orange": 2, + "invalid": 2, + "x": 2, + "changelog": 2, + "e-cypress": 2, + "lipstick": 2, + "-": 2, + "backdoor": 2, + "approved": 2, + "talk": 2, + "subtitle": 2, + "research": 2, + "todo": 2, + "spiral": 2, + "notepad": 2, + "interface": 2, + "critical": 2, + "privacy": 2, + "tests": 2, + "boom": 2, + "web": 2, + "app": 0.32000000000000006, + "television": 2, + "uat": 2, + "backer": 2, + "exploit": 2, + "requires": 2, + "travis-yml": 2, + "node": 2, + "dev": 2, + "experience": 2, + "fix": 2, + "backend": 2, + "cleaning": 2, + "internal": 0.6666666666666667, + "house": 2, + "technical": 2, + "debt": 2, + "weekly-digest": 2, + "shallow": 2, + "renderer": 2, + "commerce": 2, + "ie": 2, + "hsl": 2, + "left": 2, + "out": 2, + "welcome": 2, + "opinions": 2, + "documents": 2, + "legacy": 2, + "grafana": 2, + "react": 2, + "native": 2, + "lang-go": 2, + "tutorial": 2, + "plugin": 2, + "logo": 2, + "refactoring": 2, + "safari": 2, + "saltstack": 2, + "available": 2, + "server": 2, + "rendering": 2, + "htmlfile": 2, + "theorem": 2, + "social": 2, + "internationalisation": 2, + "definition": 2, + "enquire": 2, + "packaging": 2, + "lang-r": 2, + "regression": 2, + "container": 2, + "opencollective": 2, + "report": 2, + "performance": 2, + "clickup": 2, + "installer": 2, + "statement": 2, + "gcp": 2, + "opinion": 2, + "accepted": 2, + "html": 2, + "a": 0.32000000000000006, + "y": 2, + "general": 2, + "js": 2, + "unit": 2, + "speak": 2, + "brainstorming": 2, + "backup": 2, + "language": 2, + "bugfix": 2, + "k": 2, + "s": 2, + "scrum": 2, + "paper": 2, + "library": 2, + "stale": 2, + "optimization": 2, + "show": 2, + "apple": 2, + "low": 2, + "functions": 2, + "gnu": 2, + "linux": 2, + "focus": 2, + "groups": 2, + "dependency-update": 2, + "related": 2, + "bootstrap": 2, + "usability": 2, + "*nix": 2, + "externs": 2, + "critique": 2, + "prince": 2, + "⬆️": 2, + "memo": 2, + "revisitinfuture": 2, + "tips": 2, + "high": 2, + "bug-report": 2, + "babel": 2, + "flashsocket": 2, + "unix": 2, + "npm": 2, + "site": 2, + "chore": 2, + "adapter": 2, + "slides": 2, + "query": 2, + "chat": 2, + "major": 2, + "alpha": 2, + "lock": 2, + "security": 2, + "newsletter": 2, + "verification": 2, + "color": 2, + "containerd": 2, + "doughnut": 2, + "sentry": 2, + "dissertation": 2, + "mentoring": 2, + "confer": 2, + "utilities": 2, + "infosec": 2, + "vulnerability": 2, + "has": 2, + "code": 2, + "teaching": 2, + "protection": 2, + "robot": 2, + "android": 2, + "webaim": 2, + "wontfix": 2, + "triage": 2, + "contribution": 2, + "macos": 2, + "assertion": 2, + "blog": 2, + "progress": 2, + "future": 2, + "architecture": 2, + "enhancements": 2, + "pmi": 2, + "promotion": 2, + "validation": 2, + "art": 2, + "film": 2, + "bitbucket": 2, + "cloud": 2, + "labour": 2, + "python": 2, + "suggestion": 2, + "crypto": 2, + "attitudinal": 2, + "electron": 2, + "trial": 2, + "resolution": 2, + "redirect": 2, + "assessment": 2, + "monitor": 2, + "css": 2, + "hack": 2, + "translation": 2, + "opportunity": 2, + "vultr": 2, + "kubernetes": 2, + "wiki": 2, + "parser": 2, + "pwa": 2, + "iphone": 2, + "program": 2, + "finding": 2, + "digital": 2, + "ocean": 2, + "safeguard": 2, + "iac": 2, + "javascript": 2, + "integration": 2, + "glo": 2, + "porting": 2, + "on": 2, + "hold": 2, + "evaluation": 2, + "go": 2, + "must-triage": 2, + "gradle": 2, + "accessibility": 2, + "work": 2, + "other": 2, + "wrangling": 2, + "sast": 2, + "tech-debt": 2, + "entry": 2, + "fault": 2, + "problem": 2, + "brand": 2, + "internal-issue-created": 2, + "pmp": 2, + "bdd": 2, + "checkpoint": 2, + "csharp": 2, + "unreviewed": 2, + "idea": 2, + "feedback": 2, + "requested": 2, + "wcag": 2, + "bugs": 2, + "mentor": 2, + "economics": 2, + "lib": 2, + "puppet": 2, + "speech": 2, + "balloon": 2, + "demo": 10.125, + "c": 0.6666666666666667, + "c++": 0.6666666666666667, + "bulb": 2, + "prometheus": 2, + "rocket": 2, + "discuss": 2, + "doc": 2, + "blogs": 2, + "unit-mocha": 2, + "enterprise": 2, + "scheduler": 2, + "class": 0.75, + "fields": 0.75, + "commercial": 2, + "infra": 2, + "terraform": 2, + "figure": 2, + "layout": 2, + "specification": 2, + "vector": 2, + "greenkeeper": 2, + "tdd": 2, + "raster": 2, + "mishap": 2, + "sketch": 2, + "released": 2, + "font": 2, + "deployment": 2, + "e-nightwatch": 2, + "engine": 2, + "vulns": 2, + "syntax": 2, + "deliverable": 2, + "manual": 2, + "osx": 2, + "axe": 2, + "sendgrid": 2, + "operating": 2, + "system": 2, + "advance": 2, + "workflow": 2, + "safety": 2, + "phonetic": 2, + "concept": 2, + "lerna": 2, + "readme": 2, + "music": 2, + "failing": 2, + "customer": 2, + "extension": 2, + "lint": 2, + "optimizing": 2, + "compiler": 2, + "css-select": 2, + "figma": 2, + "finance": 2, + "closed": 0.8, + "due": 0.8, + "inactivity": 0.8, + "jira": 2, + "survey": 2, + "behavioral": 2, + "multi": 2, + "module": 2, + "mixing": 2, + "backlog": 2, + "update": 2, + "present": 2, + "modules": 2, + "lang-julia": 2, + "vuln": 2, + "corporate": 2, + "spam": 2, + "handshakes": 2, + "platform": 2, + "wave": 2, + "ansible": 2, + "lang-convert": 2, + "gdpr": 2, + "classes": 2, + "websocket": 2, + "speach": 2, + "b": 2, + "chef": 2, + "patreon": 2, + "reviewed-changes-requested": 2, + "youtube": 2, + "(legacy)": 2, + "mentorship": 2, + "typescript": 2, + "didactic": 2, + "story": 2, + "academia": 2 + }, + "negative_weights": { + "template": 0.015625, + "bias": 3.8013891910989717, + "sample": 0.015625, + "demonstration": 0.015625, + "reference": 0.015625, + "pr": 0.20022583007812494, + "good": 0.02607107162475586, + "example": 0.024027099609374995, + "component": 3.515625, + "developer": 1.875, + "tools": 1.875, + "inspiration": 2.25, + "business": 2, + "process": 2, + "sustain": 2.25, + "confirmed": 2.25, + "type": 1.875, + "question": 1.875, + "grey": 1.875, + "cmty": 1, + "need-info": 2.25, + "sustenance": 2.25, + "first": 3.515625, + "issue": 3.515625, + "kind": 2, + "discussion": 2, + "palette": 2.25, + "azure": 2, + "ad": 2, + "data": 2, + "collection": 2, + "external-bugs": 2.25, + "deal": 2.25, + "hacking": 2.25, + "video": 2.25, + "test": 1.875, + "utils": 1.875, + "hsv": 1, + "thesis": 1, + "pentesting": 1, + "design": 2, + "website": 2, + "copy": 2, + "bug": 1, + "guide": 1, + "next": 2, + "meetup!": 2, + "feat": 1.875, + "ui": 1, + "mastering": 1, + "steps": 1, + "abandoned": 1, + "badges": 1, + "sponsor": 1, + "assess": 1, + "merged": 2, + "vlog": 1, + "acceptance": 2, + "testing": 2, + "hot": 1, + "tv": 1, + "soundtrack": 1, + "(category)": 2, + "ci": 2, + "cd": 2, + "multi-cloud": 1, + "funding": 1, + "finder": 1, + "difficulty": 1, + "hard": 1, + "documentation": 1, + "book": 1, + "diary": 1, + "standard": 1, + "colour": 1, + "computer": 1, + "desktop": 1, + "flaw": 1, + "reliability": 1, + "cli-service": 1.875, + "build": 1.875, + "blocked": 1, + "maintenance": 1, + "construction": 1, + "ios": 1, + "planned": 1, + "feature": 1.75, + "feature-request": 1, + "rfc": 1, + "image": 1, + "stock": 1, + "reminder": 1, + "status": 1.7999999999999998, + "review": 1, + "needed": 1, + "in": 1, + "lang-crystal": 1, + "breaking": 1.875, + "change": 1.875, + "phone": 1, + "refactor": 1, + "monologue": 1, + "reviewed-approved": 2, + "new": 1, + "best": 1, + "practice": 1, + "lecture": 1, + "backing": 1, + "browser": 1, + "aws": 1, + "polish": 1.7999999999999998, + "nail": 1.7999999999999998, + "care": 1.7999999999999998, + "article": 1, + "peer-review": 1, + "writer-needed": 1, + "eventstorming": 1, + "freemasonry": 1, + "icons": 1, + "lean": 1, + "cannot": 1, + "reproduce": 1, + "paas": 1, + "net": 1, + "core": 1, + "wiretap": 1, + "unit-jest": 1, + "instruction": 1, + "infrastructure": 1, + "rgb": 1, + "ideas": 1, + "target": 1, + "windows": 1, + "call": 1, + "iconography": 1, + "promote": 1, + "support": 1, + "first-timers-only": 1, + "java": 1, + "cdn": 1, + "dependency": 1, + "ready": 1.7999999999999998, + "for": 1.7999999999999998, + "deploy": 1.7999999999999998, + "troubleshooting": 1, + "spec": 1.875, + "bigint": 1, + "async": 1, + "generators": 1, + "proposal": 1, + "e": 1, + "approachability": 1, + "investment": 1, + "conflicts": 1, + "optimisation": 1, + "kotlin": 1, + "release": 1, + "unconfirmed": 1, + "duplicate": 1, + "repeat": 1, + "devops": 1, + "defend": 1, + "blogging": 1, + "friendliness": 1, + "i": 1, + "n": 1, + "cla": 1, + "signed": 1, + "icebox": 1, + "meetup": 1, + "examination": 1, + "mobile": 1, + "device": 1, + "api": 1, + "decorators": 1, + "addon": 1, + "cracking": 1, + "sparkles": 1, + "enhancement": 1, + "hooks": 1, + "improved": 1, + "error": 1, + "handling": 1, + "needs": 3.2399999999999993, + "repro": 1, + "upkeep": 1, + "reactis": 1, + "to": 1.7999999999999998, + "be": 1, + "white": 1, + "check": 1, + "mark": 1, + "external": 1, + "hacktoberfest": 1, + "lang-dart": 1, + "framework": 1, + "icon": 1, + "grant": 1, + "needs-research": 1, + "cybersec": 1, + "biz": 1, + "internationalization": 1, + "utility-lib": 1, + "qa": 1, + "do": 1, + "not": 1, + "merge": 1, + "hacked": 1, + "how-to": 1, + "beginner-friendly": 1, + "trello": 1, + "os": 1, + "sound": 1, + "docs": 1, + "improvement": 1, + "heavy": 1.75, + "plus": 1.75, + "sign": 1.75, + "request": 1.75, + "glitch": 1, + "cx": 1, + "dependencies": 1, + "inquiry": 1, + "deno": 1, + "area": 1, + "crash": 1, + "camera": 1, + "wip": 1, + "configure": 1, + "dom": 1, + "programming": 1, + "font-face": 1, + "rgba": 1, + "parser-specific": 1, + "wikipedia": 1, + "shell": 1, + "contributions": 1, + "tryout": 1, + "thought": 1, + "analysis": 1, + "contenu": 1, + "cli": 1, + "fund": 1, + "investigation": 1, + "basecamp": 1, + "literature": 1, + "socket": 1, + "io": 1, + "client": 1, + "fiscal": 1, + "user": 1, + "debug": 1, + "information": 1, + "frontend": 1, + "upstream": 1, + "raising": 1, + "hand": 1, + "style": 1, + "clean": 1, + "up": 1, + "motif": 1, + "event": 1, + "help": 1, + "wanted": 1, + "priority": 1, + "medium": 1, + "financial": 1, + "ruby": 1, + "es": 1, + "warrant": 1, + "cancelled": 1, + "plan": 1, + "hackathon": 1, + "beginner": 1, + "typography": 1, + "counsel": 1, + "recording": 1, + "crowdin": 1, + "eslint": 1, + "rules": 1, + "easy": 1, + "repare": 1, + "conference": 1, + "great": 1, + "insight": 1, + "phd": 1, + "orange": 1, + "invalid": 1, + "x": 1, + "changelog": 1, + "e-cypress": 1, + "lipstick": 1, + "-": 1, + "backdoor": 1, + "approved": 1, + "talk": 1, + "subtitle": 1, + "research": 1, + "todo": 1, + "spiral": 1, + "notepad": 1, + "interface": 1, + "critical": 1, + "privacy": 1, + "tests": 1, + "boom": 1, + "web": 1, + "app": 3.2399999999999993, + "television": 1, + "uat": 1, + "backer": 1, + "exploit": 1, + "requires": 1, + "travis-yml": 1, + "node": 1, + "dev": 1, + "experience": 1, + "fix": 1, + "backend": 1, + "cleaning": 1, + "internal": 2, + "house": 1, + "technical": 1, + "debt": 1, + "weekly-digest": 1, + "shallow": 1, + "renderer": 1, + "commerce": 1, + "ie": 1, + "hsl": 1, + "left": 1, + "out": 1, + "welcome": 1, + "opinions": 1, + "documents": 1, + "legacy": 1, + "grafana": 1, + "react": 1, + "native": 1, + "lang-go": 1, + "tutorial": 1, + "plugin": 1, + "logo": 1, + "refactoring": 1, + "safari": 1, + "saltstack": 1, + "available": 1, + "server": 1, + "rendering": 1, + "htmlfile": 1, + "theorem": 1, + "social": 1, + "internationalisation": 1, + "definition": 1, + "enquire": 1, + "packaging": 1, + "lang-r": 1, + "regression": 1, + "container": 1, + "opencollective": 1, + "report": 1, + "performance": 1, + "clickup": 1, + "installer": 1, + "statement": 1, + "gcp": 1, + "opinion": 1, + "accepted": 1, + "html": 1, + "a": 3.2399999999999993, + "y": 1, + "general": 1, + "js": 1, + "unit": 1, + "speak": 1, + "brainstorming": 1, + "backup": 1, + "language": 1, + "bugfix": 1, + "k": 1, + "s": 1, + "scrum": 1, + "paper": 1, + "library": 1, + "stale": 1, + "optimization": 1, + "show": 1, + "apple": 1, + "low": 1, + "functions": 1, + "gnu": 1, + "linux": 1, + "focus": 1, + "groups": 1, + "dependency-update": 1, + "related": 1, + "bootstrap": 1, + "usability": 1, + "*nix": 1, + "externs": 1, + "critique": 1, + "prince": 1, + "⬆️": 1, + "memo": 1, + "revisitinfuture": 1, + "tips": 1, + "high": 1, + "bug-report": 1, + "babel": 1, + "flashsocket": 1, + "unix": 1, + "npm": 1, + "site": 1, + "chore": 1, + "adapter": 1, + "slides": 1, + "query": 1, + "chat": 1, + "major": 1, + "alpha": 1, + "lock": 1, + "security": 1, + "newsletter": 1, + "verification": 1, + "color": 1, + "containerd": 1, + "doughnut": 1, + "sentry": 1, + "dissertation": 1, + "mentoring": 1, + "confer": 1, + "utilities": 1, + "infosec": 1, + "vulnerability": 1, + "has": 1, + "code": 1, + "teaching": 1, + "protection": 1, + "robot": 1, + "android": 1, + "webaim": 1, + "wontfix": 1, + "triage": 1, + "contribution": 1, + "macos": 1, + "assertion": 1, + "blog": 1, + "progress": 1, + "future": 1, + "architecture": 1, + "enhancements": 1, + "pmi": 1, + "promotion": 1, + "validation": 1, + "art": 1, + "film": 1, + "bitbucket": 1, + "cloud": 1, + "labour": 1, + "python": 1, + "suggestion": 1, + "crypto": 1, + "attitudinal": 1, + "electron": 1, + "trial": 1, + "resolution": 1, + "redirect": 1, + "assessment": 1, + "monitor": 1, + "css": 1, + "hack": 1, + "translation": 1, + "opportunity": 1, + "vultr": 1, + "kubernetes": 1, + "wiki": 1, + "parser": 1, + "pwa": 1, + "iphone": 1, + "program": 1, + "finding": 1, + "digital": 1, + "ocean": 1, + "safeguard": 1, + "iac": 1, + "javascript": 1, + "integration": 1, + "glo": 1, + "porting": 1, + "on": 1, + "hold": 1, + "evaluation": 1, + "go": 1, + "must-triage": 1, + "gradle": 1, + "accessibility": 1, + "work": 1, + "other": 1, + "wrangling": 1, + "sast": 1, + "tech-debt": 1, + "entry": 1, + "fault": 1, + "problem": 1, + "brand": 1, + "internal-issue-created": 1, + "pmp": 1, + "bdd": 1, + "checkpoint": 1, + "csharp": 1, + "unreviewed": 1, + "idea": 1, + "feedback": 1, + "requested": 1, + "wcag": 1, + "bugs": 1, + "mentor": 1, + "economics": 1, + "lib": 1, + "puppet": 1, + "speech": 1, + "balloon": 1, + "demo": 0.0625, + "c": 2, + "c++": 2, + "bulb": 1, + "prometheus": 1, + "rocket": 1, + "discuss": 1, + "doc": 1, + "blogs": 1, + "unit-mocha": 1, + "enterprise": 1, + "scheduler": 1, + "class": 1.875, + "fields": 1.875, + "commercial": 1, + "infra": 1, + "terraform": 1, + "figure": 1, + "layout": 1, + "specification": 1, + "vector": 1, + "greenkeeper": 1, + "tdd": 1, + "raster": 1, + "mishap": 1, + "sketch": 1, + "released": 1, + "font": 1, + "deployment": 1, + "e-nightwatch": 1, + "engine": 1, + "vulns": 1, + "syntax": 1, + "deliverable": 1, + "manual": 1, + "osx": 1, + "axe": 1, + "sendgrid": 1, + "operating": 1, + "system": 1, + "advance": 1, + "workflow": 1, + "safety": 1, + "phonetic": 1, + "concept": 1, + "lerna": 1, + "readme": 1, + "music": 1, + "failing": 1, + "customer": 1, + "extension": 1, + "lint": 1, + "optimizing": 1, + "compiler": 1, + "css-select": 1, + "figma": 1, + "finance": 1, + "closed": 1.7999999999999998, + "due": 1.7999999999999998, + "inactivity": 1.7999999999999998, + "jira": 1, + "survey": 1, + "behavioral": 1, + "multi": 1, + "module": 1, + "mixing": 1, + "backlog": 1, + "update": 1, + "present": 1, + "modules": 1, + "lang-julia": 1, + "vuln": 1, + "corporate": 1, + "spam": 1, + "handshakes": 1, + "platform": 1, + "wave": 1, + "ansible": 1, + "lang-convert": 1, + "gdpr": 1, + "classes": 1, + "websocket": 1, + "speach": 1, + "b": 1, + "chef": 1, + "patreon": 1, + "reviewed-changes-requested": 1, + "youtube": 1, + "(legacy)": 1, + "mentorship": 1, + "typescript": 1, + "didactic": 1, + "story": 1, + "academia": 1 + }, + "positive_weights_sum": {}, + "negative_weights_sum": {} + }, + "a11y": { + "positive_weights": { + "approachability": 22.78125, + "bias": 7.577842551629352e-17, + "friendliness": 22.78125, + "a": 2.5600000000000005, + "y": 16, + "usability": 9.610839843750004, + "webaim": 10.125, + "accessibility": 10.125, + "wcag": 10.125, + "component": 0.28125, + "developer": 0.28125, + "tools": 0.28125, + "inspiration": 0.125, + "business": 0.6666666666666667, + "process": 0.6666666666666667, + "sustain": 0.5, + "confirmed": 0.5, + "type": 0.28125, + "question": 0.75, + "grey": 0.75, + "cmty": 2, + "need-info": 0.5, + "sustenance": 0.5, + "good": 0.75, + "first": 0.75, + "issue": 0.75, + "kind": 0.6666666666666667, + "discussion": 0.6666666666666667, + "palette": 0.5, + "azure": 0.6666666666666667, + "ad": 0.6666666666666667, + "data": 0.6666666666666667, + "collection": 0.6666666666666667, + "external-bugs": 0.5, + "deal": 0.5, + "hacking": 0.5, + "video": 0.5, + "test": 0.8, + "utils": 2, + "hsv": 0.5, + "thesis": 0.5, + "pentesting": 0.5, + "design": 0.5, + "website": 0.6666666666666667, + "copy": 0.6666666666666667, + "bug": 2, + "guide": 2, + "next": 0.6666666666666667, + "meetup!": 0.6666666666666667, + "feat": 0.75, + "ui": 2, + "mastering": 2, + "steps": 2, + "abandoned": 2, + "badges": 2, + "sponsor": 2, + "assess": 2, + "pr": 0.8, + "merged": 2, + "vlog": 2, + "acceptance": 2, + "testing": 0.029629629629629645, + "hot": 2, + "tv": 2, + "soundtrack": 2, + "(category)": 2, + "ci": 0.6666666666666667, + "cd": 0.6666666666666667, + "multi-cloud": 2, + "funding": 2, + "finder": 2, + "difficulty": 2, + "hard": 2, + "documentation": 2, + "book": 2, + "diary": 2, + "standard": 2, + "colour": 2, + "computer": 2, + "desktop": 2, + "flaw": 2, + "reliability": 2, + "cli-service": 0.75, + "build": 0.75, + "blocked": 2, + "maintenance": 2, + "construction": 2, + "ios": 2, + "planned": 2, + "feature": 0.8333333333333333, + "feature-request": 2, + "rfc": 2, + "image": 0.6666666666666667, + "stock": 2, + "reminder": 2, + "status": 0.8, + "review": 2, + "needed": 2, + "in": 2, + "lang-crystal": 2, + "breaking": 2, + "change": 2, + "phone": 2, + "refactor": 2, + "monologue": 2, + "reviewed-approved": 2, + "new": 0.75, + "best": 0.75, + "practice": 0.75, + "lecture": 2, + "backing": 2, + "browser": 2, + "aws": 2, + "polish": 0.8, + "nail": 0.8, + "care": 0.8, + "article": 2, + "peer-review": 2, + "writer-needed": 2, + "eventstorming": 2, + "freemasonry": 2, + "icons": 2, + "lean": 2, + "cannot": 2, + "reproduce": 2, + "paas": 2, + "net": 2, + "core": 2, + "wiretap": 2, + "unit-jest": 2, + "instruction": 2, + "infrastructure": 2, + "rgb": 2, + "ideas": 2, + "target": 0.6666666666666667, + "windows": 2, + "call": 2, + "iconography": 2, + "promote": 2, + "template": 2, + "support": 0.75, + "first-timers-only": 2, + "java": 2, + "cdn": 2, + "dependency": 2, + "ready": 0.8, + "for": 0.8, + "deploy": 0.8, + "troubleshooting": 2, + "spec": 0.75, + "bigint": 2, + "async": 0.75, + "generators": 0.75, + "proposal": 2, + "e": 2, + "investment": 2, + "conflicts": 2, + "optimisation": 2, + "kotlin": 2, + "release": 2, + "unconfirmed": 2, + "duplicate": 2, + "repeat": 2, + "devops": 2, + "defend": 2, + "blogging": 2, + "i": 2, + "n": 2, + "cla": 2, + "signed": 2, + "icebox": 2, + "meetup": 2, + "examination": 2, + "mobile": 0.75, + "device": 0.75, + "api": 2, + "decorators": 2, + "addon": 2, + "cracking": 2, + "sparkles": 2, + "enhancement": 0.75, + "hooks": 2, + "improved": 2, + "error": 2, + "handling": 2, + "needs": 0.32000000000000006, + "repro": 2, + "upkeep": 2, + "reactis": 2, + "to": 0.8, + "be": 2, + "sample": 2, + "white": 0.8, + "check": 0.8, + "mark": 0.8, + "external": 2, + "hacktoberfest": 2, + "lang-dart": 2, + "framework": 2, + "icon": 2, + "grant": 2, + "needs-research": 2, + "cybersec": 2, + "biz": 2, + "internationalization": 2, + "utility-lib": 2, + "qa": 2, + "do": 2, + "not": 2, + "merge": 2, + "hacked": 2, + "how-to": 2, + "beginner-friendly": 2, + "trello": 2, + "os": 2, + "sound": 2, + "docs": 2, + "improvement": 2, + "heavy": 0.8333333333333333, + "plus": 0.8333333333333333, + "sign": 0.8333333333333333, + "request": 0.8333333333333333, + "glitch": 2, + "cx": 2, + "dependencies": 2, + "inquiry": 2, + "deno": 2, + "area": 2, + "crash": 2, + "camera": 2, + "wip": 2, + "configure": 2, + "dom": 2, + "programming": 2, + "font-face": 2, + "rgba": 2, + "parser-specific": 2, + "wikipedia": 2, + "shell": 2, + "contributions": 2, + "tryout": 2, + "thought": 2, + "analysis": 2, + "contenu": 2, + "cli": 2, + "fund": 2, + "investigation": 2, + "basecamp": 2, + "literature": 2, + "socket": 2, + "io": 2, + "client": 2, + "fiscal": 2, + "user": 2, + "debug": 2, + "information": 2, + "frontend": 2, + "upstream": 2, + "raising": 2, + "hand": 2, + "style": 2, + "clean": 2, + "up": 2, + "motif": 2, + "event": 2, + "help": 2, + "wanted": 2, + "priority": 2, + "medium": 2, + "financial": 2, + "ruby": 2, + "es": 2, + "warrant": 2, + "cancelled": 2, + "plan": 2, + "hackathon": 2, + "beginner": 2, + "typography": 2, + "counsel": 2, + "recording": 2, + "crowdin": 2, + "eslint": 2, + "rules": 2, + "easy": 2, + "repare": 2, + "conference": 2, + "great": 2, + "insight": 2, + "phd": 2, + "orange": 2, + "invalid": 2, + "x": 2, + "changelog": 2, + "e-cypress": 2, + "lipstick": 2, + "-": 2, + "backdoor": 2, + "approved": 2, + "talk": 2, + "subtitle": 2, + "research": 2, + "todo": 2, + "spiral": 2, + "notepad": 2, + "interface": 2, + "critical": 2, + "privacy": 2, + "tests": 2, + "boom": 2, + "web": 2, + "app": 0.8, + "television": 2, + "uat": 2, + "backer": 2, + "exploit": 2, + "requires": 2, + "travis-yml": 2, + "node": 2, + "dev": 2, + "experience": 2, + "fix": 2, + "backend": 2, + "cleaning": 2, + "internal": 2, + "house": 2, + "technical": 2, + "debt": 2, + "weekly-digest": 2, + "shallow": 2, + "renderer": 2, + "commerce": 2, + "ie": 2, + "hsl": 2, + "left": 2, + "out": 2, + "welcome": 2, + "opinions": 2, + "documents": 2, + "legacy": 2, + "grafana": 2, + "react": 2, + "native": 2, + "lang-go": 2, + "tutorial": 2, + "plugin": 2, + "logo": 2, + "refactoring": 2, + "safari": 2, + "saltstack": 2, + "available": 2, + "server": 2, + "rendering": 2, + "htmlfile": 2, + "theorem": 2, + "social": 2, + "internationalisation": 2, + "definition": 2, + "enquire": 2, + "packaging": 2, + "lang-r": 2, + "regression": 2, + "container": 2, + "opencollective": 2, + "report": 2, + "performance": 2, + "clickup": 2, + "installer": 2, + "statement": 2, + "gcp": 2, + "opinion": 2, + "accepted": 2, + "html": 2, + "general": 2, + "js": 2, + "unit": 2, + "speak": 2, + "brainstorming": 2, + "backup": 2, + "language": 2, + "bugfix": 2, + "k": 2, + "s": 2, + "scrum": 2, + "paper": 2, + "library": 2, + "stale": 2, + "optimization": 2, + "show": 2, + "apple": 2, + "low": 2, + "functions": 2, + "gnu": 2, + "linux": 2, + "focus": 2, + "groups": 2, + "dependency-update": 2, + "related": 2, + "bootstrap": 2, + "*nix": 2, + "externs": 2, + "critique": 2, + "prince": 2, + "demonstration": 2, + "⬆️": 2, + "memo": 2, + "revisitinfuture": 2, + "tips": 2, + "reference": 2, + "high": 2, + "bug-report": 2, + "babel": 2, + "flashsocket": 2, + "unix": 2, + "npm": 2, + "site": 2, + "chore": 2, + "adapter": 2, + "slides": 2, + "query": 2, + "chat": 2, + "major": 2, + "alpha": 2, + "lock": 2, + "security": 2, + "newsletter": 2, + "verification": 2, + "color": 2, + "containerd": 2, + "doughnut": 2, + "sentry": 2, + "dissertation": 2, + "mentoring": 2, + "confer": 2, + "utilities": 2, + "infosec": 2, + "vulnerability": 2, + "has": 2, + "code": 2, + "teaching": 2, + "protection": 2, + "robot": 2, + "android": 2, + "wontfix": 2, + "triage": 0.5, + "contribution": 2, + "macos": 2, + "assertion": 2, + "blog": 2, + "progress": 2, + "future": 2, + "architecture": 2, + "enhancements": 2, + "pmi": 2, + "promotion": 2, + "validation": 2, + "art": 2, + "film": 2, + "bitbucket": 2, + "cloud": 2, + "labour": 2, + "python": 2, + "suggestion": 2, + "crypto": 2, + "attitudinal": 2, + "electron": 2, + "trial": 2, + "example": 0.8, + "resolution": 2, + "redirect": 2, + "assessment": 2, + "monitor": 2, + "css": 2, + "hack": 2, + "translation": 2, + "opportunity": 2, + "vultr": 2, + "kubernetes": 2, + "wiki": 2, + "parser": 2, + "pwa": 2, + "iphone": 2, + "program": 2, + "finding": 2, + "digital": 2, + "ocean": 2, + "safeguard": 2, + "iac": 2, + "javascript": 2, + "integration": 2, + "glo": 2, + "porting": 2, + "on": 2, + "hold": 2, + "evaluation": 2, + "go": 2, + "must-triage": 2, + "gradle": 2, + "work": 2, + "other": 2, + "wrangling": 2, + "sast": 2, + "tech-debt": 2, + "entry": 2, + "fault": 2, + "problem": 2, + "brand": 2, + "internal-issue-created": 2, + "pmp": 2, + "bdd": 2, + "checkpoint": 2, + "csharp": 2, + "unreviewed": 2, + "idea": 2, + "feedback": 2, + "requested": 2, + "bugs": 2, + "mentor": 2, + "economics": 2, + "lib": 2, + "puppet": 2, + "speech": 2, + "balloon": 2, + "axe": 10.125, + "wave": 10.125, + "c": 0.6666666666666667, + "c++": 0.6666666666666667, + "bulb": 0.75, + "prometheus": 0.5, + "rocket": 0.6666666666666667, + "discuss": 2, + "doc": 0.5, + "blogs": 2, + "unit-mocha": 2, + "enterprise": 2, + "scheduler": 2, + "class": 2, + "fields": 2, + "commercial": 2, + "infra": 2, + "terraform": 2, + "figure": 2, + "layout": 2, + "specification": 2, + "vector": 0.6666666666666667, + "greenkeeper": 2, + "tdd": 2, + "raster": 2, + "mishap": 2, + "sketch": 2, + "released": 2, + "font": 2, + "deployment": 0.6666666666666667, + "e-nightwatch": 2, + "engine": 0.6666666666666667, + "vulns": 0.6666666666666667, + "syntax": 2, + "deliverable": 2, + "manual": 2, + "osx": 0.6666666666666667, + "sendgrid": 2, + "operating": 0.6666666666666667, + "system": 0.6666666666666667, + "advance": 2, + "workflow": 2, + "safety": 2, + "phonetic": 2, + "concept": 2, + "lerna": 2, + "readme": 2, + "music": 2, + "failing": 0.8, + "customer": 2, + "extension": 2, + "lint": 2, + "optimizing": 2, + "compiler": 2, + "css-select": 2, + "figma": 2, + "finance": 2, + "closed": 0.8, + "due": 0.8, + "inactivity": 0.8, + "jira": 2, + "survey": 2, + "behavioral": 2, + "multi": 2, + "module": 2, + "mixing": 2, + "backlog": 2, + "update": 2, + "present": 2, + "modules": 2, + "lang-julia": 2, + "vuln": 2, + "demo": 2, + "corporate": 2, + "spam": 2, + "handshakes": 2, + "platform": 2, + "ansible": 2, + "lang-convert": 2, + "gdpr": 2, + "classes": 2, + "websocket": 2, + "speach": 2, + "b": 2, + "chef": 2, + "patreon": 2, + "reviewed-changes-requested": 2, + "youtube": 2, + "(legacy)": 2, + "mentorship": 2, + "typescript": 2, + "didactic": 2, + "story": 2, + "academia": 2 + }, + "negative_weights": { + "approachability": 0.015625, + "bias": 5.1376700671051765, + "friendliness": 0.015625, + "a": 0.12000000000000001, + "y": 0.03703703703703705, + "usability": 0.001953125, + "webaim": 0.0625, + "accessibility": 0.0625, + "wcag": 0.0625, + "component": 3.515625, + "developer": 3.515625, + "tools": 3.515625, + "inspiration": 5.0625, + "business": 2, + "process": 2, + "sustain": 2.25, + "confirmed": 2.25, + "type": 3.515625, + "question": 1.875, + "grey": 1.875, + "cmty": 1, + "need-info": 2.25, + "sustenance": 2.25, + "good": 1.875, + "first": 1.875, + "issue": 1.875, + "kind": 2, + "discussion": 2, + "palette": 2.25, + "azure": 2, + "ad": 2, + "data": 2, + "collection": 2, + "external-bugs": 2.25, + "deal": 2.25, + "hacking": 2.25, + "video": 2.25, + "test": 1.7999999999999998, + "utils": 1, + "hsv": 2.25, + "thesis": 2.25, + "pentesting": 2.25, + "design": 2.25, + "website": 2, + "copy": 2, + "bug": 1, + "guide": 1, + "next": 2, + "meetup!": 2, + "feat": 1.875, + "ui": 1, + "mastering": 1, + "steps": 1, + "abandoned": 1, + "badges": 1, + "sponsor": 1, + "assess": 1, + "pr": 1.7999999999999998, + "merged": 1, + "vlog": 1, + "acceptance": 1, + "testing": 14.399999999999999, + "hot": 1, + "tv": 1, + "soundtrack": 1, + "(category)": 1, + "ci": 2, + "cd": 2, + "multi-cloud": 1, + "funding": 1, + "finder": 1, + "difficulty": 1, + "hard": 1, + "documentation": 1, + "book": 1, + "diary": 1, + "standard": 1, + "colour": 1, + "computer": 1, + "desktop": 1, + "flaw": 1, + "reliability": 1, + "cli-service": 1.875, + "build": 1.875, + "blocked": 1, + "maintenance": 1, + "construction": 1, + "ios": 1, + "planned": 1, + "feature": 1.75, + "feature-request": 1, + "rfc": 1, + "image": 2, + "stock": 1, + "reminder": 1, + "status": 1.7999999999999998, + "review": 1, + "needed": 1, + "in": 1, + "lang-crystal": 1, + "breaking": 1, + "change": 1, + "phone": 1, + "refactor": 1, + "monologue": 1, + "reviewed-approved": 1, + "new": 1.875, + "best": 1.875, + "practice": 1.875, + "lecture": 1, + "backing": 1, + "browser": 1, + "aws": 1, + "polish": 1.7999999999999998, + "nail": 1.7999999999999998, + "care": 1.7999999999999998, + "article": 1, + "peer-review": 1, + "writer-needed": 1, + "eventstorming": 1, + "freemasonry": 1, + "icons": 1, + "lean": 1, + "cannot": 1, + "reproduce": 1, + "paas": 1, + "net": 1, + "core": 1, + "wiretap": 1, + "unit-jest": 1, + "instruction": 1, + "infrastructure": 1, + "rgb": 1, + "ideas": 1, + "target": 2, + "windows": 1, + "call": 1, + "iconography": 1, + "promote": 1, + "template": 1, + "support": 1.875, + "first-timers-only": 1, + "java": 1, + "cdn": 1, + "dependency": 1, + "ready": 1.7999999999999998, + "for": 1.7999999999999998, + "deploy": 1.7999999999999998, + "troubleshooting": 1, + "spec": 1.875, + "bigint": 1, + "async": 1.875, + "generators": 1.875, + "proposal": 1, + "e": 1, + "investment": 1, + "conflicts": 1, + "optimisation": 1, + "kotlin": 1, + "release": 1, + "unconfirmed": 1, + "duplicate": 1, + "repeat": 1, + "devops": 1, + "defend": 1, + "blogging": 1, + "i": 1, + "n": 1, + "cla": 1, + "signed": 1, + "icebox": 1, + "meetup": 1, + "examination": 1, + "mobile": 1.875, + "device": 1.875, + "api": 1, + "decorators": 1, + "addon": 1, + "cracking": 1, + "sparkles": 1, + "enhancement": 1.875, + "hooks": 1, + "improved": 1, + "error": 1, + "handling": 1, + "needs": 3.2399999999999993, + "repro": 1, + "upkeep": 1, + "reactis": 1, + "to": 1.7999999999999998, + "be": 1, + "sample": 1, + "white": 1.7999999999999998, + "check": 1.7999999999999998, + "mark": 1.7999999999999998, + "external": 1, + "hacktoberfest": 1, + "lang-dart": 1, + "framework": 1, + "icon": 1, + "grant": 1, + "needs-research": 1, + "cybersec": 1, + "biz": 1, + "internationalization": 1, + "utility-lib": 1, + "qa": 1, + "do": 1, + "not": 1, + "merge": 1, + "hacked": 1, + "how-to": 1, + "beginner-friendly": 1, + "trello": 1, + "os": 1, + "sound": 1, + "docs": 1, + "improvement": 1, + "heavy": 1.75, + "plus": 1.75, + "sign": 1.75, + "request": 1.75, + "glitch": 1, + "cx": 1, + "dependencies": 1, + "inquiry": 1, + "deno": 1, + "area": 1, + "crash": 1, + "camera": 1, + "wip": 1, + "configure": 1, + "dom": 1, + "programming": 1, + "font-face": 1, + "rgba": 1, + "parser-specific": 1, + "wikipedia": 1, + "shell": 1, + "contributions": 1, + "tryout": 1, + "thought": 1, + "analysis": 1, + "contenu": 1, + "cli": 1, + "fund": 1, + "investigation": 1, + "basecamp": 1, + "literature": 1, + "socket": 1, + "io": 1, + "client": 1, + "fiscal": 1, + "user": 1, + "debug": 1, + "information": 1, + "frontend": 1, + "upstream": 1, + "raising": 1, + "hand": 1, + "style": 1, + "clean": 1, + "up": 1, + "motif": 1, + "event": 1, + "help": 1, + "wanted": 1, + "priority": 1, + "medium": 1, + "financial": 1, + "ruby": 1, + "es": 1, + "warrant": 1, + "cancelled": 1, + "plan": 1, + "hackathon": 1, + "beginner": 1, + "typography": 1, + "counsel": 1, + "recording": 1, + "crowdin": 1, + "eslint": 1, + "rules": 1, + "easy": 1, + "repare": 1, + "conference": 1, + "great": 1, + "insight": 1, + "phd": 1, + "orange": 1, + "invalid": 1, + "x": 1, + "changelog": 1, + "e-cypress": 1, + "lipstick": 1, + "-": 1, + "backdoor": 1, + "approved": 1, + "talk": 1, + "subtitle": 1, + "research": 1, + "todo": 1, + "spiral": 1, + "notepad": 1, + "interface": 1, + "critical": 1, + "privacy": 1, + "tests": 1, + "boom": 1, + "web": 1, + "app": 1.7999999999999998, + "television": 1, + "uat": 1, + "backer": 1, + "exploit": 1, + "requires": 1, + "travis-yml": 1, + "node": 1, + "dev": 1, + "experience": 1, + "fix": 1, + "backend": 1, + "cleaning": 1, + "internal": 1, + "house": 1, + "technical": 1, + "debt": 1, + "weekly-digest": 1, + "shallow": 1, + "renderer": 1, + "commerce": 1, + "ie": 1, + "hsl": 1, + "left": 1, + "out": 1, + "welcome": 1, + "opinions": 1, + "documents": 1, + "legacy": 1, + "grafana": 1, + "react": 1, + "native": 1, + "lang-go": 1, + "tutorial": 1, + "plugin": 1, + "logo": 1, + "refactoring": 1, + "safari": 1, + "saltstack": 1, + "available": 1, + "server": 1, + "rendering": 1, + "htmlfile": 1, + "theorem": 1, + "social": 1, + "internationalisation": 1, + "definition": 1, + "enquire": 1, + "packaging": 1, + "lang-r": 1, + "regression": 1, + "container": 1, + "opencollective": 1, + "report": 1, + "performance": 1, + "clickup": 1, + "installer": 1, + "statement": 1, + "gcp": 1, + "opinion": 1, + "accepted": 1, + "html": 1, + "general": 1, + "js": 1, + "unit": 1, + "speak": 1, + "brainstorming": 1, + "backup": 1, + "language": 1, + "bugfix": 1, + "k": 1, + "s": 1, + "scrum": 1, + "paper": 1, + "library": 1, + "stale": 1, + "optimization": 1, + "show": 1, + "apple": 1, + "low": 1, + "functions": 1, + "gnu": 1, + "linux": 1, + "focus": 1, + "groups": 1, + "dependency-update": 1, + "related": 1, + "bootstrap": 1, + "*nix": 1, + "externs": 1, + "critique": 1, + "prince": 1, + "demonstration": 1, + "⬆️": 1, + "memo": 1, + "revisitinfuture": 1, + "tips": 1, + "reference": 1, + "high": 1, + "bug-report": 1, + "babel": 1, + "flashsocket": 1, + "unix": 1, + "npm": 1, + "site": 1, + "chore": 1, + "adapter": 1, + "slides": 1, + "query": 1, + "chat": 1, + "major": 1, + "alpha": 1, + "lock": 1, + "security": 1, + "newsletter": 1, + "verification": 1, + "color": 1, + "containerd": 1, + "doughnut": 1, + "sentry": 1, + "dissertation": 1, + "mentoring": 1, + "confer": 1, + "utilities": 1, + "infosec": 1, + "vulnerability": 1, + "has": 1, + "code": 1, + "teaching": 1, + "protection": 1, + "robot": 1, + "android": 1, + "wontfix": 1, + "triage": 2.25, + "contribution": 1, + "macos": 1, + "assertion": 1, + "blog": 1, + "progress": 1, + "future": 1, + "architecture": 1, + "enhancements": 1, + "pmi": 1, + "promotion": 1, + "validation": 1, + "art": 1, + "film": 1, + "bitbucket": 1, + "cloud": 1, + "labour": 1, + "python": 1, + "suggestion": 1, + "crypto": 1, + "attitudinal": 1, + "electron": 1, + "trial": 1, + "example": 1.7999999999999998, + "resolution": 1, + "redirect": 1, + "assessment": 1, + "monitor": 1, + "css": 1, + "hack": 1, + "translation": 1, + "opportunity": 1, + "vultr": 1, + "kubernetes": 1, + "wiki": 1, + "parser": 1, + "pwa": 1, + "iphone": 1, + "program": 1, + "finding": 1, + "digital": 1, + "ocean": 1, + "safeguard": 1, + "iac": 1, + "javascript": 1, + "integration": 1, + "glo": 1, + "porting": 1, + "on": 1, + "hold": 1, + "evaluation": 1, + "go": 1, + "must-triage": 1, + "gradle": 1, + "work": 1, + "other": 1, + "wrangling": 1, + "sast": 1, + "tech-debt": 1, + "entry": 1, + "fault": 1, + "problem": 1, + "brand": 1, + "internal-issue-created": 1, + "pmp": 1, + "bdd": 1, + "checkpoint": 1, + "csharp": 1, + "unreviewed": 1, + "idea": 1, + "feedback": 1, + "requested": 1, + "bugs": 1, + "mentor": 1, + "economics": 1, + "lib": 1, + "puppet": 1, + "speech": 1, + "balloon": 1, + "axe": 0.0625, + "wave": 0.0625, + "c": 2, + "c++": 2, + "bulb": 1.875, + "prometheus": 2.25, + "rocket": 2, + "discuss": 1, + "doc": 2.25, + "blogs": 1, + "unit-mocha": 1, + "enterprise": 1, + "scheduler": 1, + "class": 1, + "fields": 1, + "commercial": 1, + "infra": 1, + "terraform": 1, + "figure": 1, + "layout": 1, + "specification": 1, + "vector": 2, + "greenkeeper": 1, + "tdd": 1, + "raster": 1, + "mishap": 1, + "sketch": 1, + "released": 1, + "font": 1, + "deployment": 2, + "e-nightwatch": 1, + "engine": 2, + "vulns": 2, + "syntax": 1, + "deliverable": 1, + "manual": 1, + "osx": 2, + "sendgrid": 1, + "operating": 2, + "system": 2, + "advance": 1, + "workflow": 1, + "safety": 1, + "phonetic": 1, + "concept": 1, + "lerna": 1, + "readme": 1, + "music": 1, + "failing": 1.7999999999999998, + "customer": 1, + "extension": 1, + "lint": 1, + "optimizing": 1, + "compiler": 1, + "css-select": 1, + "figma": 1, + "finance": 1, + "closed": 1.7999999999999998, + "due": 1.7999999999999998, + "inactivity": 1.7999999999999998, + "jira": 1, + "survey": 1, + "behavioral": 1, + "multi": 1, + "module": 1, + "mixing": 1, + "backlog": 1, + "update": 1, + "present": 1, + "modules": 1, + "lang-julia": 1, + "vuln": 1, + "demo": 1, + "corporate": 1, + "spam": 1, + "handshakes": 1, + "platform": 1, + "ansible": 1, + "lang-convert": 1, + "gdpr": 1, + "classes": 1, + "websocket": 1, + "speach": 1, + "b": 1, + "chef": 1, + "patreon": 1, + "reviewed-changes-requested": 1, + "youtube": 1, + "(legacy)": 1, + "mentorship": 1, + "typescript": 1, + "didactic": 1, + "story": 1, + "academia": 1 + }, + "positive_weights_sum": {}, + "negative_weights_sum": {} + }, + "translation": { + "positive_weights": { + "i": 16, + "n": 16, + "bias": 3.724661170976858e-16, + "internationalization": 22.78125, + "crowdin": 22.78125, + "subtitle": 22.78125, + "internationalisation": 10.125, + "language": 16.607531249999997, + "translation": 10.125, + "component": 0.28125, + "developer": 0.28125, + "tools": 0.28125, + "inspiration": 0.125, + "business": 0.6666666666666667, + "process": 0.6666666666666667, + "sustain": 0.5, + "confirmed": 0.5, + "type": 0.30000000000000004, + "question": 0.75, + "grey": 0.75, + "cmty": 2, + "need-info": 0.5, + "sustenance": 0.5, + "good": 0.75, + "first": 0.75, + "issue": 0.75, + "kind": 0.6666666666666667, + "discussion": 0.6666666666666667, + "palette": 0.5, + "azure": 0.6666666666666667, + "ad": 0.6666666666666667, + "data": 0.6666666666666667, + "collection": 0.6666666666666667, + "external-bugs": 0.5, + "deal": 0.5, + "hacking": 0.5, + "video": 0.5, + "test": 2, + "utils": 2, + "hsv": 0.5, + "thesis": 0.5, + "pentesting": 0.5, + "design": 0.5, + "website": 0.6666666666666667, + "copy": 0.6666666666666667, + "bug": 2, + "guide": 0.5, + "next": 0.6666666666666667, + "meetup!": 0.6666666666666667, + "feat": 0.75, + "ui": 2, + "mastering": 0.5, + "steps": 0.5, + "abandoned": 2, + "badges": 2, + "sponsor": 2, + "assess": 2, + "pr": 0.8, + "merged": 2, + "vlog": 2, + "acceptance": 0.6666666666666667, + "testing": 0.6666666666666667, + "hot": 2, + "tv": 2, + "soundtrack": 2, + "(category)": 2, + "ci": 0.6666666666666667, + "cd": 0.6666666666666667, + "multi-cloud": 2, + "funding": 0.6666666666666667, + "finder": 0.6666666666666667, + "difficulty": 0.6666666666666667, + "hard": 0.6666666666666667, + "documentation": 0.6666666666666667, + "book": 0.6666666666666667, + "diary": 2, + "standard": 2, + "colour": 2, + "computer": 2, + "desktop": 2, + "flaw": 2, + "reliability": 2, + "cli-service": 0.75, + "build": 0.75, + "blocked": 2, + "maintenance": 2, + "construction": 2, + "ios": 2, + "planned": 2, + "feature": 0.12800000000000003, + "feature-request": 2, + "rfc": 2, + "image": 0.6666666666666667, + "stock": 2, + "reminder": 2, + "status": 0.8, + "review": 2, + "needed": 2, + "in": 2, + "lang-crystal": 2, + "breaking": 2, + "change": 2, + "phone": 2, + "refactor": 2, + "monologue": 2, + "reviewed-approved": 2, + "new": 0.75, + "best": 0.75, + "practice": 0.75, + "lecture": 2, + "backing": 2, + "browser": 2, + "aws": 2, + "polish": 0.8, + "nail": 0.8, + "care": 0.8, + "article": 2, + "peer-review": 2, + "writer-needed": 2, + "eventstorming": 2, + "freemasonry": 2, + "icons": 2, + "lean": 2, + "cannot": 2, + "reproduce": 2, + "paas": 2, + "net": 2, + "core": 2, + "wiretap": 2, + "unit-jest": 2, + "instruction": 2, + "infrastructure": 2, + "rgb": 2, + "ideas": 2, + "target": 2, + "windows": 2, + "call": 2, + "iconography": 2, + "promote": 2, + "template": 2, + "support": 0.75, + "first-timers-only": 2, + "java": 2, + "cdn": 2, + "dependency": 2, + "ready": 0.8, + "for": 0.8, + "deploy": 0.8, + "troubleshooting": 2, + "spec": 0.75, + "bigint": 2, + "async": 0.75, + "generators": 0.75, + "proposal": 2, + "e": 2, + "approachability": 2, + "investment": 2, + "conflicts": 2, + "optimisation": 2, + "kotlin": 2, + "release": 0.8, + "unconfirmed": 2, + "duplicate": 2, + "repeat": 2, + "devops": 2, + "defend": 2, + "blogging": 2, + "friendliness": 2, + "cla": 2, + "signed": 2, + "icebox": 2, + "meetup": 2, + "examination": 2, + "mobile": 0.75, + "device": 0.75, + "api": 2, + "decorators": 2, + "addon": 2, + "cracking": 2, + "sparkles": 2, + "enhancement": 2, + "hooks": 2, + "improved": 2, + "error": 2, + "handling": 2, + "needs": 0.8, + "repro": 2, + "upkeep": 2, + "reactis": 2, + "to": 0.8, + "be": 2, + "sample": 2, + "white": 2, + "check": 2, + "mark": 2, + "external": 2, + "hacktoberfest": 2, + "lang-dart": 2, + "framework": 2, + "icon": 2, + "grant": 2, + "needs-research": 2, + "cybersec": 2, + "biz": 2, + "utility-lib": 2, + "qa": 2, + "do": 2, + "not": 2, + "merge": 2, + "hacked": 2, + "how-to": 2, + "beginner-friendly": 2, + "trello": 2, + "os": 2, + "sound": 2, + "docs": 2, + "improvement": 2, + "heavy": 2, + "plus": 2, + "sign": 2, + "request": 2, + "glitch": 2, + "cx": 2, + "dependencies": 2, + "inquiry": 2, + "deno": 2, + "area": 2, + "crash": 2, + "camera": 2, + "wip": 2, + "configure": 2, + "dom": 2, + "programming": 2, + "font-face": 2, + "rgba": 2, + "parser-specific": 2, + "wikipedia": 2, + "shell": 2, + "contributions": 2, + "tryout": 2, + "thought": 2, + "analysis": 2, + "contenu": 2, + "cli": 2, + "fund": 2, + "investigation": 2, + "basecamp": 2, + "literature": 2, + "socket": 2, + "io": 2, + "client": 0.8, + "fiscal": 2, + "user": 2, + "debug": 2, + "information": 2, + "frontend": 2, + "upstream": 2, + "raising": 2, + "hand": 2, + "style": 2, + "clean": 2, + "up": 2, + "motif": 2, + "event": 2, + "help": 2, + "wanted": 2, + "priority": 2, + "medium": 2, + "financial": 2, + "ruby": 2, + "es": 2, + "warrant": 2, + "cancelled": 2, + "plan": 2, + "hackathon": 2, + "beginner": 2, + "typography": 2, + "counsel": 2, + "recording": 2, + "eslint": 2, + "rules": 2, + "easy": 2, + "repare": 2, + "conference": 2, + "great": 2, + "insight": 2, + "phd": 2, + "orange": 2, + "invalid": 2, + "x": 2, + "changelog": 2, + "e-cypress": 2, + "lipstick": 2, + "-": 2, + "backdoor": 2, + "approved": 2, + "talk": 2, + "research": 2, + "todo": 2, + "spiral": 2, + "notepad": 2, + "interface": 2, + "critical": 2, + "privacy": 2, + "tests": 2, + "boom": 2, + "web": 2, + "app": 0.8, + "television": 2, + "uat": 2, + "backer": 2, + "exploit": 2, + "requires": 2, + "travis-yml": 2, + "node": 2, + "dev": 2, + "experience": 2, + "fix": 2, + "backend": 2, + "cleaning": 2, + "internal": 0.8, + "house": 2, + "technical": 2, + "debt": 2, + "weekly-digest": 2, + "shallow": 2, + "renderer": 2, + "commerce": 2, + "ie": 2, + "hsl": 2, + "left": 2, + "out": 2, + "welcome": 2, + "opinions": 2, + "documents": 2, + "legacy": 2, + "grafana": 2, + "react": 2, + "native": 2, + "lang-go": 2, + "tutorial": 2, + "plugin": 2, + "logo": 2, + "refactoring": 2, + "safari": 2, + "saltstack": 2, + "available": 2, + "server": 2, + "rendering": 2, + "htmlfile": 2, + "theorem": 2, + "social": 2, + "definition": 2, + "enquire": 2, + "packaging": 2, + "lang-r": 2, + "regression": 2, + "container": 2, + "opencollective": 2, + "report": 2, + "performance": 2, + "clickup": 2, + "installer": 2, + "statement": 2, + "gcp": 2, + "opinion": 2, + "accepted": 2, + "html": 2, + "a": 0.8, + "y": 2, + "general": 2, + "js": 2, + "unit": 2, + "speak": 2, + "brainstorming": 2, + "backup": 2, + "bugfix": 2, + "k": 2, + "s": 2, + "scrum": 2, + "paper": 2, + "library": 2, + "stale": 2, + "optimization": 2, + "show": 2, + "apple": 2, + "low": 2, + "functions": 2, + "gnu": 2, + "linux": 2, + "focus": 2, + "groups": 2, + "dependency-update": 2, + "related": 2, + "bootstrap": 2, + "usability": 2, + "*nix": 2, + "externs": 2, + "critique": 2, + "prince": 2, + "demonstration": 2, + "⬆️": 2, + "memo": 2, + "revisitinfuture": 2, + "tips": 2, + "reference": 2, + "high": 2, + "bug-report": 2, + "babel": 2, + "flashsocket": 2, + "unix": 2, + "npm": 2, + "site": 2, + "chore": 2, + "adapter": 2, + "slides": 2, + "query": 2, + "chat": 2, + "major": 2, + "alpha": 2, + "lock": 2, + "security": 2, + "newsletter": 2, + "verification": 2, + "color": 2, + "containerd": 2, + "doughnut": 2, + "sentry": 2, + "dissertation": 2, + "mentoring": 2, + "confer": 2, + "utilities": 2, + "infosec": 2, + "vulnerability": 2, + "has": 2, + "code": 2, + "teaching": 2, + "protection": 2, + "robot": 2, + "android": 2, + "webaim": 2, + "wontfix": 2, + "triage": 2, + "contribution": 2, + "macos": 2, + "assertion": 2, + "blog": 2, + "progress": 2, + "future": 2, + "architecture": 2, + "enhancements": 2, + "pmi": 2, + "promotion": 2, + "validation": 2, + "art": 2, + "film": 2, + "bitbucket": 2, + "cloud": 2, + "labour": 2, + "python": 2, + "suggestion": 2, + "crypto": 2, + "attitudinal": 2, + "electron": 2, + "trial": 2, + "example": 0.8, + "resolution": 2, + "redirect": 2, + "assessment": 2, + "monitor": 2, + "css": 2, + "hack": 2, + "opportunity": 2, + "vultr": 2, + "kubernetes": 2, + "wiki": 2, + "parser": 2, + "pwa": 2, + "iphone": 2, + "program": 2, + "finding": 2, + "digital": 2, + "ocean": 2, + "safeguard": 2, + "iac": 2, + "javascript": 2, + "integration": 0.12800000000000003, + "glo": 2, + "porting": 2, + "on": 2, + "hold": 2, + "evaluation": 2, + "go": 0.8, + "must-triage": 2, + "gradle": 2, + "accessibility": 2, + "work": 2, + "other": 0.12800000000000003, + "wrangling": 2, + "sast": 2, + "tech-debt": 2, + "entry": 2, + "fault": 2, + "problem": 2, + "brand": 2, + "internal-issue-created": 2, + "pmp": 2, + "bdd": 2, + "checkpoint": 2, + "csharp": 2, + "unreviewed": 2, + "idea": 2, + "feedback": 2, + "requested": 2, + "wcag": 2, + "bugs": 2, + "mentor": 2, + "economics": 2, + "lib": 2, + "puppet": 2, + "speech": 0.8, + "balloon": 0.8, + "lang-convert": 10.125, + "c": 0.6666666666666667, + "c++": 0.6666666666666667, + "bulb": 2, + "prometheus": 2, + "rocket": 2, + "discuss": 0.8, + "doc": 2, + "blogs": 2, + "unit-mocha": 2, + "enterprise": 2, + "scheduler": 2, + "class": 2, + "fields": 2, + "commercial": 2, + "infra": 2, + "terraform": 2, + "figure": 2, + "layout": 2, + "specification": 2, + "vector": 0.6666666666666667, + "greenkeeper": 2, + "tdd": 2, + "raster": 2, + "mishap": 2, + "sketch": 2, + "released": 2, + "font": 2, + "deployment": 2, + "e-nightwatch": 2, + "engine": 2, + "vulns": 2, + "syntax": 2, + "deliverable": 2, + "manual": 2, + "osx": 2, + "axe": 2, + "sendgrid": 2, + "operating": 2, + "system": 2, + "advance": 2, + "workflow": 2, + "safety": 2, + "phonetic": 2, + "concept": 2, + "lerna": 2, + "readme": 2, + "music": 2, + "failing": 2, + "customer": 2, + "extension": 2, + "lint": 2, + "optimizing": 2, + "compiler": 2, + "css-select": 2, + "figma": 2, + "finance": 2, + "closed": 0.8, + "due": 0.8, + "inactivity": 0.8, + "jira": 2, + "survey": 2, + "behavioral": 2, + "multi": 2, + "module": 2, + "mixing": 2, + "backlog": 2, + "update": 2, + "present": 2, + "modules": 2, + "lang-julia": 2, + "vuln": 2, + "demo": 2, + "corporate": 2, + "spam": 2, + "handshakes": 2, + "platform": 2, + "wave": 2, + "ansible": 2, + "gdpr": 2, + "classes": 2, + "websocket": 2, + "speach": 2, + "b": 2, + "chef": 2, + "patreon": 2, + "reviewed-changes-requested": 2, + "youtube": 2, + "(legacy)": 2, + "mentorship": 2, + "typescript": 2, + "didactic": 2, + "story": 2, + "academia": 2 + }, + "negative_weights": { + "i": 0.03703703703703705, + "n": 0.03703703703703705, + "bias": 4.565773993349696, + "internationalization": 0.015625, + "crowdin": 0.015625, + "subtitle": 0.015625, + "internationalisation": 0.0625, + "language": 0.0014238281249999995, + "translation": 0.0625, + "component": 3.515625, + "developer": 3.515625, + "tools": 3.515625, + "inspiration": 5.0625, + "business": 2, + "process": 2, + "sustain": 2.25, + "confirmed": 2.25, + "type": 3.3749999999999996, + "question": 1.875, + "grey": 1.875, + "cmty": 1, + "need-info": 2.25, + "sustenance": 2.25, + "good": 1.875, + "first": 1.875, + "issue": 1.875, + "kind": 2, + "discussion": 2, + "palette": 2.25, + "azure": 2, + "ad": 2, + "data": 2, + "collection": 2, + "external-bugs": 2.25, + "deal": 2.25, + "hacking": 2.25, + "video": 2.25, + "test": 1, + "utils": 1, + "hsv": 2.25, + "thesis": 2.25, + "pentesting": 2.25, + "design": 2.25, + "website": 2, + "copy": 2, + "bug": 1, + "guide": 2.25, + "next": 2, + "meetup!": 2, + "feat": 1.875, + "ui": 1, + "mastering": 2.25, + "steps": 2.25, + "abandoned": 1, + "badges": 1, + "sponsor": 1, + "assess": 1, + "pr": 1.7999999999999998, + "merged": 1, + "vlog": 1, + "acceptance": 2, + "testing": 2, + "hot": 1, + "tv": 1, + "soundtrack": 1, + "(category)": 1, + "ci": 2, + "cd": 2, + "multi-cloud": 1, + "funding": 2, + "finder": 2, + "difficulty": 2, + "hard": 2, + "documentation": 2, + "book": 2, + "diary": 1, + "standard": 1, + "colour": 1, + "computer": 1, + "desktop": 1, + "flaw": 1, + "reliability": 1, + "cli-service": 1.875, + "build": 1.875, + "blocked": 1, + "maintenance": 1, + "construction": 1, + "ios": 1, + "planned": 1, + "feature": 5.831999999999998, + "feature-request": 1, + "rfc": 1, + "image": 2, + "stock": 1, + "reminder": 1, + "status": 1.7999999999999998, + "review": 1, + "needed": 1, + "in": 1, + "lang-crystal": 1, + "breaking": 1, + "change": 1, + "phone": 1, + "refactor": 1, + "monologue": 1, + "reviewed-approved": 1, + "new": 1.875, + "best": 1.875, + "practice": 1.875, + "lecture": 1, + "backing": 1, + "browser": 1, + "aws": 1, + "polish": 1.7999999999999998, + "nail": 1.7999999999999998, + "care": 1.7999999999999998, + "article": 1, + "peer-review": 1, + "writer-needed": 1, + "eventstorming": 1, + "freemasonry": 1, + "icons": 1, + "lean": 1, + "cannot": 1, + "reproduce": 1, + "paas": 1, + "net": 1, + "core": 1, + "wiretap": 1, + "unit-jest": 1, + "instruction": 1, + "infrastructure": 1, + "rgb": 1, + "ideas": 1, + "target": 1, + "windows": 1, + "call": 1, + "iconography": 1, + "promote": 1, + "template": 1, + "support": 1.875, + "first-timers-only": 1, + "java": 1, + "cdn": 1, + "dependency": 1, + "ready": 1.7999999999999998, + "for": 1.7999999999999998, + "deploy": 1.7999999999999998, + "troubleshooting": 1, + "spec": 1.875, + "bigint": 1, + "async": 1.875, + "generators": 1.875, + "proposal": 1, + "e": 1, + "approachability": 1, + "investment": 1, + "conflicts": 1, + "optimisation": 1, + "kotlin": 1, + "release": 1.7999999999999998, + "unconfirmed": 1, + "duplicate": 1, + "repeat": 1, + "devops": 1, + "defend": 1, + "blogging": 1, + "friendliness": 1, + "cla": 1, + "signed": 1, + "icebox": 1, + "meetup": 1, + "examination": 1, + "mobile": 1.875, + "device": 1.875, + "api": 1, + "decorators": 1, + "addon": 1, + "cracking": 1, + "sparkles": 1, + "enhancement": 1, + "hooks": 1, + "improved": 1, + "error": 1, + "handling": 1, + "needs": 1.7999999999999998, + "repro": 1, + "upkeep": 1, + "reactis": 1, + "to": 1.7999999999999998, + "be": 1, + "sample": 1, + "white": 1, + "check": 1, + "mark": 1, + "external": 1, + "hacktoberfest": 1, + "lang-dart": 1, + "framework": 1, + "icon": 1, + "grant": 1, + "needs-research": 1, + "cybersec": 1, + "biz": 1, + "utility-lib": 1, + "qa": 1, + "do": 1, + "not": 1, + "merge": 1, + "hacked": 1, + "how-to": 1, + "beginner-friendly": 1, + "trello": 1, + "os": 1, + "sound": 1, + "docs": 1, + "improvement": 1, + "heavy": 1, + "plus": 1, + "sign": 1, + "request": 1, + "glitch": 1, + "cx": 1, + "dependencies": 1, + "inquiry": 1, + "deno": 1, + "area": 1, + "crash": 1, + "camera": 1, + "wip": 1, + "configure": 1, + "dom": 1, + "programming": 1, + "font-face": 1, + "rgba": 1, + "parser-specific": 1, + "wikipedia": 1, + "shell": 1, + "contributions": 1, + "tryout": 1, + "thought": 1, + "analysis": 1, + "contenu": 1, + "cli": 1, + "fund": 1, + "investigation": 1, + "basecamp": 1, + "literature": 1, + "socket": 1, + "io": 1, + "client": 1.7999999999999998, + "fiscal": 1, + "user": 1, + "debug": 1, + "information": 1, + "frontend": 1, + "upstream": 1, + "raising": 1, + "hand": 1, + "style": 1, + "clean": 1, + "up": 1, + "motif": 1, + "event": 1, + "help": 1, + "wanted": 1, + "priority": 1, + "medium": 1, + "financial": 1, + "ruby": 1, + "es": 1, + "warrant": 1, + "cancelled": 1, + "plan": 1, + "hackathon": 1, + "beginner": 1, + "typography": 1, + "counsel": 1, + "recording": 1, + "eslint": 1, + "rules": 1, + "easy": 1, + "repare": 1, + "conference": 1, + "great": 1, + "insight": 1, + "phd": 1, + "orange": 1, + "invalid": 1, + "x": 1, + "changelog": 1, + "e-cypress": 1, + "lipstick": 1, + "-": 1, + "backdoor": 1, + "approved": 1, + "talk": 1, + "research": 1, + "todo": 1, + "spiral": 1, + "notepad": 1, + "interface": 1, + "critical": 1, + "privacy": 1, + "tests": 1, + "boom": 1, + "web": 1, + "app": 1.7999999999999998, + "television": 1, + "uat": 1, + "backer": 1, + "exploit": 1, + "requires": 1, + "travis-yml": 1, + "node": 1, + "dev": 1, + "experience": 1, + "fix": 1, + "backend": 1, + "cleaning": 1, + "internal": 1.7999999999999998, + "house": 1, + "technical": 1, + "debt": 1, + "weekly-digest": 1, + "shallow": 1, + "renderer": 1, + "commerce": 1, + "ie": 1, + "hsl": 1, + "left": 1, + "out": 1, + "welcome": 1, + "opinions": 1, + "documents": 1, + "legacy": 1, + "grafana": 1, + "react": 1, + "native": 1, + "lang-go": 1, + "tutorial": 1, + "plugin": 1, + "logo": 1, + "refactoring": 1, + "safari": 1, + "saltstack": 1, + "available": 1, + "server": 1, + "rendering": 1, + "htmlfile": 1, + "theorem": 1, + "social": 1, + "definition": 1, + "enquire": 1, + "packaging": 1, + "lang-r": 1, + "regression": 1, + "container": 1, + "opencollective": 1, + "report": 1, + "performance": 1, + "clickup": 1, + "installer": 1, + "statement": 1, + "gcp": 1, + "opinion": 1, + "accepted": 1, + "html": 1, + "a": 1.7999999999999998, + "y": 1, + "general": 1, + "js": 1, + "unit": 1, + "speak": 1, + "brainstorming": 1, + "backup": 1, + "bugfix": 1, + "k": 1, + "s": 1, + "scrum": 1, + "paper": 1, + "library": 1, + "stale": 1, + "optimization": 1, + "show": 1, + "apple": 1, + "low": 1, + "functions": 1, + "gnu": 1, + "linux": 1, + "focus": 1, + "groups": 1, + "dependency-update": 1, + "related": 1, + "bootstrap": 1, + "usability": 1, + "*nix": 1, + "externs": 1, + "critique": 1, + "prince": 1, + "demonstration": 1, + "⬆️": 1, + "memo": 1, + "revisitinfuture": 1, + "tips": 1, + "reference": 1, + "high": 1, + "bug-report": 1, + "babel": 1, + "flashsocket": 1, + "unix": 1, + "npm": 1, + "site": 1, + "chore": 1, + "adapter": 1, + "slides": 1, + "query": 1, + "chat": 1, + "major": 1, + "alpha": 1, + "lock": 1, + "security": 1, + "newsletter": 1, + "verification": 1, + "color": 1, + "containerd": 1, + "doughnut": 1, + "sentry": 1, + "dissertation": 1, + "mentoring": 1, + "confer": 1, + "utilities": 1, + "infosec": 1, + "vulnerability": 1, + "has": 1, + "code": 1, + "teaching": 1, + "protection": 1, + "robot": 1, + "android": 1, + "webaim": 1, + "wontfix": 1, + "triage": 1, + "contribution": 1, + "macos": 1, + "assertion": 1, + "blog": 1, + "progress": 1, + "future": 1, + "architecture": 1, + "enhancements": 1, + "pmi": 1, + "promotion": 1, + "validation": 1, + "art": 1, + "film": 1, + "bitbucket": 1, + "cloud": 1, + "labour": 1, + "python": 1, + "suggestion": 1, + "crypto": 1, + "attitudinal": 1, + "electron": 1, + "trial": 1, + "example": 1.7999999999999998, + "resolution": 1, + "redirect": 1, + "assessment": 1, + "monitor": 1, + "css": 1, + "hack": 1, + "opportunity": 1, + "vultr": 1, + "kubernetes": 1, + "wiki": 1, + "parser": 1, + "pwa": 1, + "iphone": 1, + "program": 1, + "finding": 1, + "digital": 1, + "ocean": 1, + "safeguard": 1, + "iac": 1, + "javascript": 1, + "integration": 5.831999999999998, + "glo": 1, + "porting": 1, + "on": 1, + "hold": 1, + "evaluation": 1, + "go": 1.7999999999999998, + "must-triage": 1, + "gradle": 1, + "accessibility": 1, + "work": 1, + "other": 5.831999999999998, + "wrangling": 1, + "sast": 1, + "tech-debt": 1, + "entry": 1, + "fault": 1, + "problem": 1, + "brand": 1, + "internal-issue-created": 1, + "pmp": 1, + "bdd": 1, + "checkpoint": 1, + "csharp": 1, + "unreviewed": 1, + "idea": 1, + "feedback": 1, + "requested": 1, + "wcag": 1, + "bugs": 1, + "mentor": 1, + "economics": 1, + "lib": 1, + "puppet": 1, + "speech": 1.7999999999999998, + "balloon": 1.7999999999999998, + "lang-convert": 0.0625, + "c": 2, + "c++": 2, + "bulb": 1, + "prometheus": 1, + "rocket": 1, + "discuss": 1.7999999999999998, + "doc": 1, + "blogs": 1, + "unit-mocha": 1, + "enterprise": 1, + "scheduler": 1, + "class": 1, + "fields": 1, + "commercial": 1, + "infra": 1, + "terraform": 1, + "figure": 1, + "layout": 1, + "specification": 1, + "vector": 2, + "greenkeeper": 1, + "tdd": 1, + "raster": 1, + "mishap": 1, + "sketch": 1, + "released": 1, + "font": 1, + "deployment": 1, + "e-nightwatch": 1, + "engine": 1, + "vulns": 1, + "syntax": 1, + "deliverable": 1, + "manual": 1, + "osx": 1, + "axe": 1, + "sendgrid": 1, + "operating": 1, + "system": 1, + "advance": 1, + "workflow": 1, + "safety": 1, + "phonetic": 1, + "concept": 1, + "lerna": 1, + "readme": 1, + "music": 1, + "failing": 1, + "customer": 1, + "extension": 1, + "lint": 1, + "optimizing": 1, + "compiler": 1, + "css-select": 1, + "figma": 1, + "finance": 1, + "closed": 1.7999999999999998, + "due": 1.7999999999999998, + "inactivity": 1.7999999999999998, + "jira": 1, + "survey": 1, + "behavioral": 1, + "multi": 1, + "module": 1, + "mixing": 1, + "backlog": 1, + "update": 1, + "present": 1, + "modules": 1, + "lang-julia": 1, + "vuln": 1, + "demo": 1, + "corporate": 1, + "spam": 1, + "handshakes": 1, + "platform": 1, + "wave": 1, + "ansible": 1, + "gdpr": 1, + "classes": 1, + "websocket": 1, + "speach": 1, + "b": 1, + "chef": 1, + "patreon": 1, + "reviewed-changes-requested": 1, + "youtube": 1, + "(legacy)": 1, + "mentorship": 1, + "typescript": 1, + "didactic": 1, + "story": 1, + "academia": 1 + }, + "positive_weights_sum": {}, + "negative_weights_sum": {} + }, + "plugin": { + "positive_weights": { + "addon": 22.78125, + "bias": 5.1208193759669644e-17, + "external": 22.78125, + "utility-lib": 10.125, + "plugin": 22.78125, + "externs": 10.125, + "adapter": 10.125, + "lib": 10.125, + "component": 0.03955078125, + "developer": 0.28125, + "tools": 0.28125, + "inspiration": 0.125, + "business": 0.6666666666666667, + "process": 0.6666666666666667, + "sustain": 0.5, + "confirmed": 0.5, + "type": 0.28125, + "question": 0.75, + "grey": 0.75, + "cmty": 2, + "need-info": 0.5, + "sustenance": 0.5, + "good": 0.75, + "first": 0.75, + "issue": 0.75, + "kind": 0.6666666666666667, + "discussion": 0.6666666666666667, + "palette": 0.5, + "azure": 0.6666666666666667, + "ad": 0.6666666666666667, + "data": 0.6666666666666667, + "collection": 0.6666666666666667, + "external-bugs": 0.5, + "deal": 0.5, + "hacking": 0.5, + "video": 0.5, + "test": 0.11250000000000002, + "utils": 16.218292236328125, + "hsv": 0.5, + "thesis": 0.5, + "pentesting": 0.5, + "design": 0.6666666666666667, + "website": 0.6666666666666667, + "copy": 0.6666666666666667, + "bug": 2, + "guide": 2, + "next": 0.6666666666666667, + "meetup!": 0.6666666666666667, + "feat": 0.75, + "ui": 2, + "mastering": 2, + "steps": 2, + "abandoned": 2, + "badges": 2, + "sponsor": 2, + "assess": 2, + "pr": 0.8, + "merged": 2, + "vlog": 2, + "acceptance": 2, + "testing": 0.8, + "hot": 2, + "tv": 2, + "soundtrack": 2, + "(category)": 0.6666666666666667, + "ci": 0.6666666666666667, + "cd": 0.6666666666666667, + "multi-cloud": 2, + "funding": 2, + "finder": 2, + "difficulty": 2, + "hard": 2, + "documentation": 2, + "book": 2, + "diary": 2, + "standard": 2, + "colour": 2, + "computer": 2, + "desktop": 2, + "flaw": 2, + "reliability": 2, + "cli-service": 0.75, + "build": 0.75, + "blocked": 2, + "maintenance": 2, + "construction": 2, + "ios": 2, + "planned": 2, + "feature": 0.8333333333333333, + "feature-request": 2, + "rfc": 2, + "image": 0.6666666666666667, + "stock": 2, + "reminder": 2, + "status": 0.8, + "review": 0.75, + "needed": 2, + "in": 0.75, + "lang-crystal": 2, + "breaking": 2, + "change": 0.75, + "phone": 2, + "refactor": 2, + "monologue": 2, + "reviewed-approved": 2, + "new": 0.75, + "best": 0.75, + "practice": 0.75, + "lecture": 2, + "backing": 2, + "browser": 2, + "aws": 2, + "polish": 0.8, + "nail": 0.8, + "care": 0.8, + "article": 2, + "peer-review": 2, + "writer-needed": 2, + "eventstorming": 2, + "freemasonry": 2, + "icons": 2, + "lean": 2, + "cannot": 2, + "reproduce": 2, + "paas": 2, + "net": 2, + "core": 2, + "wiretap": 2, + "unit-jest": 2, + "instruction": 2, + "infrastructure": 2, + "rgb": 2, + "ideas": 2, + "target": 0.6666666666666667, + "windows": 2, + "call": 2, + "iconography": 2, + "promote": 2, + "template": 2, + "support": 2, + "first-timers-only": 2, + "java": 2, + "cdn": 2, + "dependency": 2, + "ready": 0.8, + "for": 0.8, + "deploy": 0.8, + "troubleshooting": 2, + "spec": 0.75, + "bigint": 2, + "async": 0.75, + "generators": 0.75, + "proposal": 2, + "e": 2, + "approachability": 2, + "investment": 2, + "conflicts": 2, + "optimisation": 2, + "kotlin": 2, + "release": 0.8, + "unconfirmed": 2, + "duplicate": 2, + "repeat": 2, + "devops": 2, + "defend": 2, + "blogging": 2, + "friendliness": 2, + "i": 2, + "n": 2, + "cla": 2, + "signed": 2, + "icebox": 2, + "meetup": 2, + "examination": 2, + "mobile": 2, + "device": 2, + "api": 2, + "decorators": 2, + "cracking": 2, + "sparkles": 2, + "enhancement": 0.75, + "hooks": 2, + "improved": 2, + "error": 2, + "handling": 2, + "needs": 0.8, + "repro": 2, + "upkeep": 2, + "reactis": 2, + "to": 0.8, + "be": 2, + "sample": 2, + "white": 0.8, + "check": 0.8, + "mark": 0.8, + "hacktoberfest": 2, + "lang-dart": 2, + "framework": 2, + "icon": 2, + "grant": 2, + "needs-research": 2, + "cybersec": 2, + "biz": 2, + "internationalization": 2, + "qa": 2, + "do": 2, + "not": 2, + "merge": 2, + "hacked": 2, + "how-to": 2, + "beginner-friendly": 2, + "trello": 2, + "os": 2, + "sound": 2, + "docs": 2, + "improvement": 2, + "heavy": 0.8333333333333333, + "plus": 0.8333333333333333, + "sign": 0.8333333333333333, + "request": 0.8333333333333333, + "glitch": 2, + "cx": 2, + "dependencies": 2, + "inquiry": 2, + "deno": 2, + "area": 2, + "crash": 2, + "camera": 2, + "wip": 2, + "configure": 2, + "dom": 2, + "programming": 2, + "font-face": 2, + "rgba": 2, + "parser-specific": 2, + "wikipedia": 2, + "shell": 2, + "contributions": 2, + "tryout": 2, + "thought": 2, + "analysis": 2, + "contenu": 2, + "cli": 2, + "fund": 2, + "investigation": 2, + "basecamp": 2, + "literature": 2, + "socket": 2, + "io": 2, + "client": 0.8, + "fiscal": 2, + "user": 2, + "debug": 2, + "information": 2, + "frontend": 2, + "upstream": 0.75, + "raising": 2, + "hand": 2, + "style": 2, + "clean": 2, + "up": 2, + "motif": 2, + "event": 2, + "help": 2, + "wanted": 2, + "priority": 2, + "medium": 2, + "financial": 2, + "ruby": 2, + "es": 2, + "warrant": 2, + "cancelled": 2, + "plan": 2, + "hackathon": 2, + "beginner": 2, + "typography": 2, + "counsel": 2, + "recording": 2, + "crowdin": 2, + "eslint": 2, + "rules": 2, + "easy": 2, + "repare": 2, + "conference": 2, + "great": 2, + "insight": 2, + "phd": 2, + "orange": 2, + "invalid": 2, + "x": 2, + "changelog": 2, + "e-cypress": 2, + "lipstick": 2, + "-": 2, + "backdoor": 2, + "approved": 2, + "talk": 2, + "subtitle": 2, + "research": 2, + "todo": 2, + "spiral": 2, + "notepad": 2, + "interface": 2, + "critical": 2, + "privacy": 2, + "tests": 2, + "boom": 2, + "web": 2, + "app": 2, + "television": 2, + "uat": 2, + "backer": 2, + "exploit": 2, + "requires": 0.75, + "travis-yml": 2, + "node": 2, + "dev": 2, + "experience": 2, + "fix": 2, + "backend": 2, + "cleaning": 2, + "internal": 0.8, + "house": 2, + "technical": 2, + "debt": 2, + "weekly-digest": 2, + "shallow": 2, + "renderer": 2, + "commerce": 2, + "ie": 0.5, + "hsl": 2, + "left": 2, + "out": 2, + "welcome": 2, + "opinions": 2, + "documents": 2, + "legacy": 2, + "grafana": 2, + "react": 2, + "native": 2, + "lang-go": 2, + "tutorial": 2, + "logo": 2, + "refactoring": 2, + "safari": 2, + "saltstack": 2, + "available": 2, + "server": 2, + "rendering": 2, + "htmlfile": 2, + "theorem": 2, + "social": 2, + "internationalisation": 2, + "definition": 2, + "enquire": 2, + "packaging": 2, + "lang-r": 2, + "regression": 2, + "container": 2, + "opencollective": 2, + "report": 2, + "performance": 2, + "clickup": 2, + "installer": 2, + "statement": 2, + "gcp": 2, + "opinion": 2, + "accepted": 2, + "html": 2, + "a": 0.8, + "y": 2, + "general": 2, + "js": 2, + "unit": 2, + "speak": 2, + "brainstorming": 2, + "backup": 2, + "language": 2, + "bugfix": 2, + "k": 2, + "s": 2, + "scrum": 2, + "paper": 2, + "library": 2, + "stale": 2, + "optimization": 2, + "show": 2, + "apple": 2, + "low": 2, + "functions": 2, + "gnu": 2, + "linux": 2, + "focus": 2, + "groups": 2, + "dependency-update": 2, + "related": 2, + "bootstrap": 2, + "usability": 2, + "*nix": 2, + "critique": 2, + "prince": 2, + "demonstration": 2, + "⬆️": 2, + "memo": 2, + "revisitinfuture": 2, + "tips": 2, + "reference": 2, + "high": 2, + "bug-report": 2, + "babel": 2, + "flashsocket": 2, + "unix": 2, + "npm": 2, + "site": 2, + "chore": 2, + "slides": 2, + "query": 2, + "chat": 2, + "major": 2, + "alpha": 2, + "lock": 2, + "security": 2, + "newsletter": 2, + "verification": 2, + "color": 2, + "containerd": 2, + "doughnut": 2, + "sentry": 2, + "dissertation": 2, + "mentoring": 2, + "confer": 2, + "utilities": 2, + "infosec": 2, + "vulnerability": 2, + "has": 2, + "code": 2, + "teaching": 2, + "protection": 2, + "robot": 2, + "android": 2, + "webaim": 2, + "wontfix": 2, + "triage": 0.5, + "contribution": 2, + "macos": 2, + "assertion": 2, + "blog": 2, + "progress": 0.75, + "future": 2, + "architecture": 2, + "enhancements": 2, + "pmi": 2, + "promotion": 2, + "validation": 2, + "art": 2, + "film": 2, + "bitbucket": 2, + "cloud": 2, + "labour": 2, + "python": 2, + "suggestion": 2, + "crypto": 2, + "attitudinal": 2, + "electron": 2, + "trial": 2, + "example": 2, + "resolution": 2, + "redirect": 2, + "assessment": 2, + "monitor": 2, + "css": 2, + "hack": 2, + "translation": 2, + "opportunity": 2, + "vultr": 2, + "kubernetes": 2, + "wiki": 2, + "parser": 2, + "pwa": 2, + "iphone": 2, + "program": 2, + "finding": 2, + "digital": 2, + "ocean": 2, + "safeguard": 2, + "iac": 2, + "javascript": 2, + "integration": 2, + "glo": 2, + "porting": 2, + "on": 2, + "hold": 2, + "evaluation": 2, + "go": 0.8, + "must-triage": 2, + "gradle": 2, + "accessibility": 2, + "work": 2, + "other": 2, + "wrangling": 2, + "sast": 2, + "tech-debt": 2, + "entry": 2, + "fault": 2, + "problem": 2, + "brand": 2, + "internal-issue-created": 2, + "pmp": 2, + "bdd": 2, + "checkpoint": 2, + "csharp": 2, + "unreviewed": 2, + "idea": 2, + "feedback": 2, + "requested": 2, + "wcag": 2, + "bugs": 2, + "mentor": 2, + "economics": 2, + "puppet": 2, + "speech": 2, + "balloon": 2, + "extension": 22.78125, + "c": 0.6666666666666667, + "c++": 0.6666666666666667, + "bulb": 0.75, + "prometheus": 0.5, + "rocket": 0.6666666666666667, + "discuss": 2, + "doc": 0.5, + "blogs": 2, + "unit-mocha": 2, + "enterprise": 2, + "scheduler": 2, + "class": 2, + "fields": 2, + "commercial": 2, + "infra": 2, + "terraform": 2, + "figure": 2, + "layout": 2, + "specification": 2, + "vector": 0.6666666666666667, + "greenkeeper": 2, + "tdd": 2, + "raster": 2, + "mishap": 2, + "sketch": 2, + "released": 2, + "font": 2, + "deployment": 0.6666666666666667, + "e-nightwatch": 2, + "engine": 0.6666666666666667, + "vulns": 0.6666666666666667, + "syntax": 2, + "deliverable": 2, + "manual": 2, + "osx": 0.6666666666666667, + "axe": 2, + "sendgrid": 2, + "operating": 0.6666666666666667, + "system": 0.6666666666666667, + "advance": 2, + "workflow": 2, + "safety": 2, + "phonetic": 2, + "concept": 2, + "lerna": 2, + "readme": 2, + "music": 2, + "failing": 0.8, + "customer": 2, + "lint": 2, + "optimizing": 2, + "compiler": 2, + "css-select": 2, + "figma": 2, + "finance": 2, + "closed": 0.8, + "due": 0.8, + "inactivity": 0.8, + "jira": 2, + "survey": 2, + "behavioral": 2, + "multi": 2, + "module": 2, + "mixing": 2, + "backlog": 2, + "update": 2, + "present": 2, + "modules": 2, + "lang-julia": 2, + "vuln": 2, + "demo": 2, + "corporate": 2, + "spam": 2, + "handshakes": 2, + "platform": 2, + "wave": 2, + "ansible": 2, + "lang-convert": 2, + "gdpr": 2, + "classes": 2, + "websocket": 2, + "speach": 2, + "b": 2, + "chef": 2, + "patreon": 2, + "reviewed-changes-requested": 2, + "youtube": 2, + "(legacy)": 2, + "mentorship": 2, + "typescript": 2, + "didactic": 2, + "story": 2, + "academia": 2 + }, + "negative_weights": { + "addon": 0.015625, + "bias": 3.5718550481030213, + "external": 0.015625, + "utility-lib": 0.0625, + "plugin": 0.015625, + "externs": 0.0625, + "adapter": 0.0625, + "lib": 0.0625, + "component": 12.359619140625, + "developer": 3.515625, + "tools": 3.515625, + "inspiration": 5.0625, + "business": 2, + "process": 2, + "sustain": 2.25, + "confirmed": 2.25, + "type": 3.515625, + "question": 1.875, + "grey": 1.875, + "cmty": 1, + "need-info": 2.25, + "sustenance": 2.25, + "good": 1.875, + "first": 1.875, + "issue": 1.875, + "kind": 2, + "discussion": 2, + "palette": 2.25, + "azure": 2, + "ad": 2, + "data": 2, + "collection": 2, + "external-bugs": 2.25, + "deal": 2.25, + "hacking": 2.25, + "video": 2.25, + "test": 6.328124999999999, + "utils": 0.0034332275390625, + "hsv": 2.25, + "thesis": 2.25, + "pentesting": 2.25, + "design": 2, + "website": 2, + "copy": 2, + "bug": 1, + "guide": 1, + "next": 2, + "meetup!": 2, + "feat": 1.875, + "ui": 1, + "mastering": 1, + "steps": 1, + "abandoned": 1, + "badges": 1, + "sponsor": 1, + "assess": 1, + "pr": 1.7999999999999998, + "merged": 1, + "vlog": 1, + "acceptance": 1, + "testing": 1.7999999999999998, + "hot": 1, + "tv": 1, + "soundtrack": 1, + "(category)": 2, + "ci": 2, + "cd": 2, + "multi-cloud": 1, + "funding": 1, + "finder": 1, + "difficulty": 1, + "hard": 1, + "documentation": 1, + "book": 1, + "diary": 1, + "standard": 1, + "colour": 1, + "computer": 1, + "desktop": 1, + "flaw": 1, + "reliability": 1, + "cli-service": 1.875, + "build": 1.875, + "blocked": 1, + "maintenance": 1, + "construction": 1, + "ios": 1, + "planned": 1, + "feature": 1.75, + "feature-request": 1, + "rfc": 1, + "image": 2, + "stock": 1, + "reminder": 1, + "status": 1.7999999999999998, + "review": 1.875, + "needed": 1, + "in": 1.875, + "lang-crystal": 1, + "breaking": 1, + "change": 1.875, + "phone": 1, + "refactor": 1, + "monologue": 1, + "reviewed-approved": 1, + "new": 1.875, + "best": 1.875, + "practice": 1.875, + "lecture": 1, + "backing": 1, + "browser": 1, + "aws": 1, + "polish": 1.7999999999999998, + "nail": 1.7999999999999998, + "care": 1.7999999999999998, + "article": 1, + "peer-review": 1, + "writer-needed": 1, + "eventstorming": 1, + "freemasonry": 1, + "icons": 1, + "lean": 1, + "cannot": 1, + "reproduce": 1, + "paas": 1, + "net": 1, + "core": 1, + "wiretap": 1, + "unit-jest": 1, + "instruction": 1, + "infrastructure": 1, + "rgb": 1, + "ideas": 1, + "target": 2, + "windows": 1, + "call": 1, + "iconography": 1, + "promote": 1, + "template": 1, + "support": 1, + "first-timers-only": 1, + "java": 1, + "cdn": 1, + "dependency": 1, + "ready": 1.7999999999999998, + "for": 1.7999999999999998, + "deploy": 1.7999999999999998, + "troubleshooting": 1, + "spec": 1.875, + "bigint": 1, + "async": 1.875, + "generators": 1.875, + "proposal": 1, + "e": 1, + "approachability": 1, + "investment": 1, + "conflicts": 1, + "optimisation": 1, + "kotlin": 1, + "release": 1.7999999999999998, + "unconfirmed": 1, + "duplicate": 1, + "repeat": 1, + "devops": 1, + "defend": 1, + "blogging": 1, + "friendliness": 1, + "i": 1, + "n": 1, + "cla": 1, + "signed": 1, + "icebox": 1, + "meetup": 1, + "examination": 1, + "mobile": 1, + "device": 1, + "api": 1, + "decorators": 1, + "cracking": 1, + "sparkles": 1, + "enhancement": 1.875, + "hooks": 1, + "improved": 1, + "error": 1, + "handling": 1, + "needs": 1.7999999999999998, + "repro": 1, + "upkeep": 1, + "reactis": 1, + "to": 1.7999999999999998, + "be": 1, + "sample": 1, + "white": 1.7999999999999998, + "check": 1.7999999999999998, + "mark": 1.7999999999999998, + "hacktoberfest": 1, + "lang-dart": 1, + "framework": 1, + "icon": 1, + "grant": 1, + "needs-research": 1, + "cybersec": 1, + "biz": 1, + "internationalization": 1, + "qa": 1, + "do": 1, + "not": 1, + "merge": 1, + "hacked": 1, + "how-to": 1, + "beginner-friendly": 1, + "trello": 1, + "os": 1, + "sound": 1, + "docs": 1, + "improvement": 1, + "heavy": 1.75, + "plus": 1.75, + "sign": 1.75, + "request": 1.75, + "glitch": 1, + "cx": 1, + "dependencies": 1, + "inquiry": 1, + "deno": 1, + "area": 1, + "crash": 1, + "camera": 1, + "wip": 1, + "configure": 1, + "dom": 1, + "programming": 1, + "font-face": 1, + "rgba": 1, + "parser-specific": 1, + "wikipedia": 1, + "shell": 1, + "contributions": 1, + "tryout": 1, + "thought": 1, + "analysis": 1, + "contenu": 1, + "cli": 1, + "fund": 1, + "investigation": 1, + "basecamp": 1, + "literature": 1, + "socket": 1, + "io": 1, + "client": 1.7999999999999998, + "fiscal": 1, + "user": 1, + "debug": 1, + "information": 1, + "frontend": 1, + "upstream": 1.875, + "raising": 1, + "hand": 1, + "style": 1, + "clean": 1, + "up": 1, + "motif": 1, + "event": 1, + "help": 1, + "wanted": 1, + "priority": 1, + "medium": 1, + "financial": 1, + "ruby": 1, + "es": 1, + "warrant": 1, + "cancelled": 1, + "plan": 1, + "hackathon": 1, + "beginner": 1, + "typography": 1, + "counsel": 1, + "recording": 1, + "crowdin": 1, + "eslint": 1, + "rules": 1, + "easy": 1, + "repare": 1, + "conference": 1, + "great": 1, + "insight": 1, + "phd": 1, + "orange": 1, + "invalid": 1, + "x": 1, + "changelog": 1, + "e-cypress": 1, + "lipstick": 1, + "-": 1, + "backdoor": 1, + "approved": 1, + "talk": 1, + "subtitle": 1, + "research": 1, + "todo": 1, + "spiral": 1, + "notepad": 1, + "interface": 1, + "critical": 1, + "privacy": 1, + "tests": 1, + "boom": 1, + "web": 1, + "app": 1, + "television": 1, + "uat": 1, + "backer": 1, + "exploit": 1, + "requires": 1.875, + "travis-yml": 1, + "node": 1, + "dev": 1, + "experience": 1, + "fix": 1, + "backend": 1, + "cleaning": 1, + "internal": 1.7999999999999998, + "house": 1, + "technical": 1, + "debt": 1, + "weekly-digest": 1, + "shallow": 1, + "renderer": 1, + "commerce": 1, + "ie": 2.25, + "hsl": 1, + "left": 1, + "out": 1, + "welcome": 1, + "opinions": 1, + "documents": 1, + "legacy": 1, + "grafana": 1, + "react": 1, + "native": 1, + "lang-go": 1, + "tutorial": 1, + "logo": 1, + "refactoring": 1, + "safari": 1, + "saltstack": 1, + "available": 1, + "server": 1, + "rendering": 1, + "htmlfile": 1, + "theorem": 1, + "social": 1, + "internationalisation": 1, + "definition": 1, + "enquire": 1, + "packaging": 1, + "lang-r": 1, + "regression": 1, + "container": 1, + "opencollective": 1, + "report": 1, + "performance": 1, + "clickup": 1, + "installer": 1, + "statement": 1, + "gcp": 1, + "opinion": 1, + "accepted": 1, + "html": 1, + "a": 1.7999999999999998, + "y": 1, + "general": 1, + "js": 1, + "unit": 1, + "speak": 1, + "brainstorming": 1, + "backup": 1, + "language": 1, + "bugfix": 1, + "k": 1, + "s": 1, + "scrum": 1, + "paper": 1, + "library": 1, + "stale": 1, + "optimization": 1, + "show": 1, + "apple": 1, + "low": 1, + "functions": 1, + "gnu": 1, + "linux": 1, + "focus": 1, + "groups": 1, + "dependency-update": 1, + "related": 1, + "bootstrap": 1, + "usability": 1, + "*nix": 1, + "critique": 1, + "prince": 1, + "demonstration": 1, + "⬆️": 1, + "memo": 1, + "revisitinfuture": 1, + "tips": 1, + "reference": 1, + "high": 1, + "bug-report": 1, + "babel": 1, + "flashsocket": 1, + "unix": 1, + "npm": 1, + "site": 1, + "chore": 1, + "slides": 1, + "query": 1, + "chat": 1, + "major": 1, + "alpha": 1, + "lock": 1, + "security": 1, + "newsletter": 1, + "verification": 1, + "color": 1, + "containerd": 1, + "doughnut": 1, + "sentry": 1, + "dissertation": 1, + "mentoring": 1, + "confer": 1, + "utilities": 1, + "infosec": 1, + "vulnerability": 1, + "has": 1, + "code": 1, + "teaching": 1, + "protection": 1, + "robot": 1, + "android": 1, + "webaim": 1, + "wontfix": 1, + "triage": 2.25, + "contribution": 1, + "macos": 1, + "assertion": 1, + "blog": 1, + "progress": 1.875, + "future": 1, + "architecture": 1, + "enhancements": 1, + "pmi": 1, + "promotion": 1, + "validation": 1, + "art": 1, + "film": 1, + "bitbucket": 1, + "cloud": 1, + "labour": 1, + "python": 1, + "suggestion": 1, + "crypto": 1, + "attitudinal": 1, + "electron": 1, + "trial": 1, + "example": 1, + "resolution": 1, + "redirect": 1, + "assessment": 1, + "monitor": 1, + "css": 1, + "hack": 1, + "translation": 1, + "opportunity": 1, + "vultr": 1, + "kubernetes": 1, + "wiki": 1, + "parser": 1, + "pwa": 1, + "iphone": 1, + "program": 1, + "finding": 1, + "digital": 1, + "ocean": 1, + "safeguard": 1, + "iac": 1, + "javascript": 1, + "integration": 1, + "glo": 1, + "porting": 1, + "on": 1, + "hold": 1, + "evaluation": 1, + "go": 1.7999999999999998, + "must-triage": 1, + "gradle": 1, + "accessibility": 1, + "work": 1, + "other": 1, + "wrangling": 1, + "sast": 1, + "tech-debt": 1, + "entry": 1, + "fault": 1, + "problem": 1, + "brand": 1, + "internal-issue-created": 1, + "pmp": 1, + "bdd": 1, + "checkpoint": 1, + "csharp": 1, + "unreviewed": 1, + "idea": 1, + "feedback": 1, + "requested": 1, + "wcag": 1, + "bugs": 1, + "mentor": 1, + "economics": 1, + "puppet": 1, + "speech": 1, + "balloon": 1, + "extension": 0.015625, + "c": 2, + "c++": 2, + "bulb": 1.875, + "prometheus": 2.25, + "rocket": 2, + "discuss": 1, + "doc": 2.25, + "blogs": 1, + "unit-mocha": 1, + "enterprise": 1, + "scheduler": 1, + "class": 1, + "fields": 1, + "commercial": 1, + "infra": 1, + "terraform": 1, + "figure": 1, + "layout": 1, + "specification": 1, + "vector": 2, + "greenkeeper": 1, + "tdd": 1, + "raster": 1, + "mishap": 1, + "sketch": 1, + "released": 1, + "font": 1, + "deployment": 2, + "e-nightwatch": 1, + "engine": 2, + "vulns": 2, + "syntax": 1, + "deliverable": 1, + "manual": 1, + "osx": 2, + "axe": 1, + "sendgrid": 1, + "operating": 2, + "system": 2, + "advance": 1, + "workflow": 1, + "safety": 1, + "phonetic": 1, + "concept": 1, + "lerna": 1, + "readme": 1, + "music": 1, + "failing": 1.7999999999999998, + "customer": 1, + "lint": 1, + "optimizing": 1, + "compiler": 1, + "css-select": 1, + "figma": 1, + "finance": 1, + "closed": 1.7999999999999998, + "due": 1.7999999999999998, + "inactivity": 1.7999999999999998, + "jira": 1, + "survey": 1, + "behavioral": 1, + "multi": 1, + "module": 1, + "mixing": 1, + "backlog": 1, + "update": 1, + "present": 1, + "modules": 1, + "lang-julia": 1, + "vuln": 1, + "demo": 1, + "corporate": 1, + "spam": 1, + "handshakes": 1, + "platform": 1, + "wave": 1, + "ansible": 1, + "lang-convert": 1, + "gdpr": 1, + "classes": 1, + "websocket": 1, + "speach": 1, + "b": 1, + "chef": 1, + "patreon": 1, + "reviewed-changes-requested": 1, + "youtube": 1, + "(legacy)": 1, + "mentorship": 1, + "typescript": 1, + "didactic": 1, + "story": 1, + "academia": 1 + }, + "positive_weights_sum": {}, + "negative_weights_sum": {} + }, + "research": { + "positive_weights": { + "literature": 16, + "review": 2, + "bias": 3.0208923362806692e-9, + "phd": 22.78125, + "dissertation": 22.78125, + "research": 5.333333333333334, + "opportunity": 16, + "component": 0.75, + "developer": 0.75, + "tools": 0.75, + "inspiration": 0.5, + "business": 0.6666666666666667, + "process": 0.6666666666666667, + "sustain": 0.5, + "confirmed": 0.5, + "type": 0.30000000000000004, + "question": 0.75, + "grey": 0.75, + "cmty": 2, + "need-info": 0.5, + "sustenance": 0.5, + "good": 0.75, + "first": 0.75, + "issue": 0.75, + "kind": 0.6666666666666667, + "discussion": 0.6666666666666667, + "palette": 0.5, + "azure": 0.6666666666666667, + "ad": 0.6666666666666667, + "data": 0.6666666666666667, + "collection": 0.6666666666666667, + "external-bugs": 0.5, + "deal": 2, + "hacking": 2, + "video": 2, + "test": 0.8, + "utils": 2, + "hsv": 2, + "thesis": 2, + "pentesting": 2, + "design": 2, + "website": 0.6666666666666667, + "copy": 0.6666666666666667, + "bug": 2, + "guide": 2, + "next": 0.8, + "meetup!": 2, + "feat": 0.75, + "ui": 2, + "mastering": 2, + "steps": 2, + "abandoned": 2, + "badges": 2, + "sponsor": 2, + "assess": 2, + "pr": 0.8333333333333334, + "merged": 0.8333333333333334, + "vlog": 2, + "acceptance": 0.6666666666666667, + "testing": 0.6666666666666667, + "hot": 2, + "tv": 2, + "soundtrack": 2, + "(category)": 2, + "ci": 2, + "cd": 2, + "multi-cloud": 2, + "funding": 0.6666666666666667, + "finder": 2, + "difficulty": 2, + "hard": 2, + "documentation": 2, + "book": 2, + "diary": 2, + "standard": 2, + "colour": 2, + "computer": 2, + "desktop": 2, + "flaw": 2, + "reliability": 2, + "cli-service": 0.75, + "build": 0.75, + "blocked": 2, + "maintenance": 2, + "construction": 2, + "ios": 2, + "planned": 0.8, + "feature": 0.8333333333333334, + "feature-request": 2, + "rfc": 2, + "image": 2, + "stock": 2, + "reminder": 2, + "status": 0.75, + "needed": 0.75, + "in": 0.6666666666666667, + "lang-crystal": 2, + "breaking": 2, + "change": 2, + "phone": 2, + "refactor": 2, + "monologue": 2, + "reviewed-approved": 2, + "new": 0.75, + "best": 0.75, + "practice": 0.75, + "lecture": 2, + "backing": 2, + "browser": 2, + "aws": 2, + "polish": 2, + "nail": 2, + "care": 2, + "article": 2, + "peer-review": 2, + "writer-needed": 2, + "eventstorming": 2, + "freemasonry": 2, + "icons": 2, + "lean": 2, + "cannot": 2, + "reproduce": 2, + "paas": 2, + "net": 2, + "core": 2, + "wiretap": 2, + "unit-jest": 2, + "instruction": 2, + "infrastructure": 2, + "rgb": 2, + "ideas": 2, + "target": 2, + "windows": 2, + "call": 2, + "iconography": 2, + "promote": 2, + "template": 2, + "support": 2, + "first-timers-only": 2, + "java": 2, + "cdn": 2, + "dependency": 2, + "ready": 0.8333333333333334, + "for": 0.8, + "deploy": 2, + "troubleshooting": 2, + "spec": 0.75, + "bigint": 2, + "async": 2, + "generators": 2, + "proposal": 2, + "e": 2, + "approachability": 2, + "investment": 2, + "conflicts": 2, + "optimisation": 2, + "kotlin": 2, + "release": 0.8, + "unconfirmed": 2, + "duplicate": 2, + "repeat": 2, + "devops": 2, + "defend": 2, + "blogging": 2, + "friendliness": 2, + "i": 2, + "n": 2, + "cla": 2, + "signed": 2, + "icebox": 2, + "meetup": 2, + "examination": 2, + "mobile": 2, + "device": 2, + "api": 2, + "decorators": 2, + "addon": 2, + "cracking": 2, + "sparkles": 2, + "enhancement": 2, + "hooks": 2, + "improved": 2, + "error": 2, + "handling": 2, + "needs": 0.8, + "repro": 2, + "upkeep": 2, + "reactis": 2, + "to": 0.8333333333333334, + "be": 0.8333333333333334, + "sample": 2, + "white": 2, + "check": 2, + "mark": 2, + "external": 2, + "hacktoberfest": 2, + "lang-dart": 2, + "framework": 2, + "icon": 2, + "grant": 2, + "needs-research": 2, + "cybersec": 2, + "biz": 2, + "internationalization": 2, + "utility-lib": 2, + "qa": 2, + "do": 2, + "not": 2, + "merge": 2, + "hacked": 2, + "how-to": 2, + "beginner-friendly": 2, + "trello": 2, + "os": 2, + "sound": 2, + "docs": 2, + "improvement": 2, + "heavy": 0.8333333333333334, + "plus": 0.8333333333333334, + "sign": 0.8333333333333334, + "request": 0.8333333333333334, + "glitch": 2, + "cx": 2, + "dependencies": 2, + "inquiry": 2, + "deno": 2, + "area": 2, + "crash": 2, + "camera": 2, + "wip": 2, + "configure": 2, + "dom": 2, + "programming": 2, + "font-face": 2, + "rgba": 2, + "parser-specific": 2, + "wikipedia": 2, + "shell": 2, + "contributions": 2, + "tryout": 2, + "thought": 2, + "analysis": 2, + "contenu": 2, + "cli": 2, + "fund": 2, + "investigation": 2, + "basecamp": 2, + "socket": 2, + "io": 2, + "client": 2, + "fiscal": 2, + "user": 2, + "debug": 2, + "information": 2, + "frontend": 2, + "upstream": 2, + "raising": 2, + "hand": 2, + "style": 2, + "clean": 2, + "up": 2, + "motif": 2, + "event": 2, + "help": 2, + "wanted": 2, + "priority": 2, + "medium": 2, + "financial": 2, + "ruby": 2, + "es": 2, + "warrant": 2, + "cancelled": 2, + "plan": 2, + "hackathon": 2, + "beginner": 2, + "typography": 2, + "counsel": 2, + "recording": 2, + "crowdin": 2, + "eslint": 2, + "rules": 2, + "easy": 2, + "repare": 2, + "conference": 2, + "great": 2, + "insight": 2, + "orange": 2, + "invalid": 2, + "x": 2, + "changelog": 2, + "e-cypress": 2, + "lipstick": 2, + "-": 2, + "backdoor": 2, + "approved": 2, + "talk": 2, + "subtitle": 2, + "todo": 2, + "spiral": 2, + "notepad": 2, + "interface": 2, + "critical": 2, + "privacy": 2, + "tests": 2, + "boom": 2, + "web": 2, + "app": 2, + "television": 2, + "uat": 2, + "backer": 2, + "exploit": 2, + "requires": 2, + "travis-yml": 2, + "node": 2, + "dev": 2, + "experience": 2, + "fix": 2, + "backend": 2, + "cleaning": 2, + "internal": 2, + "house": 2, + "technical": 2, + "debt": 2, + "weekly-digest": 2, + "shallow": 2, + "renderer": 2, + "commerce": 2, + "ie": 2, + "hsl": 2, + "left": 2, + "out": 2, + "welcome": 2, + "opinions": 2, + "documents": 2, + "legacy": 2, + "grafana": 2, + "react": 2, + "native": 2, + "lang-go": 2, + "tutorial": 2, + "plugin": 2, + "logo": 2, + "refactoring": 2, + "safari": 2, + "saltstack": 2, + "available": 2, + "server": 2, + "rendering": 2, + "htmlfile": 2, + "theorem": 2, + "social": 2, + "internationalisation": 2, + "definition": 2, + "enquire": 2, + "packaging": 2, + "lang-r": 2, + "regression": 2, + "container": 2, + "opencollective": 2, + "report": 2, + "performance": 2, + "clickup": 2, + "installer": 2, + "statement": 2, + "gcp": 2, + "opinion": 2, + "accepted": 2, + "html": 2, + "a": 0.8, + "y": 2, + "general": 2, + "js": 2, + "unit": 2, + "speak": 2, + "brainstorming": 2, + "backup": 2, + "language": 2, + "bugfix": 2, + "k": 2, + "s": 2, + "scrum": 2, + "paper": 2, + "library": 2, + "stale": 2, + "optimization": 2, + "show": 2, + "apple": 2, + "low": 2, + "functions": 2, + "gnu": 2, + "linux": 2, + "focus": 2, + "groups": 2, + "dependency-update": 2, + "related": 2, + "bootstrap": 2, + "usability": 2, + "*nix": 2, + "externs": 2, + "critique": 2, + "prince": 2, + "demonstration": 2, + "⬆️": 2, + "memo": 2, + "revisitinfuture": 2, + "tips": 2, + "reference": 2, + "high": 2, + "bug-report": 2, + "babel": 2, + "flashsocket": 2, + "unix": 2, + "npm": 2, + "site": 2, + "chore": 2, + "adapter": 2, + "slides": 2, + "query": 2, + "chat": 2, + "major": 2, + "alpha": 2, + "lock": 2, + "security": 2, + "newsletter": 2, + "verification": 2, + "color": 2, + "containerd": 2, + "doughnut": 2, + "sentry": 2, + "mentoring": 2, + "confer": 2, + "utilities": 2, + "infosec": 2, + "vulnerability": 2, + "has": 2, + "code": 2, + "teaching": 2, + "protection": 2, + "robot": 2, + "android": 2, + "webaim": 2, + "wontfix": 2, + "triage": 2, + "contribution": 2, + "macos": 2, + "assertion": 2, + "blog": 2, + "progress": 2, + "future": 2, + "architecture": 2, + "enhancements": 2, + "pmi": 2, + "promotion": 2, + "validation": 2, + "art": 2, + "film": 2, + "bitbucket": 2, + "cloud": 2, + "labour": 2, + "python": 2, + "suggestion": 2, + "crypto": 2, + "attitudinal": 2, + "electron": 2, + "trial": 2, + "example": 2, + "resolution": 2, + "redirect": 2, + "assessment": 2, + "monitor": 2, + "css": 2, + "hack": 2, + "translation": 2, + "vultr": 2, + "kubernetes": 2, + "wiki": 2, + "parser": 2, + "pwa": 2, + "iphone": 2, + "program": 2, + "finding": 2, + "digital": 2, + "ocean": 2, + "safeguard": 2, + "iac": 2, + "javascript": 2, + "integration": 2, + "glo": 2, + "porting": 2, + "on": 2, + "hold": 2, + "evaluation": 2, + "go": 2, + "must-triage": 2, + "gradle": 2, + "accessibility": 2, + "work": 2, + "other": 2, + "wrangling": 2, + "sast": 2, + "tech-debt": 2, + "entry": 2, + "fault": 2, + "problem": 2, + "brand": 2, + "internal-issue-created": 2, + "pmp": 2, + "bdd": 2, + "checkpoint": 2, + "csharp": 2, + "unreviewed": 2, + "idea": 2, + "feedback": 2, + "requested": 2, + "wcag": 2, + "bugs": 2, + "mentor": 2, + "economics": 2, + "lib": 2, + "puppet": 2, + "speech": 0.8, + "balloon": 0.8, + "academia": 10.125, + "c": 0.6666666666666667, + "c++": 0.6666666666666667, + "bulb": 2, + "prometheus": 2, + "rocket": 2, + "discuss": 0.8, + "doc": 2, + "blogs": 2, + "unit-mocha": 2, + "enterprise": 2, + "scheduler": 2, + "class": 0.75, + "fields": 0.75, + "commercial": 2, + "infra": 2, + "terraform": 2, + "figure": 2, + "layout": 2, + "specification": 2, + "vector": 2, + "greenkeeper": 2, + "tdd": 2, + "raster": 2, + "mishap": 2, + "sketch": 2, + "released": 2, + "font": 2, + "deployment": 2, + "e-nightwatch": 2, + "engine": 2, + "vulns": 2, + "syntax": 2, + "deliverable": 2, + "manual": 2, + "osx": 2, + "axe": 2, + "sendgrid": 2, + "operating": 2, + "system": 2, + "advance": 2, + "workflow": 2, + "safety": 2, + "phonetic": 2, + "concept": 2, + "lerna": 2, + "readme": 2, + "music": 2, + "failing": 0.8, + "customer": 2, + "extension": 2, + "lint": 2, + "optimizing": 2, + "compiler": 2, + "css-select": 2, + "figma": 2, + "finance": 2, + "closed": 2, + "due": 2, + "inactivity": 2, + "jira": 2, + "survey": 2, + "behavioral": 2, + "multi": 2, + "module": 2, + "mixing": 2, + "backlog": 2, + "update": 2, + "present": 2, + "modules": 2, + "lang-julia": 2, + "vuln": 2, + "demo": 2, + "corporate": 2, + "spam": 2, + "handshakes": 2, + "platform": 2, + "wave": 2, + "ansible": 2, + "lang-convert": 2, + "gdpr": 2, + "classes": 2, + "websocket": 2, + "speach": 2, + "b": 2, + "chef": 2, + "patreon": 2, + "reviewed-changes-requested": 2, + "youtube": 2, + "(legacy)": 2, + "mentorship": 2, + "typescript": 2, + "didactic": 2, + "story": 2 + }, + "negative_weights": { + "literature": 0.03703703703703705, + "review": 0.13888888888888895, + "bias": 4.552423388899387, + "phd": 0.015625, + "dissertation": 0.015625, + "research": 0.0740740740740741, + "opportunity": 0.03703703703703705, + "component": 1.875, + "developer": 1.875, + "tools": 1.875, + "inspiration": 2.25, + "business": 2, + "process": 2, + "sustain": 2.25, + "confirmed": 2.25, + "type": 3.3749999999999996, + "question": 1.875, + "grey": 1.875, + "cmty": 1, + "need-info": 2.25, + "sustenance": 2.25, + "good": 1.875, + "first": 1.875, + "issue": 1.875, + "kind": 2, + "discussion": 2, + "palette": 2.25, + "azure": 2, + "ad": 2, + "data": 2, + "collection": 2, + "external-bugs": 2.25, + "deal": 1, + "hacking": 1, + "video": 1, + "test": 1.7999999999999998, + "utils": 1, + "hsv": 1, + "thesis": 1, + "pentesting": 1, + "design": 1, + "website": 2, + "copy": 2, + "bug": 1, + "guide": 1, + "next": 1.7999999999999998, + "meetup!": 1, + "feat": 1.875, + "ui": 1, + "mastering": 1, + "steps": 1, + "abandoned": 1, + "badges": 1, + "sponsor": 1, + "assess": 1, + "pr": 1.75, + "merged": 1.75, + "vlog": 1, + "acceptance": 2, + "testing": 2, + "hot": 1, + "tv": 1, + "soundtrack": 1, + "(category)": 1, + "ci": 1, + "cd": 1, + "multi-cloud": 1, + "funding": 2, + "finder": 1, + "difficulty": 1, + "hard": 1, + "documentation": 1, + "book": 1, + "diary": 1, + "standard": 1, + "colour": 1, + "computer": 1, + "desktop": 1, + "flaw": 1, + "reliability": 1, + "cli-service": 1.875, + "build": 1.875, + "blocked": 1, + "maintenance": 1, + "construction": 1, + "ios": 1, + "planned": 1.7999999999999998, + "feature": 1.75, + "feature-request": 1, + "rfc": 1, + "image": 1, + "stock": 1, + "reminder": 1, + "status": 1.875, + "needed": 1.875, + "in": 2, + "lang-crystal": 1, + "breaking": 1, + "change": 1, + "phone": 1, + "refactor": 1, + "monologue": 1, + "reviewed-approved": 1, + "new": 1.875, + "best": 1.875, + "practice": 1.875, + "lecture": 1, + "backing": 1, + "browser": 1, + "aws": 1, + "polish": 1, + "nail": 1, + "care": 1, + "article": 1, + "peer-review": 1, + "writer-needed": 1, + "eventstorming": 1, + "freemasonry": 1, + "icons": 1, + "lean": 1, + "cannot": 1, + "reproduce": 1, + "paas": 1, + "net": 1, + "core": 1, + "wiretap": 1, + "unit-jest": 1, + "instruction": 1, + "infrastructure": 1, + "rgb": 1, + "ideas": 1, + "target": 1, + "windows": 1, + "call": 1, + "iconography": 1, + "promote": 1, + "template": 1, + "support": 1, + "first-timers-only": 1, + "java": 1, + "cdn": 1, + "dependency": 1, + "ready": 1.75, + "for": 1.7999999999999998, + "deploy": 1, + "troubleshooting": 1, + "spec": 1.875, + "bigint": 1, + "async": 1, + "generators": 1, + "proposal": 1, + "e": 1, + "approachability": 1, + "investment": 1, + "conflicts": 1, + "optimisation": 1, + "kotlin": 1, + "release": 1.7999999999999998, + "unconfirmed": 1, + "duplicate": 1, + "repeat": 1, + "devops": 1, + "defend": 1, + "blogging": 1, + "friendliness": 1, + "i": 1, + "n": 1, + "cla": 1, + "signed": 1, + "icebox": 1, + "meetup": 1, + "examination": 1, + "mobile": 1, + "device": 1, + "api": 1, + "decorators": 1, + "addon": 1, + "cracking": 1, + "sparkles": 1, + "enhancement": 1, + "hooks": 1, + "improved": 1, + "error": 1, + "handling": 1, + "needs": 1.7999999999999998, + "repro": 1, + "upkeep": 1, + "reactis": 1, + "to": 1.75, + "be": 1.75, + "sample": 1, + "white": 1, + "check": 1, + "mark": 1, + "external": 1, + "hacktoberfest": 1, + "lang-dart": 1, + "framework": 1, + "icon": 1, + "grant": 1, + "needs-research": 1, + "cybersec": 1, + "biz": 1, + "internationalization": 1, + "utility-lib": 1, + "qa": 1, + "do": 1, + "not": 1, + "merge": 1, + "hacked": 1, + "how-to": 1, + "beginner-friendly": 1, + "trello": 1, + "os": 1, + "sound": 1, + "docs": 1, + "improvement": 1, + "heavy": 1.75, + "plus": 1.75, + "sign": 1.75, + "request": 1.75, + "glitch": 1, + "cx": 1, + "dependencies": 1, + "inquiry": 1, + "deno": 1, + "area": 1, + "crash": 1, + "camera": 1, + "wip": 1, + "configure": 1, + "dom": 1, + "programming": 1, + "font-face": 1, + "rgba": 1, + "parser-specific": 1, + "wikipedia": 1, + "shell": 1, + "contributions": 1, + "tryout": 1, + "thought": 1, + "analysis": 1, + "contenu": 1, + "cli": 1, + "fund": 1, + "investigation": 1, + "basecamp": 1, + "socket": 1, + "io": 1, + "client": 1, + "fiscal": 1, + "user": 1, + "debug": 1, + "information": 1, + "frontend": 1, + "upstream": 1, + "raising": 1, + "hand": 1, + "style": 1, + "clean": 1, + "up": 1, + "motif": 1, + "event": 1, + "help": 1, + "wanted": 1, + "priority": 1, + "medium": 1, + "financial": 1, + "ruby": 1, + "es": 1, + "warrant": 1, + "cancelled": 1, + "plan": 1, + "hackathon": 1, + "beginner": 1, + "typography": 1, + "counsel": 1, + "recording": 1, + "crowdin": 1, + "eslint": 1, + "rules": 1, + "easy": 1, + "repare": 1, + "conference": 1, + "great": 1, + "insight": 1, + "orange": 1, + "invalid": 1, + "x": 1, + "changelog": 1, + "e-cypress": 1, + "lipstick": 1, + "-": 1, + "backdoor": 1, + "approved": 1, + "talk": 1, + "subtitle": 1, + "todo": 1, + "spiral": 1, + "notepad": 1, + "interface": 1, + "critical": 1, + "privacy": 1, + "tests": 1, + "boom": 1, + "web": 1, + "app": 1, + "television": 1, + "uat": 1, + "backer": 1, + "exploit": 1, + "requires": 1, + "travis-yml": 1, + "node": 1, + "dev": 1, + "experience": 1, + "fix": 1, + "backend": 1, + "cleaning": 1, + "internal": 1, + "house": 1, + "technical": 1, + "debt": 1, + "weekly-digest": 1, + "shallow": 1, + "renderer": 1, + "commerce": 1, + "ie": 1, + "hsl": 1, + "left": 1, + "out": 1, + "welcome": 1, + "opinions": 1, + "documents": 1, + "legacy": 1, + "grafana": 1, + "react": 1, + "native": 1, + "lang-go": 1, + "tutorial": 1, + "plugin": 1, + "logo": 1, + "refactoring": 1, + "safari": 1, + "saltstack": 1, + "available": 1, + "server": 1, + "rendering": 1, + "htmlfile": 1, + "theorem": 1, + "social": 1, + "internationalisation": 1, + "definition": 1, + "enquire": 1, + "packaging": 1, + "lang-r": 1, + "regression": 1, + "container": 1, + "opencollective": 1, + "report": 1, + "performance": 1, + "clickup": 1, + "installer": 1, + "statement": 1, + "gcp": 1, + "opinion": 1, + "accepted": 1, + "html": 1, + "a": 1.7999999999999998, + "y": 1, + "general": 1, + "js": 1, + "unit": 1, + "speak": 1, + "brainstorming": 1, + "backup": 1, + "language": 1, + "bugfix": 1, + "k": 1, + "s": 1, + "scrum": 1, + "paper": 1, + "library": 1, + "stale": 1, + "optimization": 1, + "show": 1, + "apple": 1, + "low": 1, + "functions": 1, + "gnu": 1, + "linux": 1, + "focus": 1, + "groups": 1, + "dependency-update": 1, + "related": 1, + "bootstrap": 1, + "usability": 1, + "*nix": 1, + "externs": 1, + "critique": 1, + "prince": 1, + "demonstration": 1, + "⬆️": 1, + "memo": 1, + "revisitinfuture": 1, + "tips": 1, + "reference": 1, + "high": 1, + "bug-report": 1, + "babel": 1, + "flashsocket": 1, + "unix": 1, + "npm": 1, + "site": 1, + "chore": 1, + "adapter": 1, + "slides": 1, + "query": 1, + "chat": 1, + "major": 1, + "alpha": 1, + "lock": 1, + "security": 1, + "newsletter": 1, + "verification": 1, + "color": 1, + "containerd": 1, + "doughnut": 1, + "sentry": 1, + "mentoring": 1, + "confer": 1, + "utilities": 1, + "infosec": 1, + "vulnerability": 1, + "has": 1, + "code": 1, + "teaching": 1, + "protection": 1, + "robot": 1, + "android": 1, + "webaim": 1, + "wontfix": 1, + "triage": 1, + "contribution": 1, + "macos": 1, + "assertion": 1, + "blog": 1, + "progress": 1, + "future": 1, + "architecture": 1, + "enhancements": 1, + "pmi": 1, + "promotion": 1, + "validation": 1, + "art": 1, + "film": 1, + "bitbucket": 1, + "cloud": 1, + "labour": 1, + "python": 1, + "suggestion": 1, + "crypto": 1, + "attitudinal": 1, + "electron": 1, + "trial": 1, + "example": 1, + "resolution": 1, + "redirect": 1, + "assessment": 1, + "monitor": 1, + "css": 1, + "hack": 1, + "translation": 1, + "vultr": 1, + "kubernetes": 1, + "wiki": 1, + "parser": 1, + "pwa": 1, + "iphone": 1, + "program": 1, + "finding": 1, + "digital": 1, + "ocean": 1, + "safeguard": 1, + "iac": 1, + "javascript": 1, + "integration": 1, + "glo": 1, + "porting": 1, + "on": 1, + "hold": 1, + "evaluation": 1, + "go": 1, + "must-triage": 1, + "gradle": 1, + "accessibility": 1, + "work": 1, + "other": 1, + "wrangling": 1, + "sast": 1, + "tech-debt": 1, + "entry": 1, + "fault": 1, + "problem": 1, + "brand": 1, + "internal-issue-created": 1, + "pmp": 1, + "bdd": 1, + "checkpoint": 1, + "csharp": 1, + "unreviewed": 1, + "idea": 1, + "feedback": 1, + "requested": 1, + "wcag": 1, + "bugs": 1, + "mentor": 1, + "economics": 1, + "lib": 1, + "puppet": 1, + "speech": 1.7999999999999998, + "balloon": 1.7999999999999998, + "academia": 0.0625, + "c": 2, + "c++": 2, + "bulb": 1, + "prometheus": 1, + "rocket": 1, + "discuss": 1.7999999999999998, + "doc": 1, + "blogs": 1, + "unit-mocha": 1, + "enterprise": 1, + "scheduler": 1, + "class": 1.875, + "fields": 1.875, + "commercial": 1, + "infra": 1, + "terraform": 1, + "figure": 1, + "layout": 1, + "specification": 1, + "vector": 1, + "greenkeeper": 1, + "tdd": 1, + "raster": 1, + "mishap": 1, + "sketch": 1, + "released": 1, + "font": 1, + "deployment": 1, + "e-nightwatch": 1, + "engine": 1, + "vulns": 1, + "syntax": 1, + "deliverable": 1, + "manual": 1, + "osx": 1, + "axe": 1, + "sendgrid": 1, + "operating": 1, + "system": 1, + "advance": 1, + "workflow": 1, + "safety": 1, + "phonetic": 1, + "concept": 1, + "lerna": 1, + "readme": 1, + "music": 1, + "failing": 1.7999999999999998, + "customer": 1, + "extension": 1, + "lint": 1, + "optimizing": 1, + "compiler": 1, + "css-select": 1, + "figma": 1, + "finance": 1, + "closed": 1, + "due": 1, + "inactivity": 1, + "jira": 1, + "survey": 1, + "behavioral": 1, + "multi": 1, + "module": 1, + "mixing": 1, + "backlog": 1, + "update": 1, + "present": 1, + "modules": 1, + "lang-julia": 1, + "vuln": 1, + "demo": 1, + "corporate": 1, + "spam": 1, + "handshakes": 1, + "platform": 1, + "wave": 1, + "ansible": 1, + "lang-convert": 1, + "gdpr": 1, + "classes": 1, + "websocket": 1, + "speach": 1, + "b": 1, + "chef": 1, + "patreon": 1, + "reviewed-changes-requested": 1, + "youtube": 1, + "(legacy)": 1, + "mentorship": 1, + "typescript": 1, + "didactic": 1, + "story": 1 + }, + "positive_weights_sum": {}, + "negative_weights_sum": {} + }, + "userTesting": { + "positive_weights": { + "user": 29.629629629629644, + "testing": 3.2958984375000027, + "bias": 2.2438710192953305e-32, + "client": 13.824000000000002, + "test": 0.8533333333333335, + "focus": 8, + "groups": 8, + "attitudinal": 2, + "component": 0.10546875, + "developer": 0.75, + "tools": 0.75, + "inspiration": 0.5, + "business": 0.6666666666666667, + "process": 0.6666666666666667, + "sustain": 0.5, + "confirmed": 0.5, + "type": 0.30000000000000004, + "question": 0.75, + "grey": 0.75, + "cmty": 2, + "need-info": 0.5, + "sustenance": 0.5, + "good": 0.75, + "first": 0.75, + "issue": 0.75, + "kind": 0.6666666666666667, + "discussion": 0.6666666666666667, + "palette": 2, + "azure": 0.6666666666666667, + "ad": 0.6666666666666667, + "data": 0.6666666666666667, + "collection": 0.6666666666666667, + "external-bugs": 2, + "deal": 2, + "hacking": 2, + "video": 2, + "utils": 0.28125, + "hsv": 2, + "thesis": 2, + "pentesting": 2, + "design": 0.6666666666666667, + "website": 0.6666666666666667, + "copy": 0.6666666666666667, + "bug": 2, + "guide": 2, + "next": 2, + "meetup!": 2, + "feat": 0.75, + "ui": 0.6666666666666667, + "mastering": 2, + "steps": 2, + "abandoned": 2, + "badges": 2, + "sponsor": 2, + "assess": 2, + "pr": 0.3333333333333333, + "merged": 0.8333333333333333, + "vlog": 2, + "acceptance": 0.024691358024691367, + "hot": 2, + "tv": 2, + "soundtrack": 2, + "(category)": 2, + "ci": 2, + "cd": 2, + "multi-cloud": 2, + "funding": 2, + "finder": 2, + "difficulty": 2, + "hard": 2, + "documentation": 0.75, + "book": 0.75, + "diary": 2, + "standard": 2, + "colour": 2, + "computer": 2, + "desktop": 2, + "flaw": 2, + "reliability": 2, + "cli-service": 0.75, + "build": 0.75, + "blocked": 2, + "maintenance": 2, + "construction": 2, + "ios": 2, + "planned": 2, + "feature": 0.8333333333333333, + "feature-request": 2, + "rfc": 2, + "image": 0.6666666666666667, + "stock": 2, + "reminder": 2, + "status": 0.75, + "review": 0.75, + "needed": 0.75, + "in": 2, + "lang-crystal": 2, + "breaking": 2, + "change": 0.75, + "phone": 2, + "refactor": 2, + "monologue": 2, + "reviewed-approved": 2, + "new": 0.75, + "best": 0.75, + "practice": 0.75, + "lecture": 2, + "backing": 2, + "browser": 0.75, + "aws": 2, + "polish": 0.8, + "nail": 0.8, + "care": 0.8, + "article": 2, + "peer-review": 2, + "writer-needed": 2, + "eventstorming": 2, + "freemasonry": 2, + "icons": 2, + "lean": 2, + "cannot": 2, + "reproduce": 2, + "paas": 2, + "net": 2, + "core": 2, + "wiretap": 2, + "unit-jest": 2, + "instruction": 2, + "infrastructure": 2, + "rgb": 2, + "ideas": 2, + "target": 0.6666666666666667, + "windows": 2, + "call": 2, + "iconography": 2, + "promote": 2, + "template": 2, + "support": 0.75, + "first-timers-only": 2, + "java": 2, + "cdn": 2, + "dependency": 2, + "ready": 0.8333333333333333, + "for": 2, + "deploy": 2, + "troubleshooting": 2, + "spec": 0.75, + "bigint": 2, + "async": 2, + "generators": 2, + "proposal": 2, + "e": 0.22222222222222227, + "approachability": 2, + "investment": 2, + "conflicts": 2, + "optimisation": 2, + "kotlin": 2, + "release": 0.12800000000000003, + "unconfirmed": 2, + "duplicate": 2, + "repeat": 2, + "devops": 2, + "defend": 2, + "blogging": 2, + "friendliness": 2, + "i": 2, + "n": 2, + "cla": 2, + "signed": 2, + "icebox": 2, + "meetup": 2, + "examination": 2, + "mobile": 0.75, + "device": 0.75, + "api": 2, + "decorators": 2, + "addon": 2, + "cracking": 2, + "sparkles": 2, + "enhancement": 2, + "hooks": 2, + "improved": 0.75, + "error": 0.75, + "handling": 0.75, + "needs": 0.12000000000000002, + "repro": 2, + "upkeep": 2, + "reactis": 2, + "to": 0.3333333333333333, + "be": 0.8333333333333333, + "sample": 2, + "white": 0.12800000000000003, + "check": 0.12800000000000003, + "mark": 0.12800000000000003, + "external": 2, + "hacktoberfest": 2, + "lang-dart": 2, + "framework": 2, + "icon": 2, + "grant": 2, + "needs-research": 2, + "cybersec": 2, + "biz": 2, + "internationalization": 2, + "utility-lib": 2, + "qa": 2, + "do": 0.75, + "not": 0.75, + "merge": 0.75, + "hacked": 2, + "how-to": 2, + "beginner-friendly": 2, + "trello": 2, + "os": 2, + "sound": 2, + "docs": 2, + "improvement": 2, + "heavy": 0.8333333333333333, + "plus": 0.8333333333333333, + "sign": 0.8333333333333333, + "request": 0.8333333333333333, + "glitch": 2, + "cx": 2, + "dependencies": 2, + "inquiry": 2, + "deno": 2, + "area": 2, + "crash": 2, + "camera": 2, + "wip": 2, + "configure": 2, + "dom": 2, + "programming": 2, + "font-face": 2, + "rgba": 2, + "parser-specific": 2, + "wikipedia": 2, + "shell": 2, + "contributions": 2, + "tryout": 2, + "thought": 2, + "analysis": 2, + "contenu": 2, + "cli": 2, + "fund": 2, + "investigation": 2, + "basecamp": 2, + "literature": 2, + "socket": 0.10546875, + "io": 0.10546875, + "fiscal": 2, + "debug": 2, + "information": 2, + "frontend": 2, + "upstream": 0.75, + "raising": 2, + "hand": 2, + "style": 2, + "clean": 2, + "up": 2, + "motif": 2, + "event": 2, + "help": 2, + "wanted": 2, + "priority": 2, + "medium": 2, + "financial": 2, + "ruby": 2, + "es": 2, + "warrant": 2, + "cancelled": 2, + "plan": 2, + "hackathon": 2, + "beginner": 2, + "typography": 2, + "counsel": 2, + "recording": 2, + "crowdin": 2, + "eslint": 2, + "rules": 2, + "easy": 2, + "repare": 2, + "conference": 2, + "great": 2, + "insight": 2, + "phd": 2, + "orange": 0.75, + "invalid": 2, + "x": 2, + "changelog": 2, + "e-cypress": 2, + "lipstick": 2, + "-": 2, + "backdoor": 2, + "approved": 2, + "talk": 2, + "subtitle": 2, + "research": 2, + "todo": 0.75, + "spiral": 0.75, + "notepad": 0.75, + "interface": 0.008230452674897124, + "critical": 2, + "privacy": 2, + "tests": 2, + "boom": 2, + "web": 2, + "app": 2, + "television": 2, + "uat": 2, + "backer": 2, + "exploit": 2, + "requires": 0.75, + "travis-yml": 2, + "node": 2, + "dev": 2, + "experience": 2, + "fix": 2, + "backend": 2, + "cleaning": 2, + "internal": 0.12800000000000003, + "house": 2, + "technical": 2, + "debt": 2, + "weekly-digest": 2, + "shallow": 2, + "renderer": 2, + "commerce": 2, + "ie": 2, + "hsl": 2, + "left": 2, + "out": 2, + "welcome": 2, + "opinions": 2, + "documents": 2, + "legacy": 2, + "grafana": 2, + "react": 2, + "native": 2, + "lang-go": 2, + "tutorial": 2, + "plugin": 2, + "logo": 2, + "refactoring": 2, + "safari": 2, + "saltstack": 2, + "available": 2, + "server": 2, + "rendering": 2, + "htmlfile": 2, + "theorem": 2, + "social": 2, + "internationalisation": 2, + "definition": 2, + "enquire": 2, + "packaging": 2, + "lang-r": 2, + "regression": 2, + "container": 2, + "opencollective": 2, + "report": 2, + "performance": 2, + "clickup": 2, + "installer": 2, + "statement": 2, + "gcp": 2, + "opinion": 2, + "accepted": 2, + "html": 2, + "a": 1.3183593750000002, + "y": 0.6666666666666667, + "general": 2, + "js": 2, + "unit": 2, + "speak": 2, + "brainstorming": 2, + "backup": 2, + "language": 2, + "bugfix": 2, + "k": 2, + "s": 2, + "scrum": 2, + "paper": 2, + "library": 2, + "stale": 2, + "optimization": 2, + "show": 2, + "apple": 2, + "low": 2, + "functions": 2, + "gnu": 2, + "linux": 2, + "dependency-update": 2, + "related": 2, + "bootstrap": 2, + "usability": 1, + "*nix": 2, + "externs": 2, + "critique": 2, + "prince": 2, + "demonstration": 2, + "⬆️": 2, + "memo": 2, + "revisitinfuture": 2, + "tips": 2, + "reference": 2, + "high": 2, + "bug-report": 2, + "babel": 2, + "flashsocket": 2, + "unix": 2, + "npm": 2, + "site": 2, + "chore": 2, + "adapter": 2, + "slides": 2, + "query": 2, + "chat": 2, + "major": 2, + "alpha": 2, + "lock": 2, + "security": 2, + "newsletter": 2, + "verification": 2, + "color": 2, + "containerd": 2, + "doughnut": 2, + "sentry": 2, + "dissertation": 2, + "mentoring": 2, + "confer": 2, + "utilities": 2, + "infosec": 2, + "vulnerability": 2, + "has": 2, + "code": 2, + "teaching": 2, + "protection": 2, + "robot": 2, + "android": 2, + "webaim": 2, + "wontfix": 2, + "triage": 2, + "contribution": 2, + "macos": 2, + "assertion": 2, + "blog": 2, + "progress": 2, + "future": 2, + "architecture": 2, + "enhancements": 2, + "pmi": 2, + "promotion": 2, + "validation": 2, + "art": 2, + "film": 2, + "bitbucket": 2, + "cloud": 2, + "labour": 2, + "python": 2, + "suggestion": 2, + "crypto": 2, + "electron": 2, + "trial": 2, + "example": 2, + "resolution": 2, + "redirect": 2, + "assessment": 2, + "monitor": 2, + "css": 2, + "hack": 2, + "translation": 2, + "opportunity": 2, + "vultr": 2, + "kubernetes": 2, + "wiki": 2, + "parser": 2, + "pwa": 2, + "iphone": 2, + "program": 2, + "finding": 2, + "digital": 2, + "ocean": 2, + "safeguard": 2, + "iac": 2, + "javascript": 2, + "integration": 2, + "glo": 2, + "porting": 2, + "on": 2, + "hold": 2, + "evaluation": 2, + "go": 0.12800000000000003, + "must-triage": 2, + "gradle": 2, + "accessibility": 2, + "work": 2, + "other": 2, + "wrangling": 2, + "sast": 2, + "tech-debt": 2, + "entry": 2, + "fault": 2, + "problem": 2, + "brand": 2, + "internal-issue-created": 2, + "pmp": 2, + "bdd": 2, + "checkpoint": 2, + "csharp": 2, + "unreviewed": 2, + "idea": 2, + "feedback": 2, + "requested": 2, + "wcag": 2, + "bugs": 2, + "mentor": 2, + "economics": 2, + "lib": 2, + "puppet": 2, + "speech": 0.8, + "balloon": 0.8, + "behavioral": 7.03125, + "b": 24.71923828125, + "c": 0.6666666666666667, + "c++": 0.6666666666666667, + "bulb": 2, + "prometheus": 2, + "rocket": 0.6666666666666667, + "discuss": 0.8, + "doc": 2, + "blogs": 2, + "unit-mocha": 2, + "enterprise": 2, + "scheduler": 2, + "class": 0.75, + "fields": 0.75, + "commercial": 2, + "infra": 2, + "terraform": 2, + "figure": 2, + "layout": 2, + "specification": 2, + "vector": 0.6666666666666667, + "greenkeeper": 2, + "tdd": 2, + "raster": 2, + "mishap": 2, + "sketch": 2, + "released": 2, + "font": 0.6666666666666667, + "deployment": 0.6666666666666667, + "e-nightwatch": 2, + "engine": 0.6666666666666667, + "vulns": 0.6666666666666667, + "syntax": 2, + "deliverable": 2, + "manual": 2, + "osx": 0.6666666666666667, + "axe": 2, + "sendgrid": 2, + "operating": 0.6666666666666667, + "system": 0.6666666666666667, + "advance": 2, + "workflow": 2, + "safety": 2, + "phonetic": 2, + "concept": 2, + "lerna": 2, + "readme": 2, + "music": 2, + "failing": 0.32000000000000006, + "customer": 2, + "extension": 2, + "lint": 2, + "optimizing": 2, + "compiler": 2, + "css-select": 2, + "figma": 2, + "finance": 2, + "closed": 0.8, + "due": 0.8, + "inactivity": 0.8, + "jira": 2, + "survey": 2, + "multi": 2, + "module": 2, + "mixing": 2, + "backlog": 2, + "update": 2, + "present": 2, + "modules": 2, + "lang-julia": 2, + "vuln": 2, + "demo": 2, + "corporate": 2, + "spam": 2, + "handshakes": 2, + "platform": 2, + "wave": 2, + "ansible": 2, + "lang-convert": 2, + "gdpr": 2, + "classes": 2, + "websocket": 2, + "speach": 2, + "chef": 2, + "patreon": 2, + "reviewed-changes-requested": 2, + "youtube": 2, + "(legacy)": 2, + "mentorship": 2, + "typescript": 2, + "didactic": 2, + "story": 2, + "academia": 2 + }, + "negative_weights": { + "user": 0.00007620789513793636, + "testing": 8.093525849517438e-16, + "bias": 8.353160492120718, + "client": 0.00021701388888888912, + "test": 0.0011574074074074086, + "focus": 0.11111111111111113, + "groups": 0.11111111111111113, + "attitudinal": 1, + "component": 6.591796875, + "developer": 1.875, + "tools": 1.875, + "inspiration": 2.25, + "business": 2, + "process": 2, + "sustain": 2.25, + "confirmed": 2.25, + "type": 3.3749999999999996, + "question": 1.875, + "grey": 1.875, + "cmty": 1, + "need-info": 2.25, + "sustenance": 2.25, + "good": 1.875, + "first": 1.875, + "issue": 1.875, + "kind": 2, + "discussion": 2, + "palette": 1, + "azure": 2, + "ad": 2, + "data": 2, + "collection": 2, + "external-bugs": 1, + "deal": 1, + "hacking": 1, + "video": 1, + "utils": 3.515625, + "hsv": 1, + "thesis": 1, + "pentesting": 1, + "design": 2, + "website": 2, + "copy": 2, + "bug": 1, + "guide": 1, + "next": 1, + "meetup!": 1, + "feat": 1.875, + "ui": 2, + "mastering": 1, + "steps": 1, + "abandoned": 1, + "badges": 1, + "sponsor": 1, + "assess": 1, + "pr": 3.1499999999999995, + "merged": 1.75, + "vlog": 1, + "acceptance": 16, + "hot": 1, + "tv": 1, + "soundtrack": 1, + "(category)": 1, + "ci": 1, + "cd": 1, + "multi-cloud": 1, + "funding": 1, + "finder": 1, + "difficulty": 1, + "hard": 1, + "documentation": 1.875, + "book": 1.875, + "diary": 1, + "standard": 1, + "colour": 1, + "computer": 1, + "desktop": 1, + "flaw": 1, + "reliability": 1, + "cli-service": 1.875, + "build": 1.875, + "blocked": 1, + "maintenance": 1, + "construction": 1, + "ios": 1, + "planned": 1, + "feature": 1.75, + "feature-request": 1, + "rfc": 1, + "image": 2, + "stock": 1, + "reminder": 1, + "status": 1.875, + "review": 1.875, + "needed": 1.875, + "in": 1, + "lang-crystal": 1, + "breaking": 1, + "change": 1.875, + "phone": 1, + "refactor": 1, + "monologue": 1, + "reviewed-approved": 1, + "new": 1.875, + "best": 1.875, + "practice": 1.875, + "lecture": 1, + "backing": 1, + "browser": 1.875, + "aws": 1, + "polish": 1.7999999999999998, + "nail": 1.7999999999999998, + "care": 1.7999999999999998, + "article": 1, + "peer-review": 1, + "writer-needed": 1, + "eventstorming": 1, + "freemasonry": 1, + "icons": 1, + "lean": 1, + "cannot": 1, + "reproduce": 1, + "paas": 1, + "net": 1, + "core": 1, + "wiretap": 1, + "unit-jest": 1, + "instruction": 1, + "infrastructure": 1, + "rgb": 1, + "ideas": 1, + "target": 2, + "windows": 1, + "call": 1, + "iconography": 1, + "promote": 1, + "template": 1, + "support": 1.875, + "first-timers-only": 1, + "java": 1, + "cdn": 1, + "dependency": 1, + "ready": 1.75, + "for": 1, + "deploy": 1, + "troubleshooting": 1, + "spec": 1.875, + "bigint": 1, + "async": 1, + "generators": 1, + "proposal": 1, + "e": 4, + "approachability": 1, + "investment": 1, + "conflicts": 1, + "optimisation": 1, + "kotlin": 1, + "release": 5.831999999999998, + "unconfirmed": 1, + "duplicate": 1, + "repeat": 1, + "devops": 1, + "defend": 1, + "blogging": 1, + "friendliness": 1, + "i": 1, + "n": 1, + "cla": 1, + "signed": 1, + "icebox": 1, + "meetup": 1, + "examination": 1, + "mobile": 1.875, + "device": 1.875, + "api": 1, + "decorators": 1, + "addon": 1, + "cracking": 1, + "sparkles": 1, + "enhancement": 1, + "hooks": 1, + "improved": 1.875, + "error": 1.875, + "handling": 1.875, + "needs": 6.074999999999998, + "repro": 1, + "upkeep": 1, + "reactis": 1, + "to": 3.1499999999999995, + "be": 1.75, + "sample": 1, + "white": 5.831999999999998, + "check": 5.831999999999998, + "mark": 5.831999999999998, + "external": 1, + "hacktoberfest": 1, + "lang-dart": 1, + "framework": 1, + "icon": 1, + "grant": 1, + "needs-research": 1, + "cybersec": 1, + "biz": 1, + "internationalization": 1, + "utility-lib": 1, + "qa": 1, + "do": 1.875, + "not": 1.875, + "merge": 1.875, + "hacked": 1, + "how-to": 1, + "beginner-friendly": 1, + "trello": 1, + "os": 1, + "sound": 1, + "docs": 1, + "improvement": 1, + "heavy": 1.75, + "plus": 1.75, + "sign": 1.75, + "request": 1.75, + "glitch": 1, + "cx": 1, + "dependencies": 1, + "inquiry": 1, + "deno": 1, + "area": 1, + "crash": 1, + "camera": 1, + "wip": 1, + "configure": 1, + "dom": 1, + "programming": 1, + "font-face": 1, + "rgba": 1, + "parser-specific": 1, + "wikipedia": 1, + "shell": 1, + "contributions": 1, + "tryout": 1, + "thought": 1, + "analysis": 1, + "contenu": 1, + "cli": 1, + "fund": 1, + "investigation": 1, + "basecamp": 1, + "literature": 1, + "socket": 6.591796875, + "io": 6.591796875, + "fiscal": 1, + "debug": 1, + "information": 1, + "frontend": 1, + "upstream": 1.875, + "raising": 1, + "hand": 1, + "style": 1, + "clean": 1, + "up": 1, + "motif": 1, + "event": 1, + "help": 1, + "wanted": 1, + "priority": 1, + "medium": 1, + "financial": 1, + "ruby": 1, + "es": 1, + "warrant": 1, + "cancelled": 1, + "plan": 1, + "hackathon": 1, + "beginner": 1, + "typography": 1, + "counsel": 1, + "recording": 1, + "crowdin": 1, + "eslint": 1, + "rules": 1, + "easy": 1, + "repare": 1, + "conference": 1, + "great": 1, + "insight": 1, + "phd": 1, + "orange": 1.875, + "invalid": 1, + "x": 1, + "changelog": 1, + "e-cypress": 1, + "lipstick": 1, + "-": 1, + "backdoor": 1, + "approved": 1, + "talk": 1, + "subtitle": 1, + "research": 1, + "todo": 1.875, + "spiral": 1.875, + "notepad": 1.875, + "interface": 32, + "critical": 1, + "privacy": 1, + "tests": 1, + "boom": 1, + "web": 1, + "app": 1, + "television": 1, + "uat": 1, + "backer": 1, + "exploit": 1, + "requires": 1.875, + "travis-yml": 1, + "node": 1, + "dev": 1, + "experience": 1, + "fix": 1, + "backend": 1, + "cleaning": 1, + "internal": 5.831999999999998, + "house": 1, + "technical": 1, + "debt": 1, + "weekly-digest": 1, + "shallow": 1, + "renderer": 1, + "commerce": 1, + "ie": 1, + "hsl": 1, + "left": 1, + "out": 1, + "welcome": 1, + "opinions": 1, + "documents": 1, + "legacy": 1, + "grafana": 1, + "react": 1, + "native": 1, + "lang-go": 1, + "tutorial": 1, + "plugin": 1, + "logo": 1, + "refactoring": 1, + "safari": 1, + "saltstack": 1, + "available": 1, + "server": 1, + "rendering": 1, + "htmlfile": 1, + "theorem": 1, + "social": 1, + "internationalisation": 1, + "definition": 1, + "enquire": 1, + "packaging": 1, + "lang-r": 1, + "regression": 1, + "container": 1, + "opencollective": 1, + "report": 1, + "performance": 1, + "clickup": 1, + "installer": 1, + "statement": 1, + "gcp": 1, + "opinion": 1, + "accepted": 1, + "html": 1, + "a": 0.12814453124999997, + "y": 2, + "general": 1, + "js": 1, + "unit": 1, + "speak": 1, + "brainstorming": 1, + "backup": 1, + "language": 1, + "bugfix": 1, + "k": 1, + "s": 1, + "scrum": 1, + "paper": 1, + "library": 1, + "stale": 1, + "optimization": 1, + "show": 1, + "apple": 1, + "low": 1, + "functions": 1, + "gnu": 1, + "linux": 1, + "dependency-update": 1, + "related": 1, + "bootstrap": 1, + "usability": 4.365574568510074e-11, + "*nix": 1, + "externs": 1, + "critique": 1, + "prince": 1, + "demonstration": 1, + "⬆️": 1, + "memo": 1, + "revisitinfuture": 1, + "tips": 1, + "reference": 1, + "high": 1, + "bug-report": 1, + "babel": 1, + "flashsocket": 1, + "unix": 1, + "npm": 1, + "site": 1, + "chore": 1, + "adapter": 1, + "slides": 1, + "query": 1, + "chat": 1, + "major": 1, + "alpha": 1, + "lock": 1, + "security": 1, + "newsletter": 1, + "verification": 1, + "color": 1, + "containerd": 1, + "doughnut": 1, + "sentry": 1, + "dissertation": 1, + "mentoring": 1, + "confer": 1, + "utilities": 1, + "infosec": 1, + "vulnerability": 1, + "has": 1, + "code": 1, + "teaching": 1, + "protection": 1, + "robot": 1, + "android": 1, + "webaim": 1, + "wontfix": 1, + "triage": 1, + "contribution": 1, + "macos": 1, + "assertion": 1, + "blog": 1, + "progress": 1, + "future": 1, + "architecture": 1, + "enhancements": 1, + "pmi": 1, + "promotion": 1, + "validation": 1, + "art": 1, + "film": 1, + "bitbucket": 1, + "cloud": 1, + "labour": 1, + "python": 1, + "suggestion": 1, + "crypto": 1, + "electron": 1, + "trial": 1, + "example": 1, + "resolution": 1, + "redirect": 1, + "assessment": 1, + "monitor": 1, + "css": 1, + "hack": 1, + "translation": 1, + "opportunity": 1, + "vultr": 1, + "kubernetes": 1, + "wiki": 1, + "parser": 1, + "pwa": 1, + "iphone": 1, + "program": 1, + "finding": 1, + "digital": 1, + "ocean": 1, + "safeguard": 1, + "iac": 1, + "javascript": 1, + "integration": 1, + "glo": 1, + "porting": 1, + "on": 1, + "hold": 1, + "evaluation": 1, + "go": 5.831999999999998, + "must-triage": 1, + "gradle": 1, + "accessibility": 1, + "work": 1, + "other": 1, + "wrangling": 1, + "sast": 1, + "tech-debt": 1, + "entry": 1, + "fault": 1, + "problem": 1, + "brand": 1, + "internal-issue-created": 1, + "pmp": 1, + "bdd": 1, + "checkpoint": 1, + "csharp": 1, + "unreviewed": 1, + "idea": 1, + "feedback": 1, + "requested": 1, + "wcag": 1, + "bugs": 1, + "mentor": 1, + "economics": 1, + "lib": 1, + "puppet": 1, + "speech": 1.7999999999999998, + "balloon": 1.7999999999999998, + "behavioral": 0.140625, + "b": 0.019775390625, + "c": 2, + "c++": 2, + "bulb": 1, + "prometheus": 1, + "rocket": 2, + "discuss": 1.7999999999999998, + "doc": 1, + "blogs": 1, + "unit-mocha": 1, + "enterprise": 1, + "scheduler": 1, + "class": 1.875, + "fields": 1.875, + "commercial": 1, + "infra": 1, + "terraform": 1, + "figure": 1, + "layout": 1, + "specification": 1, + "vector": 2, + "greenkeeper": 1, + "tdd": 1, + "raster": 1, + "mishap": 1, + "sketch": 1, + "released": 1, + "font": 2, + "deployment": 2, + "e-nightwatch": 1, + "engine": 2, + "vulns": 2, + "syntax": 1, + "deliverable": 1, + "manual": 1, + "osx": 2, + "axe": 1, + "sendgrid": 1, + "operating": 2, + "system": 2, + "advance": 1, + "workflow": 1, + "safety": 1, + "phonetic": 1, + "concept": 1, + "lerna": 1, + "readme": 1, + "music": 1, + "failing": 3.2399999999999993, + "customer": 1, + "extension": 1, + "lint": 1, + "optimizing": 1, + "compiler": 1, + "css-select": 1, + "figma": 1, + "finance": 1, + "closed": 1.7999999999999998, + "due": 1.7999999999999998, + "inactivity": 1.7999999999999998, + "jira": 1, + "survey": 1, + "multi": 1, + "module": 1, + "mixing": 1, + "backlog": 1, + "update": 1, + "present": 1, + "modules": 1, + "lang-julia": 1, + "vuln": 1, + "demo": 1, + "corporate": 1, + "spam": 1, + "handshakes": 1, + "platform": 1, + "wave": 1, + "ansible": 1, + "lang-convert": 1, + "gdpr": 1, + "classes": 1, + "websocket": 1, + "speach": 1, + "chef": 1, + "patreon": 1, + "reviewed-changes-requested": 1, + "youtube": 1, + "(legacy)": 1, + "mentorship": 1, + "typescript": 1, + "didactic": 1, + "story": 1, + "academia": 1 + }, + "positive_weights_sum": {}, + "negative_weights_sum": {} + } + }, + "pastTrainingSamples": [ + { + "input": "component: developer tools", + "output": [ + "tool" + ] + }, + { + "input": "inspiration", + "output": [ + "ideas" + ] + }, + { + "input": "business process", + "output": [ + "business" + ] + }, + { + "input": "sustain", + "output": [ + "maintenance" + ] + }, + { + "input": "confirmed", + "output": [ + "null" + ] + }, + { + "input": "type: question :grey_question:", + "output": [ + "question" + ] + }, + { + "input": "cmty:question", + "output": [ + "question" + ] + }, + { + "input": "need-info", + "output": [ + "null" + ] + }, + { + "input": "sustenance", + "output": [ + "maintenance" + ] + }, + { + "input": "good first issue", + "output": [ + "null" + ] + }, + { + "input": "kind/discussion", + "output": [ + "ideas" + ] + }, + { + "input": "palette", + "output": [ + "design" + ] + }, + { + "input": "azure ad", + "output": [ + "infra" + ] + }, + { + "input": "data collection", + "output": [ + "data" + ] + }, + { + "input": "external-bugs", + "output": [ + "bug" + ] + }, + { + "input": "deal", + "output": [ + "business" + ] + }, + { + "input": "hacking", + "output": [ + "security" + ] + }, + { + "input": "kind/question", + "output": [ + "question" + ] + }, + { + "input": "video", + "output": [ + "video" + ] + }, + { + "input": "component: test utils", + "output": [ + "test" + ] + }, + { + "input": "hsv", + "output": [ + "design" + ] + }, + { + "input": "thesis", + "output": [ + "content" + ] + }, + { + "input": "pentesting", + "output": [ + "security" + ] + }, + { + "input": "design", + "output": [ + "design" + ] + }, + { + "input": "website copy", + "output": [ + "content" + ] + }, + { + "input": "type: bug :bug:", + "output": [ + "bug" + ] + }, + { + "input": "guide", + "output": [ + "tutorial" + ] + }, + { + "input": "next meetup!", + "output": [ + "eventOrganizing" + ] + }, + { + "input": "feat: ui", + "output": [ + "design" + ] + }, + { + "input": "mastering", + "output": [ + "audio" + ] + }, + { + "input": "steps", + "output": [ + "doc" + ] + }, + { + "input": "abandoned", + "output": [ + "null" + ] + }, + { + "input": "badges", + "output": [ + "doc" + ] + }, + { + "input": "sponsor", + "output": [ + "mentoring" + ] + }, + { + "input": "assess", + "output": [ + "test" + ] + }, + { + "input": "pr: merged", + "output": [ + "null" + ] + }, + { + "input": "vlog", + "output": [ + "video" + ] + }, + { + "input": "acceptance testing", + "output": [ + "test" + ] + }, + { + "input": "hot discussion", + "output": [ + "ideas" + ] + }, + { + "input": "tv", + "output": [ + "video" + ] + }, + { + "input": "soundtrack", + "output": [ + "audio" + ] + }, + { + "input": "design (category)", + "output": [ + "design" + ] + }, + { + "input": "ci/cd", + "output": [ + "infra" + ] + }, + { + "input": "multi-cloud", + "output": [ + "infra" + ] + }, + { + "input": "funding finder", + "output": [ + "fundingFinding" + ] + }, + { + "input": "difficulty: hard", + "output": [ + "null" + ] + }, + { + "input": "documentation :book:", + "output": [ + "doc" + ] + }, + { + "input": "diary", + "output": [ + "blog" + ] + }, + { + "input": "standard", + "output": [ + "doc" + ] + }, + { + "input": "colour", + "output": [ + "design" + ] + }, + { + "input": ":computer: desktop", + "output": [ + "platform" + ] + }, + { + "input": "flaw", + "output": [ + "bug" + ] + }, + { + "input": "reliability", + "output": [ + "maintenance" + ] + }, + { + "input": "feat: cli-service build", + "output": [ + "code" + ] + }, + { + "input": "blocked", + "output": [ + "null" + ] + }, + { + "input": "type: maintenance :construction:", + "output": [ + "maintenance" + ] + }, + { + "input": "ios", + "output": [ + "platform" + ] + }, + { + "input": "planned feature", + "output": [ + "ideas" + ] + }, + { + "input": "kind/feature-request", + "output": [ + "ideas" + ] + }, + { + "input": "rfc", + "output": [ + "ideas" + ] + }, + { + "input": "image", + "output": [ + "design" + ] + }, + { + "input": "stock", + "output": [ + "infra" + ] + }, + { + "input": "reminder", + "output": [ + "null" + ] + }, + { + "input": "status: review needed", + "output": [ + "null" + ] + }, + { + "input": "in review", + "output": [ + "null" + ] + }, + { + "input": "lang-crystal", + "output": [ + "code" + ] + }, + { + "input": "pr: breaking change", + "output": [ + "code" + ] + }, + { + "input": "phone", + "output": [ + "platform" + ] + }, + { + "input": "refactor", + "output": [ + "code" + ] + }, + { + "input": "monologue", + "output": [ + "talk" + ] + }, + { + "input": "pr: reviewed-approved", + "output": [ + "null" + ] + }, + { + "input": "new best practice", + "output": [ + "ideas" + ] + }, + { + "input": "lecture", + "output": [ + "tutorial" + ] + }, + { + "input": "backing", + "output": [ + "financial" + ] + }, + { + "input": "website", + "output": [ + "code" + ] + }, + { + "input": "browser issue", + "output": [ + "bug" + ] + }, + { + "input": "aws", + "output": [ + "infra" + ] + }, + { + "input": "pr: polish :nail_care:", + "output": [ + "maintenance" + ] + }, + { + "input": "article", + "output": [ + "content" + ] + }, + { + "input": "peer-review", + "output": [ + "review" + ] + }, + { + "input": "writer-needed", + "output": [ + "null" + ] + }, + { + "input": "eventstorming", + "output": [ + "ideas" + ] + }, + { + "input": "freemasonry icons", + "output": [ + "design" + ] + }, + { + "input": "lean", + "output": [ + "projectManagement" + ] + }, + { + "input": "cannot reproduce", + "output": [ + "null" + ] + }, + { + "input": "paas", + "output": [ + "platform" + ] + }, + { + "input": ".net core", + "output": [ + "code" + ] + }, + { + "input": "wiretap", + "output": [ + "security" + ] + }, + { + "input": "feat: unit-jest", + "output": [ + "test" + ] + }, + { + "input": "instruction", + "output": [ + "doc" + ] + }, + { + "input": "infrastructure", + "output": [ + "infra" + ] + }, + { + "input": "rgb", + "output": [ + "design" + ] + }, + { + "input": "ideas", + "output": [ + "ideas" + ] + }, + { + "input": "target:windows", + "output": [ + "platform" + ] + }, + { + "input": "funding call", + "output": [ + "fundingFinding" + ] + }, + { + "input": "iconography", + "output": [ + "design" + ] + }, + { + "input": "promote", + "output": [ + "promotion" + ] + }, + { + "input": "template", + "output": [ + "example" + ] + }, + { + "input": "support", + "output": [ + "null" + ] + }, + { + "input": "first-timers-only", + "output": [ + "null" + ] + }, + { + "input": "java", + "output": [ + "code" + ] + }, + { + "input": "cdn", + "output": [ + "platform" + ] + }, + { + "input": "pr: new dependency", + "output": [ + "ideas" + ] + }, + { + "input": "status: ready for deploy", + "output": [ + "null" + ] + }, + { + "input": "computer", + "output": [ + "platform" + ] + }, + { + "input": "troubleshooting", + "output": [ + "bug" + ] + }, + { + "input": "spec: bigint", + "output": [ + "doc" + ] + }, + { + "input": "spec: async generators", + "output": [ + "doc" + ] + }, + { + "input": "feature proposal", + "output": [ + "ideas" + ] + }, + { + "input": "e2e test", + "output": [ + "test" + ] + }, + { + "input": "approachability", + "output": [ + "a11y" + ] + }, + { + "input": "investment", + "output": [ + "financial" + ] + }, + { + "input": "conflicts", + "output": [ + "null" + ] + }, + { + "input": "optimisation", + "output": [ + "code" + ] + }, + { + "input": "kotlin", + "output": [ + "code" + ] + }, + { + "input": "planned for next release", + "output": [ + "null" + ] + }, + { + "input": "unconfirmed", + "output": [ + "null" + ] + }, + { + "input": "type: duplicate :repeat:", + "output": [ + "null" + ] + }, + { + "input": "devops: defend", + "output": [ + "infra" + ] + }, + { + "input": "blogging", + "output": [ + "blog" + ] + }, + { + "input": "friendliness", + "output": [ + "a11y" + ] + }, + { + "input": "i18n", + "output": [ + "translation" + ] + }, + { + "input": "cla signed", + "output": [ + "null" + ] + }, + { + "input": "icebox", + "output": [ + "platform" + ] + }, + { + "input": "meetup", + "output": [ + "eventOrganizing" + ] + }, + { + "input": "examination", + "output": [ + "test" + ] + }, + { + "input": "mobile device support", + "output": [ + "platform" + ] + }, + { + "input": "component: component api", + "output": [ + "code" + ] + }, + { + "input": "spec: decorators", + "output": [ + "doc" + ] + }, + { + "input": "addon", + "output": [ + "plugin" + ] + }, + { + "input": "cracking", + "output": [ + "security" + ] + }, + { + "input": ":sparkles: enhancement", + "output": [ + "maintenance" + ] + }, + { + "input": "component: hooks", + "output": [ + "code" + ] + }, + { + "input": "improved error handling", + "output": [ + "code" + ] + }, + { + "input": "needs repro", + "output": [ + "null" + ] + }, + { + "input": "upkeep", + "output": [ + "maintenance" + ] + }, + { + "input": "component: reactis", + "output": [ + "code" + ] + }, + { + "input": "pr: ready to be merged", + "output": [ + "null" + ] + }, + { + "input": "sample", + "output": [ + "example" + ] + }, + { + "input": ":white_check_mark: testing", + "output": [ + "test" + ] + }, + { + "input": "maintenance", + "output": [ + "maintenance" + ] + }, + { + "input": "external", + "output": [ + "plugin" + ] + }, + { + "input": "desktop", + "output": [ + "platform" + ] + }, + { + "input": "hacktoberfest", + "output": [ + "code" + ] + }, + { + "input": "data", + "output": [ + "data" + ] + }, + { + "input": "lang-dart", + "output": [ + "code" + ] + }, + { + "input": ".net framework", + "output": [ + "code" + ] + }, + { + "input": "icon", + "output": [ + "design" + ] + }, + { + "input": "grant finder", + "output": [ + "fundingFinding" + ] + }, + { + "input": "needs-research", + "output": [ + "null" + ] + }, + { + "input": "cybersec", + "output": [ + "security" + ] + }, + { + "input": "biz", + "output": [ + "business" + ] + }, + { + "input": "internationalization", + "output": [ + "translation" + ] + }, + { + "input": "utility-lib", + "output": [ + "plugin" + ] + }, + { + "input": "qa", + "output": [ + "test" + ] + }, + { + "input": "do not merge", + "output": [ + "null" + ] + }, + { + "input": "hacked", + "output": [ + "security" + ] + }, + { + "input": "how-to", + "output": [ + "tutorial" + ] + }, + { + "input": "beginner-friendly", + "output": [ + "null" + ] + }, + { + "input": "trello", + "output": [ + "projectManagement" + ] + }, + { + "input": "os", + "output": [ + "platform" + ] + }, + { + "input": "sound", + "output": [ + "audio" + ] + }, + { + "input": "docs improvement", + "output": [ + "doc" + ] + }, + { + "input": ":heavy_plus_sign: feature request", + "output": [ + "ideas" + ] + }, + { + "input": "glitch", + "output": [ + "bug" + ] + }, + { + "input": "cx", + "output": [ + "design" + ] + }, + { + "input": "dependencies", + "output": [ + "maintenance" + ] + }, + { + "input": "inquiry", + "output": [ + "question" + ] + }, + { + "input": "deno", + "output": [ + "platform" + ] + }, + { + "input": "area: crash", + "output": [ + "bug" + ] + }, + { + "input": "camera", + "output": [ + "video" + ] + }, + { + "input": "pr: wip", + "output": [ + "null" + ] + }, + { + "input": "devops: configure", + "output": [ + "infra" + ] + }, + { + "input": "component: dom", + "output": [ + "code" + ] + }, + { + "input": "programming", + "output": [ + "code" + ] + }, + { + "input": "test needed", + "output": [ + "null" + ] + }, + { + "input": "question :question:", + "output": [ + "question" + ] + }, + { + "input": "@font-face", + "output": [ + "design" + ] + }, + { + "input": "rgba", + "output": [ + "design" + ] + }, + { + "input": "parser-specific", + "output": [ + "tool" + ] + }, + { + "input": "pr: new feature", + "output": [ + "ideas" + ] + }, + { + "input": "wikipedia", + "output": [ + "doc" + ] + }, + { + "input": "shell", + "output": [ + "tool" + ] + }, + { + "input": "cmty:feature-request", + "output": [ + "ideas" + ] + }, + { + "input": "contributions", + "output": [ + "maintenance" + ] + }, + { + "input": "tryout", + "output": [ + "test" + ] + }, + { + "input": "needs review", + "output": [ + "null" + ] + }, + { + "input": "thought", + "output": [ + "ideas" + ] + }, + { + "input": "kind/bug", + "output": [ + "bug" + ] + }, + { + "input": "data analysis", + "output": [ + "data" + ] + }, + { + "input": "contenu", + "output": [ + "content" + ] + }, + { + "input": "feat/cli", + "output": [ + "code" + ] + }, + { + "input": "fund investigation", + "output": [ + "fundingFinding" + ] + }, + { + "input": "type: question", + "output": [ + "question" + ] + }, + { + "input": "type: enhancement", + "output": [ + "maintenance" + ] + }, + { + "input": "basecamp", + "output": [ + "projectManagement" + ] + }, + { + "input": "literature review", + "output": [ + "research" + ] + }, + { + "input": "needs docs", + "output": [ + "null" + ] + }, + { + "input": "socket.io client", + "output": [ + "tool" + ] + }, + { + "input": "fiscal", + "output": [ + "financial" + ] + }, + { + "input": "user testing", + "output": [ + "userTesting" + ] + }, + { + "input": "debug information", + "output": [ + "bug" + ] + }, + { + "input": "frontend", + "output": [ + "code" + ] + }, + { + "input": "area/cli", + "output": [ + "infra" + ] + }, + { + "input": "upstream", + "output": [ + "null" + ] + }, + { + "input": "question :raising_hand:", + "output": [ + "question" + ] + }, + { + "input": "style", + "output": [ + "design" + ] + }, + { + "input": "clean up", + "output": [ + "maintenance" + ] + }, + { + "input": "motif", + "output": [ + "design" + ] + }, + { + "input": "to merge", + "output": [ + "null" + ] + }, + { + "input": "event", + "output": [ + "eventOrganizing" + ] + }, + { + "input": "status: help wanted", + "output": [ + "null" + ] + }, + { + "input": "priority: medium", + "output": [ + "null" + ] + }, + { + "input": "financial backing", + "output": [ + "fundingFinding" + ] + }, + { + "input": "ruby", + "output": [ + "code" + ] + }, + { + "input": "es7", + "output": [ + "code" + ] + }, + { + "input": "warrant", + "output": [ + "security" + ] + }, + { + "input": "cmty:status:cancelled", + "output": [ + "null" + ] + }, + { + "input": "plan", + "output": [ + "ideas" + ] + }, + { + "input": "hackathon", + "output": [ + "code" + ] + }, + { + "input": ":beginner: documentation", + "output": [ + "doc" + ] + }, + { + "input": "typography", + "output": [ + "design" + ] + }, + { + "input": "counsel", + "output": [ + "mentoring" + ] + }, + { + "input": "recording", + "output": [ + "audio" + ] + }, + { + "input": "crowdin", + "output": [ + "translation" + ] + }, + { + "input": "component: eslint rules", + "output": [ + "maintenance" + ] + }, + { + "input": "difficulty: easy", + "output": [ + "null" + ] + }, + { + "input": "repare", + "output": [ + "maintenance" + ] + }, + { + "input": "conference", + "output": [ + "eventOrganizing" + ] + }, + { + "input": "great insight", + "output": [ + "ideas" + ] + }, + { + "input": "phd", + "output": [ + "research" + ] + }, + { + "input": "documentation :orange_book:", + "output": [ + "doc" + ] + }, + { + "input": "type: invalid :x:", + "output": [ + "null" + ] + }, + { + "input": "needs changelog", + "output": [ + "null" + ] + }, + { + "input": "feat: e2e-cypress", + "output": [ + "test" + ] + }, + { + "input": ":lipstick: ui", + "output": [ + "design" + ] + }, + { + "input": "1 - ready", + "output": [ + "null" + ] + }, + { + "input": "backdoor", + "output": [ + "security" + ] + }, + { + "input": "fund collection", + "output": [ + "fundingFinding" + ] + }, + { + "input": "approved", + "output": [ + "null" + ] + }, + { + "input": "talk", + "output": [ + "talk" + ] + }, + { + "input": "subtitle", + "output": [ + "translation" + ] + }, + { + "input": "funding research", + "output": [ + "fundingFinding" + ] + }, + { + "input": "todo :spiral_notepad:", + "output": [ + "maintenance" + ] + }, + { + "input": "review", + "output": [ + "review" + ] + }, + { + "input": "user interface", + "output": [ + "design" + ] + }, + { + "input": "critical", + "output": [ + "null" + ] + }, + { + "input": "business (category)", + "output": [ + "business" + ] + }, + { + "input": "privacy", + "output": [ + "security" + ] + }, + { + "input": "tests", + "output": [ + "test" + ] + }, + { + "input": "duplicate", + "output": [ + "null" + ] + }, + { + "input": "pr: breaking change :boom:", + "output": [ + "code" + ] + }, + { + "input": "web app", + "output": [ + "code" + ] + }, + { + "input": "test", + "output": [ + "test" + ] + }, + { + "input": "check", + "output": [ + "review" + ] + }, + { + "input": "documentation", + "output": [ + "doc" + ] + }, + { + "input": "television", + "output": [ + "video" + ] + }, + { + "input": "uat", + "output": [ + "test" + ] + }, + { + "input": "backer", + "output": [ + "financial" + ] + }, + { + "input": "exploit", + "output": [ + "security" + ] + }, + { + "input": "requires upstream change", + "output": [ + "code" + ] + }, + { + "input": "travis-yml", + "output": [ + "infra" + ] + }, + { + "input": "node", + "output": [ + "platform" + ] + }, + { + "input": "dev experience", + "output": [ + "design" + ] + }, + { + "input": "pr: bug fix", + "output": [ + "bug" + ] + }, + { + "input": "backend", + "output": [ + "code" + ] + }, + { + "input": "data cleaning", + "output": [ + "data" + ] + }, + { + "input": "pr: internal :house:", + "output": [ + "code" + ] + }, + { + "input": ":question: question", + "output": [ + "question" + ] + }, + { + "input": "technical debt", + "output": [ + "maintenance" + ] + }, + { + "input": "core", + "output": [ + "maintenance" + ] + }, + { + "input": "client test", + "output": [ + "userTesting" + ] + }, + { + "input": "weekly-digest", + "output": [ + "blog" + ] + }, + { + "input": "component: shallow renderer", + "output": [ + "code" + ] + }, + { + "input": "commerce", + "output": [ + "business" + ] + }, + { + "input": "browser: ie", + "output": [ + "platform" + ] + }, + { + "input": "hsl", + "output": [ + "design" + ] + }, + { + "input": "status: left out", + "output": [ + "null" + ] + }, + { + "input": ".net standard", + "output": [ + "code" + ] + }, + { + "input": "pr welcome", + "output": [ + "null" + ] + }, + { + "input": "opinions needed", + "output": [ + "ideas" + ] + }, + { + "input": "documents", + "output": [ + "doc" + ] + }, + { + "input": "legacy", + "output": [ + "maintenance" + ] + }, + { + "input": "grafana", + "output": [ + "infra" + ] + }, + { + "input": "react native", + "output": [ + "code" + ] + }, + { + "input": "lang-go", + "output": [ + "code" + ] + }, + { + "input": "tutorial", + "output": [ + "tutorial" + ] + }, + { + "input": "plugin", + "output": [ + "plugin" + ] + }, + { + "input": "logo", + "output": [ + "design" + ] + }, + { + "input": ":grey_question: question", + "output": [ + "question" + ] + }, + { + "input": "refactoring", + "output": [ + "code" + ] + }, + { + "input": "browser: safari", + "output": [ + "platform" + ] + }, + { + "input": "saltstack", + "output": [ + "infra" + ] + }, + { + "input": "status: available", + "output": [ + "null" + ] + }, + { + "input": "component: server rendering", + "output": [ + "code" + ] + }, + { + "input": "htmlfile", + "output": [ + "code" + ] + }, + { + "input": "theorem", + "output": [ + "ideas" + ] + }, + { + "input": "social", + "output": [ + "eventOrganizing" + ] + }, + { + "input": "internationalisation", + "output": [ + "translation" + ] + }, + { + "input": "definition:enhancement", + "output": [ + "maintenance" + ] + }, + { + "input": "enquire", + "output": [ + "question" + ] + }, + { + "input": "packaging", + "output": [ + "platform" + ] + }, + { + "input": "lang-r", + "output": [ + "code" + ] + }, + { + "input": "type: regression :boom:", + "output": [ + "bug" + ] + }, + { + "input": "regression test", + "output": [ + "test" + ] + }, + { + "input": "new api proposal", + "output": [ + "ideas" + ] + }, + { + "input": "container", + "output": [ + "infra" + ] + }, + { + "input": "opencollective", + "output": [ + "financial" + ] + }, + { + "input": "bug report", + "output": [ + "bug" + ] + }, + { + "input": "type: performance", + "output": [ + "maintenance" + ] + }, + { + "input": "new definition", + "output": [ + "code" + ] + }, + { + "input": "pr: documentation", + "output": [ + "doc" + ] + }, + { + "input": ":boom: regression", + "output": [ + "bug" + ] + }, + { + "input": "clickup", + "output": [ + "projectManagement" + ] + }, + { + "input": "docs", + "output": [ + "doc" + ] + }, + { + "input": "installer", + "output": [ + "tool" + ] + }, + { + "input": "statement", + "output": [ + "ideas" + ] + }, + { + "input": "gcp", + "output": [ + "infra" + ] + }, + { + "input": "bug", + "output": [ + "bug" + ] + }, + { + "input": "opinion", + "output": [ + "ideas" + ] + }, + { + "input": "accepted", + "output": [ + "null" + ] + }, + { + "input": "html", + "output": [ + "code" + ] + }, + { + "input": "a11y", + "output": [ + "a11y" + ] + }, + { + "input": "general js", + "output": [ + "code" + ] + }, + { + "input": "unit test", + "output": [ + "test" + ] + }, + { + "input": "speak", + "output": [ + "talk" + ] + }, + { + "input": "brainstorming", + "output": [ + "ideas" + ] + }, + { + "input": "backup", + "output": [ + "maintenance" + ] + }, + { + "input": "status: accepted", + "output": [ + "null" + ] + }, + { + "input": "language", + "output": [ + "translation" + ] + }, + { + "input": "bugfix", + "output": [ + "bug" + ] + }, + { + "input": "question", + "output": [ + "question" + ] + }, + { + "input": "k8s", + "output": [ + "infra" + ] + }, + { + "input": "scrum", + "output": [ + "projectManagement" + ] + }, + { + "input": "paper", + "output": [ + "content" + ] + }, + { + "input": "upstream bug", + "output": [ + "bug" + ] + }, + { + "input": "library", + "output": [ + "tool" + ] + }, + { + "input": "stale", + "output": [ + "null" + ] + }, + { + "input": "testing", + "output": [ + "test" + ] + }, + { + "input": "optimization", + "output": [ + "code" + ] + }, + { + "input": "tv show", + "output": [ + "video" + ] + }, + { + "input": ":apple: ios", + "output": [ + "platform" + ] + }, + { + "input": "priority: low", + "output": [ + "null" + ] + }, + { + "input": "spec: async functions", + "output": [ + "doc" + ] + }, + { + "input": "target:gnu/linux", + "output": [ + "platform" + ] + }, + { + "input": "focus groups", + "output": [ + "userTesting" + ] + }, + { + "input": "dependency-update", + "output": [ + "maintenance" + ] + }, + { + "input": "dependency related", + "output": [ + "maintenance" + ] + }, + { + "input": "wip", + "output": [ + "null" + ] + }, + { + "input": "bootstrap", + "output": [ + "tool" + ] + }, + { + "input": "developer experience", + "output": [ + "design" + ] + }, + { + "input": "breaking change", + "output": [ + "code" + ] + }, + { + "input": "usability", + "output": [ + "a11y" + ] + }, + { + "input": "*nix", + "output": [ + "platform" + ] + }, + { + "input": "externs", + "output": [ + "plugin" + ] + }, + { + "input": "critique", + "output": [ + "review" + ] + }, + { + "input": "prince2", + "output": [ + "projectManagement" + ] + }, + { + "input": "demonstration", + "output": [ + "example" + ] + }, + { + "input": "pr: dependency ⬆️", + "output": [ + "maintenance" + ] + }, + { + "input": "pr: docs :memo:", + "output": [ + "doc" + ] + }, + { + "input": "windows", + "output": [ + "platform" + ] + }, + { + "input": "revisitinfuture", + "output": [ + "ideas" + ] + }, + { + "input": "tips", + "output": [ + "ideas" + ] + }, + { + "input": "reference", + "output": [ + "example" + ] + }, + { + "input": "priority: high", + "output": [ + "null" + ] + }, + { + "input": "cmty:bug-report", + "output": [ + "bug" + ] + }, + { + "input": "feat: babel", + "output": [ + "tool" + ] + }, + { + "input": "flashsocket", + "output": [ + "tool" + ] + }, + { + "input": "target:unix", + "output": [ + "platform" + ] + }, + { + "input": "npm", + "output": [ + "infra" + ] + }, + { + "input": "site reliability", + "output": [ + "maintenance" + ] + }, + { + "input": "enhancement", + "output": [ + "maintenance" + ] + }, + { + "input": "chore", + "output": [ + "maintenance" + ] + }, + { + "input": "adapter", + "output": [ + "plugin" + ] + }, + { + "input": "slides", + "output": [ + "talk" + ] + }, + { + "input": "query", + "output": [ + "question" + ] + }, + { + "input": "feature", + "output": [ + "ideas" + ] + }, + { + "input": "chat (category)", + "output": [ + "ideas" + ] + }, + { + "input": "major", + "output": [ + "null" + ] + }, + { + "input": "release: alpha", + "output": [ + "null" + ] + }, + { + "input": ":lock: security", + "output": [ + "security" + ] + }, + { + "input": "newsletter", + "output": [ + "content" + ] + }, + { + "input": "verification", + "output": [ + "test" + ] + }, + { + "input": "color", + "output": [ + "design" + ] + }, + { + "input": "containerd", + "output": [ + "infra" + ] + }, + { + "input": ":doughnut: enhancement", + "output": [ + "maintenance" + ] + }, + { + "input": "sentry", + "output": [ + "infra" + ] + }, + { + "input": "dissertation", + "output": [ + "research" + ] + }, + { + "input": "mentoring", + "output": [ + "mentoring" + ] + }, + { + "input": "confer", + "output": [ + "talk" + ] + }, + { + "input": "component: core utilities", + "output": [ + "maintenance" + ] + }, + { + "input": "infosec", + "output": [ + "security" + ] + }, + { + "input": "vulnerability", + "output": [ + "security" + ] + }, + { + "input": "has pr", + "output": [ + "null" + ] + }, + { + "input": "status: code review request", + "output": [ + "null" + ] + }, + { + "input": "teaching", + "output": [ + "tutorial" + ] + }, + { + "input": "target:ios", + "output": [ + "platform" + ] + }, + { + "input": "protection", + "output": [ + "security" + ] + }, + { + "input": ":robot: android", + "output": [ + "platform" + ] + }, + { + "input": "type: documentation :book:", + "output": [ + "doc" + ] + }, + { + "input": "webaim", + "output": [ + "a11y" + ] + }, + { + "input": "wontfix", + "output": [ + "null" + ] + }, + { + "input": "needs triage", + "output": [ + "null" + ] + }, + { + "input": "contribution welcome", + "output": [ + "null" + ] + }, + { + "input": "target:macos", + "output": [ + "platform" + ] + }, + { + "input": "assertion", + "output": [ + "test" + ] + }, + { + "input": "blog", + "output": [ + "blog" + ] + }, + { + "input": "review in progress", + "output": [ + "null" + ] + }, + { + "input": "node next", + "output": [ + "platform" + ] + }, + { + "input": "future architecture enhancements", + "output": [ + "ideas" + ] + }, + { + "input": "pmi", + "output": [ + "projectManagement" + ] + }, + { + "input": "promotion", + "output": [ + "promotion" + ] + }, + { + "input": "validation", + "output": [ + "review" + ] + }, + { + "input": "art", + "output": [ + "design" + ] + }, + { + "input": "film", + "output": [ + "video" + ] + }, + { + "input": "bitbucket cloud", + "output": [ + "infra" + ] + }, + { + "input": "labour", + "output": [ + "maintenance" + ] + }, + { + "input": "python", + "output": [ + "code" + ] + }, + { + "input": "suggestion", + "output": [ + "ideas" + ] + }, + { + "input": "future crypto enhancements", + "output": [ + "ideas" + ] + }, + { + "input": "attitudinal user testing", + "output": [ + "userTesting" + ] + }, + { + "input": "electron", + "output": [ + "tool" + ] + }, + { + "input": "trial", + "output": [ + "test" + ] + }, + { + "input": "definition:request", + "output": [ + "ideas" + ] + }, + { + "input": "pr: good example", + "output": [ + "example" + ] + }, + { + "input": "data protection", + "output": [ + "security" + ] + }, + { + "input": "resolution: support redirect", + "output": [ + "null" + ] + }, + { + "input": "cloud", + "output": [ + "infra" + ] + }, + { + "input": "target:android", + "output": [ + "platform" + ] + }, + { + "input": "assessment", + "output": [ + "test" + ] + }, + { + "input": "monitor", + "output": [ + "maintenance" + ] + }, + { + "input": "css", + "output": [ + "code" + ] + }, + { + "input": "hack", + "output": [ + "code" + ] + }, + { + "input": "translation", + "output": [ + "translation" + ] + }, + { + "input": "research opportunity", + "output": [ + "research" + ] + }, + { + "input": "vultr", + "output": [ + "infra" + ] + }, + { + "input": "kubernetes", + "output": [ + "infra" + ] + }, + { + "input": "discussion", + "output": [ + "ideas" + ] + }, + { + "input": "needs a example app.", + "output": [ + "null" + ] + }, + { + "input": "wiki", + "output": [ + "doc" + ] + }, + { + "input": "parser", + "output": [ + "tool" + ] + }, + { + "input": "feat: pwa", + "output": [ + "code" + ] + }, + { + "input": ":iphone: mobile", + "output": [ + "platform" + ] + }, + { + "input": "program", + "output": [ + "platform" + ] + }, + { + "input": "backer finding", + "output": [ + "fundingFinding" + ] + }, + { + "input": "digital ocean", + "output": [ + "infra" + ] + }, + { + "input": "safeguard", + "output": [ + "security" + ] + }, + { + "input": "iac", + "output": [ + "infra" + ] + }, + { + "input": "javascript", + "output": [ + "code" + ] + }, + { + "input": "integration test", + "output": [ + "test" + ] + }, + { + "input": "glo", + "output": [ + "projectManagement" + ] + }, + { + "input": "porting", + "output": [ + "platform" + ] + }, + { + "input": "status: on hold", + "output": [ + "null" + ] + }, + { + "input": "status: hacktoberfest approved", + "output": [ + "null" + ] + }, + { + "input": "evaluation", + "output": [ + "test" + ] + }, + { + "input": "go client internal release", + "output": [ + "infra" + ] + }, + { + "input": "type: test", + "output": [ + "test" + ] + }, + { + "input": "must-triage", + "output": [ + "null" + ] + }, + { + "input": "gradle", + "output": [ + "infra" + ] + }, + { + "input": "accessibility", + "output": [ + "a11y" + ] + }, + { + "input": "status: work in progress", + "output": [ + "null" + ] + }, + { + "input": "other language integration feature", + "output": [ + "ideas" + ] + }, + { + "input": "difficulty: medium", + "output": [ + "null" + ] + }, + { + "input": "data wrangling", + "output": [ + "data" + ] + }, + { + "input": "sast", + "output": [ + "security" + ] + }, + { + "input": "tech-debt", + "output": [ + "maintenance" + ] + }, + { + "input": "data entry", + "output": [ + "data" + ] + }, + { + "input": "fault", + "output": [ + "bug" + ] + }, + { + "input": "problem", + "output": [ + "bug" + ] + }, + { + "input": "brand icon", + "output": [ + "design" + ] + }, + { + "input": "internal-issue-created", + "output": [ + "bug" + ] + }, + { + "input": "pmp", + "output": [ + "projectManagement" + ] + }, + { + "input": "bdd", + "output": [ + "test" + ] + }, + { + "input": "checkpoint", + "output": [ + "review" + ] + }, + { + "input": "csharp", + "output": [ + "code" + ] + }, + { + "input": "pr: unreviewed", + "output": [ + "null" + ] + }, + { + "input": "component: test renderer", + "output": [ + "test" + ] + }, + { + "input": "idea", + "output": [ + "ideas" + ] + }, + { + "input": "needs browser testing", + "output": [ + "null" + ] + }, + { + "input": "status: in progress", + "output": [ + "null" + ] + }, + { + "input": "feedback requested", + "output": [ + "null" + ] + }, + { + "input": "wcag", + "output": [ + "a11y" + ] + }, + { + "input": "bugs", + "output": [ + "bug" + ] + }, + { + "input": "mentor", + "output": [ + "mentoring" + ] + }, + { + "input": "economics", + "output": [ + "financial" + ] + }, + { + "input": "lib", + "output": [ + "plugin" + ] + }, + { + "input": "puppet", + "output": [ + "infra" + ] + }, + { + "input": ":speech_balloon: question", + "output": [ + "question" + ] + }, + { + "input": "c/c++", + "output": [ + "code" + ] + }, + { + "input": "type: enhancement :bulb:", + "output": [ + "ideas" + ] + }, + { + "input": "pr: internal", + "output": [ + "code" + ] + }, + { + "input": "business", + "output": [ + "business" + ] + }, + { + "input": "prometheus", + "output": [ + "infra" + ] + }, + { + "input": "triage", + "output": [ + "null" + ] + }, + { + "input": "pr: new feature :rocket:", + "output": [ + "ideas" + ] + }, + { + "input": "type: discuss :speech_balloon:", + "output": [ + "ideas" + ] + }, + { + "input": "doc", + "output": [ + "doc" + ] + }, + { + "input": "ie8", + "output": [ + "platform" + ] + }, + { + "input": "blogs", + "output": [ + "blog" + ] + }, + { + "input": "feat: unit-mocha", + "output": [ + "test" + ] + }, + { + "input": "enterprise", + "output": [ + "business" + ] + }, + { + "input": "component: scheduler", + "output": [ + "null" + ] + }, + { + "input": "regression", + "output": [ + "bug" + ] + }, + { + "input": "spec: class fields", + "output": [ + "doc" + ] + }, + { + "input": "commercial", + "output": [ + "business" + ] + }, + { + "input": "infra", + "output": [ + "infra" + ] + }, + { + "input": "terraform", + "output": [ + "infra" + ] + }, + { + "input": "go", + "output": [ + "code" + ] + }, + { + "input": "figure", + "output": [ + "design" + ] + }, + { + "input": "layout", + "output": [ + "design" + ] + }, + { + "input": "specification", + "output": [ + "doc" + ] + }, + { + "input": "vector image", + "output": [ + "design" + ] + }, + { + "input": "greenkeeper", + "output": [ + "infra" + ] + }, + { + "input": "tdd", + "output": [ + "test" + ] + }, + { + "input": "performance", + "output": [ + "maintenance" + ] + }, + { + "input": "raster image", + "output": [ + "design" + ] + }, + { + "input": "mishap", + "output": [ + "bug" + ] + }, + { + "input": "sketch", + "output": [ + "design" + ] + }, + { + "input": "released", + "output": [ + "null" + ] + }, + { + "input": "linux", + "output": [ + "platform" + ] + }, + { + "input": "font design", + "output": [ + "design" + ] + }, + { + "input": ":rocket: deployment", + "output": [ + "infra" + ] + }, + { + "input": "feat: e2e-nightwatch", + "output": [ + "test" + ] + }, + { + "input": "type: infrastructure", + "output": [ + "infra" + ] + }, + { + "input": "engine vulns", + "output": [ + "security" + ] + }, + { + "input": "syntax feature request", + "output": [ + "ideas" + ] + }, + { + "input": "type: security", + "output": [ + "security" + ] + }, + { + "input": "deliverable", + "output": [ + "projectManagement" + ] + }, + { + "input": "manual", + "output": [ + "doc" + ] + }, + { + "input": "target:osx", + "output": [ + "platform" + ] + }, + { + "input": "axe", + "output": [ + "a11y" + ] + }, + { + "input": ":bug: bug", + "output": [ + "bug" + ] + }, + { + "input": "type: sendgrid enhancement", + "output": [ + "maintenance" + ] + }, + { + "input": "operating system", + "output": [ + "platform" + ] + }, + { + "input": "advance developer workflow", + "output": [ + "infra" + ] + }, + { + "input": "safety", + "output": [ + "security" + ] + }, + { + "input": "phonetic", + "output": [ + "audio" + ] + }, + { + "input": "to do", + "output": [ + "maintenance" + ] + }, + { + "input": "concept", + "output": [ + "ideas" + ] + }, + { + "input": "lerna", + "output": [ + "infra" + ] + }, + { + "input": "readme", + "output": [ + "doc" + ] + }, + { + "input": "security", + "output": [ + "security" + ] + }, + { + "input": "music", + "output": [ + "audio" + ] + }, + { + "input": "needs a failing test", + "output": [ + "null" + ] + }, + { + "input": "customer experience", + "output": [ + "design" + ] + }, + { + "input": "extension", + "output": [ + "plugin" + ] + }, + { + "input": "todo", + "output": [ + "maintenance" + ] + }, + { + "input": "lint", + "output": [ + "maintenance" + ] + }, + { + "input": "target:browser", + "output": [ + "platform" + ] + }, + { + "input": "feature request", + "output": [ + "ideas" + ] + }, + { + "input": "component: optimizing compiler", + "output": [ + "code" + ] + }, + { + "input": "css-select", + "output": [ + "code" + ] + }, + { + "input": "figma", + "output": [ + "tool" + ] + }, + { + "input": "finance", + "output": [ + "financial" + ] + }, + { + "input": "closed due to inactivity", + "output": [ + "null" + ] + }, + { + "input": ":rocket: feature request", + "output": [ + "ideas" + ] + }, + { + "input": "jira", + "output": [ + "projectManagement" + ] + }, + { + "input": "survey", + "output": [ + "review" + ] + }, + { + "input": "behavioral user testing", + "output": [ + "userTesting" + ] + }, + { + "input": "multi module", + "output": [ + "maintenance" + ] + }, + { + "input": "discussion :speech_balloon:", + "output": [ + "ideas" + ] + }, + { + "input": "mixing", + "output": [ + "audio" + ] + }, + { + "input": "0 - backlog", + "output": [ + "null" + ] + }, + { + "input": "update", + "output": [ + "maintenance" + ] + }, + { + "input": "present", + "output": [ + "talk" + ] + }, + { + "input": "modules", + "output": [ + "code" + ] + }, + { + "input": "lang-julia", + "output": [ + "code" + ] + }, + { + "input": "usability testing", + "output": [ + "userTesting" + ] + }, + { + "input": "vuln", + "output": [ + "security" + ] + }, + { + "input": "demo", + "output": [ + "example" + ] + }, + { + "input": "corporate event", + "output": [ + "eventOrganizing" + ] + }, + { + "input": "type: refactor", + "output": [ + "code" + ] + }, + { + "input": "spam", + "output": [ + "null" + ] + }, + { + "input": "definition:bug", + "output": [ + "bug" + ] + }, + { + "input": "help wanted", + "output": [ + "null" + ] + }, + { + "input": "type: idea", + "output": [ + "ideas" + ] + }, + { + "input": ":bulb: proposal", + "output": [ + "ideas" + ] + }, + { + "input": "handshakes", + "output": [ + "business" + ] + }, + { + "input": "platform", + "output": [ + "platform" + ] + }, + { + "input": "cli", + "output": [ + "code" + ] + }, + { + "input": "wave", + "output": [ + "a11y" + ] + }, + { + "input": "ansible", + "output": [ + "infra" + ] + }, + { + "input": "lang-convert", + "output": [ + "translation" + ] + }, + { + "input": "feat: eslint", + "output": [ + "maintenance" + ] + }, + { + "input": "gdpr", + "output": [ + "security" + ] + }, + { + "input": "type: doc update", + "output": [ + "doc" + ] + }, + { + "input": "spec: classes", + "output": [ + "doc" + ] + }, + { + "input": "websocket", + "output": [ + "tool" + ] + }, + { + "input": "android", + "output": [ + "platform" + ] + }, + { + "input": "speach", + "output": [ + "talk" + ] + }, + { + "input": "pr: bug fix :bug:", + "output": [ + "bug" + ] + }, + { + "input": "a/b testing", + "output": [ + "userTesting" + ] + }, + { + "input": "chef", + "output": [ + "infra" + ] + }, + { + "input": "patreon", + "output": [ + "financial" + ] + }, + { + "input": "pr: reviewed-changes-requested", + "output": [ + "null" + ] + }, + { + "input": "on hold", + "output": [ + "null" + ] + }, + { + "input": "ui test", + "output": [ + "test" + ] + }, + { + "input": "analysis", + "output": [ + "review" + ] + }, + { + "input": "pr: needs review", + "output": [ + "null" + ] + }, + { + "input": "component: build infrastructure", + "output": [ + "infra" + ] + }, + { + "input": "youtube", + "output": [ + "video" + ] + }, + { + "input": "spec: decorators (legacy)", + "output": [ + "doc" + ] + }, + { + "input": "deployment", + "output": [ + "infra" + ] + }, + { + "input": "mentorship", + "output": [ + "mentoring" + ] + }, + { + "input": "feat: typescript", + "output": [ + "code" + ] + }, + { + "input": "feat: cli", + "output": [ + "code" + ] + }, + { + "input": "utils", + "output": [ + "plugin" + ] + }, + { + "input": "didactic", + "output": [ + "tutorial" + ] + }, + { + "input": "story", + "output": [ + "content" + ] + }, + { + "input": "academia", + "output": [ + "research" + ] + }, + { + "input": "cla signed", + "output": [ + "null" + ] + }, + { + "input": "icebox", + "output": [ + "platform" + ] + }, + { + "input": "meetup", + "output": [ + "eventOrganizing" + ] + }, + { + "input": "examination", + "output": [ + "test" + ] + }, + { + "input": "mobile device support", + "output": [ + "platform" + ] + }, + { + "input": "component: component api", + "output": [ + "code" + ] + }, + { + "input": "spec: decorators", + "output": [ + "doc" + ] + }, + { + "input": "addon", + "output": [ + "plugin" + ] + }, + { + "input": "cracking", + "output": [ + "security" + ] + }, + { + "input": ":sparkles: enhancement", + "output": [ + "maintenance" + ] + }, + { + "input": "component: hooks", + "output": [ + "code" + ] + }, + { + "input": "improved error handling", + "output": [ + "code" + ] + }, + { + "input": "needs repro", + "output": [ + "null" + ] + }, + { + "input": "upkeep", + "output": [ + "maintenance" + ] + }, + { + "input": "component: reactis", + "output": [ + "code" + ] + }, + { + "input": "pr: ready to be merged", + "output": [ + "null" + ] + }, + { + "input": "sample", + "output": [ + "example" + ] + }, + { + "input": ":white_check_mark: testing", + "output": [ + "test" + ] + }, + { + "input": "maintenance", + "output": [ + "maintenance" + ] + }, + { + "input": "external", + "output": [ + "plugin" + ] + }, + { + "input": "desktop", + "output": [ + "platform" + ] + }, + { + "input": "hacktoberfest", + "output": [ + "code" + ] + }, + { + "input": "data", + "output": [ + "data" + ] + }, + { + "input": "lang-dart", + "output": [ + "code" + ] + }, + { + "input": ".net framework", + "output": [ + "code" + ] + }, + { + "input": "icon", + "output": [ + "design" + ] + }, + { + "input": "grant finder", + "output": [ + "fundingFinding" + ] + }, + { + "input": "needs-research", + "output": [ + "null" + ] + }, + { + "input": "cybersec", + "output": [ + "security" + ] + }, + { + "input": "biz", + "output": [ + "business" + ] + }, + { + "input": "internationalization", + "output": [ + "translation" + ] + }, + { + "input": "utility-lib", + "output": [ + "plugin" + ] + }, + { + "input": "qa", + "output": [ + "test" + ] + }, + { + "input": "do not merge", + "output": [ + "null" + ] + }, + { + "input": "hacked", + "output": [ + "security" + ] + }, + { + "input": "how-to", + "output": [ + "tutorial" + ] + }, + { + "input": "beginner-friendly", + "output": [ + "null" + ] + }, + { + "input": "trello", + "output": [ + "projectManagement" + ] + }, + { + "input": "os", + "output": [ + "platform" + ] + }, + { + "input": "sound", + "output": [ + "audio" + ] + }, + { + "input": "docs improvement", + "output": [ + "doc" + ] + }, + { + "input": ":heavy_plus_sign: feature request", + "output": [ + "ideas" + ] + }, + { + "input": "glitch", + "output": [ + "bug" + ] + }, + { + "input": "cx", + "output": [ + "design" + ] + }, + { + "input": "dependencies", + "output": [ + "maintenance" + ] + }, + { + "input": "inquiry", + "output": [ + "question" + ] + }, + { + "input": "deno", + "output": [ + "platform" + ] + }, + { + "input": "area: crash", + "output": [ + "bug" + ] + }, + { + "input": "camera", + "output": [ + "video" + ] + }, + { + "input": "pr: wip", + "output": [ + "null" + ] + }, + { + "input": "devops: configure", + "output": [ + "infra" + ] + }, + { + "input": "component: dom", + "output": [ + "code" + ] + }, + { + "input": "programming", + "output": [ + "code" + ] + }, + { + "input": "test needed", + "output": [ + "null" + ] + }, + { + "input": "question :question:", + "output": [ + "question" + ] + }, + { + "input": "@font-face", + "output": [ + "design" + ] + }, + { + "input": "rgba", + "output": [ + "design" + ] + }, + { + "input": "parser-specific", + "output": [ + "tool" + ] + }, + { + "input": "pr: new feature", + "output": [ + "ideas" + ] + }, + { + "input": "wikipedia", + "output": [ + "doc" + ] + }, + { + "input": "shell", + "output": [ + "tool" + ] + }, + { + "input": "cmty:feature-request", + "output": [ + "ideas" + ] + }, + { + "input": "contributions", + "output": [ + "maintenance" + ] + }, + { + "input": "tryout", + "output": [ + "test" + ] + }, + { + "input": "needs review", + "output": [ + "null" + ] + }, + { + "input": "thought", + "output": [ + "ideas" + ] + }, + { + "input": "kind/bug", + "output": [ + "bug" + ] + }, + { + "input": "data analysis", + "output": [ + "data" + ] + }, + { + "input": "contenu", + "output": [ + "content" + ] + }, + { + "input": "feat/cli", + "output": [ + "code" + ] + }, + { + "input": "fund investigation", + "output": [ + "fundingFinding" + ] + }, + { + "input": "type: question", + "output": [ + "question" + ] + }, + { + "input": "type: enhancement", + "output": [ + "maintenance" + ] + }, + { + "input": "basecamp", + "output": [ + "projectManagement" + ] + }, + { + "input": "literature review", + "output": [ + "research" + ] + }, + { + "input": "needs docs", + "output": [ + "null" + ] + }, + { + "input": "socket.io client", + "output": [ + "tool" + ] + }, + { + "input": "fiscal", + "output": [ + "financial" + ] + }, + { + "input": "user testing", + "output": [ + "userTesting" + ] + }, + { + "input": "debug information", + "output": [ + "bug" + ] + }, + { + "input": "frontend", + "output": [ + "code" + ] + }, + { + "input": "area/cli", + "output": [ + "infra" + ] + }, + { + "input": "upstream", + "output": [ + "null" + ] + }, + { + "input": "question :raising_hand:", + "output": [ + "question" + ] + }, + { + "input": "style", + "output": [ + "design" + ] + }, + { + "input": "clean up", + "output": [ + "maintenance" + ] + }, + { + "input": "motif", + "output": [ + "design" + ] + }, + { + "input": "to merge", + "output": [ + "null" + ] + }, + { + "input": "event", + "output": [ + "eventOrganizing" + ] + }, + { + "input": "status: help wanted", + "output": [ + "null" + ] + }, + { + "input": "priority: medium", + "output": [ + "null" + ] + }, + { + "input": "financial backing", + "output": [ + "fundingFinding" + ] + }, + { + "input": "ruby", + "output": [ + "code" + ] + }, + { + "input": "es7", + "output": [ + "code" + ] + }, + { + "input": "warrant", + "output": [ + "security" + ] + }, + { + "input": "cmty:status:cancelled", + "output": [ + "null" + ] + }, + { + "input": "plan", + "output": [ + "ideas" + ] + }, + { + "input": "hackathon", + "output": [ + "code" + ] + }, + { + "input": ":beginner: documentation", + "output": [ + "doc" + ] + }, + { + "input": "typography", + "output": [ + "design" + ] + }, + { + "input": "counsel", + "output": [ + "mentoring" + ] + }, + { + "input": "recording", + "output": [ + "audio" + ] + }, + { + "input": "crowdin", + "output": [ + "translation" + ] + }, + { + "input": "component: eslint rules", + "output": [ + "maintenance" + ] + }, + { + "input": "difficulty: easy", + "output": [ + "null" + ] + }, + { + "input": "repare", + "output": [ + "maintenance" + ] + }, + { + "input": "conference", + "output": [ + "eventOrganizing" + ] + }, + { + "input": "great insight", + "output": [ + "ideas" + ] + }, + { + "input": "phd", + "output": [ + "research" + ] + }, + { + "input": "documentation :orange_book:", + "output": [ + "doc" + ] + }, + { + "input": "type: invalid :x:", + "output": [ + "null" + ] + }, + { + "input": "needs changelog", + "output": [ + "null" + ] + }, + { + "input": "feat: e2e-cypress", + "output": [ + "test" + ] + }, + { + "input": ":lipstick: ui", + "output": [ + "design" + ] + }, + { + "input": "1 - ready", + "output": [ + "null" + ] + }, + { + "input": "backdoor", + "output": [ + "security" + ] + }, + { + "input": "fund collection", + "output": [ + "fundingFinding" + ] + }, + { + "input": "approved", + "output": [ + "null" + ] + }, + { + "input": "talk", + "output": [ + "talk" + ] + }, + { + "input": "subtitle", + "output": [ + "translation" + ] + }, + { + "input": "funding research", + "output": [ + "fundingFinding" + ] + }, + { + "input": "todo :spiral_notepad:", + "output": [ + "maintenance" + ] + }, + { + "input": "review", + "output": [ + "review" + ] + }, + { + "input": "user interface", + "output": [ + "design" + ] + }, + { + "input": "critical", + "output": [ + "null" + ] + }, + { + "input": "business (category)", + "output": [ + "business" + ] + }, + { + "input": "privacy", + "output": [ + "security" + ] + }, + { + "input": "tests", + "output": [ + "test" + ] + }, + { + "input": "duplicate", + "output": [ + "null" + ] + }, + { + "input": "pr: breaking change :boom:", + "output": [ + "code" + ] + }, + { + "input": "web app", + "output": [ + "code" + ] + }, + { + "input": "test", + "output": [ + "test" + ] + }, + { + "input": "check", + "output": [ + "review" + ] + }, + { + "input": "documentation", + "output": [ + "doc" + ] + }, + { + "input": "television", + "output": [ + "video" + ] + }, + { + "input": "uat", + "output": [ + "test" + ] + }, + { + "input": "backer", + "output": [ + "financial" + ] + }, + { + "input": "exploit", + "output": [ + "security" + ] + }, + { + "input": "requires upstream change", + "output": [ + "code" + ] + }, + { + "input": "travis-yml", + "output": [ + "infra" + ] + }, + { + "input": "node", + "output": [ + "platform" + ] + }, + { + "input": "dev experience", + "output": [ + "design" + ] + }, + { + "input": "pr: bug fix", + "output": [ + "bug" + ] + }, + { + "input": "backend", + "output": [ + "code" + ] + }, + { + "input": "data cleaning", + "output": [ + "data" + ] + }, + { + "input": "pr: internal :house:", + "output": [ + "code" + ] + }, + { + "input": ":question: question", + "output": [ + "question" + ] + }, + { + "input": "technical debt", + "output": [ + "maintenance" + ] + }, + { + "input": "core", + "output": [ + "maintenance" + ] + }, + { + "input": "client test", + "output": [ + "userTesting" + ] + }, + { + "input": "weekly-digest", + "output": [ + "blog" + ] + }, + { + "input": "component: shallow renderer", + "output": [ + "code" + ] + }, + { + "input": "commerce", + "output": [ + "business" + ] + }, + { + "input": "browser: ie", + "output": [ + "platform" + ] + }, + { + "input": "hsl", + "output": [ + "design" + ] + }, + { + "input": "status: left out", + "output": [ + "null" + ] + }, + { + "input": ".net standard", + "output": [ + "code" + ] + }, + { + "input": "pr welcome", + "output": [ + "null" + ] + }, + { + "input": "opinions needed", + "output": [ + "ideas" + ] + }, + { + "input": "documents", + "output": [ + "doc" + ] + }, + { + "input": "legacy", + "output": [ + "maintenance" + ] + }, + { + "input": "grafana", + "output": [ + "infra" + ] + }, + { + "input": "react native", + "output": [ + "code" + ] + }, + { + "input": "lang-go", + "output": [ + "code" + ] + }, + { + "input": "tutorial", + "output": [ + "tutorial" + ] + }, + { + "input": "plugin", + "output": [ + "plugin" + ] + }, + { + "input": "logo", + "output": [ + "design" + ] + }, + { + "input": ":grey_question: question", + "output": [ + "question" + ] + }, + { + "input": "refactoring", + "output": [ + "code" + ] + }, + { + "input": "browser: safari", + "output": [ + "platform" + ] + }, + { + "input": "saltstack", + "output": [ + "infra" + ] + }, + { + "input": "status: available", + "output": [ + "null" + ] + }, + { + "input": "component: server rendering", + "output": [ + "code" + ] + }, + { + "input": "htmlfile", + "output": [ + "code" + ] + }, + { + "input": "theorem", + "output": [ + "ideas" + ] + }, + { + "input": "social", + "output": [ + "eventOrganizing" + ] + }, + { + "input": "internationalisation", + "output": [ + "translation" + ] + }, + { + "input": "definition:enhancement", + "output": [ + "maintenance" + ] + }, + { + "input": "enquire", + "output": [ + "question" + ] + }, + { + "input": "packaging", + "output": [ + "platform" + ] + }, + { + "input": "lang-r", + "output": [ + "code" + ] + }, + { + "input": "type: regression :boom:", + "output": [ + "bug" + ] + }, + { + "input": "regression test", + "output": [ + "test" + ] + }, + { + "input": "new api proposal", + "output": [ + "ideas" + ] + }, + { + "input": "container", + "output": [ + "infra" + ] + }, + { + "input": "opencollective", + "output": [ + "financial" + ] + }, + { + "input": "bug report", + "output": [ + "bug" + ] + }, + { + "input": "type: performance", + "output": [ + "maintenance" + ] + }, + { + "input": "new definition", + "output": [ + "code" + ] + }, + { + "input": "pr: documentation", + "output": [ + "doc" + ] + }, + { + "input": ":boom: regression", + "output": [ + "bug" + ] + }, + { + "input": "clickup", + "output": [ + "projectManagement" + ] + }, + { + "input": "docs", + "output": [ + "doc" + ] + }, + { + "input": "installer", + "output": [ + "tool" + ] + }, + { + "input": "statement", + "output": [ + "ideas" + ] + }, + { + "input": "gcp", + "output": [ + "infra" + ] + }, + { + "input": "bug", + "output": [ + "bug" + ] + }, + { + "input": "opinion", + "output": [ + "ideas" + ] + }, + { + "input": "accepted", + "output": [ + "null" + ] + }, + { + "input": "html", + "output": [ + "code" + ] + }, + { + "input": "a11y", + "output": [ + "a11y" + ] + }, + { + "input": "general js", + "output": [ + "code" + ] + }, + { + "input": "unit test", + "output": [ + "test" + ] + }, + { + "input": "speak", + "output": [ + "talk" + ] + }, + { + "input": "brainstorming", + "output": [ + "ideas" + ] + }, + { + "input": "backup", + "output": [ + "maintenance" + ] + }, + { + "input": "status: accepted", + "output": [ + "null" + ] + }, + { + "input": "language", + "output": [ + "translation" + ] + }, + { + "input": "bugfix", + "output": [ + "bug" + ] + }, + { + "input": "question", + "output": [ + "question" + ] + }, + { + "input": "k8s", + "output": [ + "infra" + ] + }, + { + "input": "scrum", + "output": [ + "projectManagement" + ] + }, + { + "input": "paper", + "output": [ + "content" + ] + }, + { + "input": "upstream bug", + "output": [ + "bug" + ] + }, + { + "input": "library", + "output": [ + "tool" + ] + }, + { + "input": "stale", + "output": [ + "null" + ] + }, + { + "input": "testing", + "output": [ + "test" + ] + }, + { + "input": "optimization", + "output": [ + "code" + ] + }, + { + "input": "tv show", + "output": [ + "video" + ] + }, + { + "input": ":apple: ios", + "output": [ + "platform" + ] + }, + { + "input": "priority: low", + "output": [ + "null" + ] + }, + { + "input": "spec: async functions", + "output": [ + "doc" + ] + }, + { + "input": "target:gnu/linux", + "output": [ + "platform" + ] + }, + { + "input": "focus groups", + "output": [ + "userTesting" + ] + }, + { + "input": "dependency-update", + "output": [ + "maintenance" + ] + }, + { + "input": "dependency related", + "output": [ + "maintenance" + ] + }, + { + "input": "wip", + "output": [ + "null" + ] + }, + { + "input": "bootstrap", + "output": [ + "tool" + ] + }, + { + "input": "developer experience", + "output": [ + "design" + ] + }, + { + "input": "breaking change", + "output": [ + "code" + ] + }, + { + "input": "usability", + "output": [ + "a11y" + ] + }, + { + "input": "*nix", + "output": [ + "platform" + ] + }, + { + "input": "externs", + "output": [ + "plugin" + ] + }, + { + "input": "critique", + "output": [ + "review" + ] + }, + { + "input": "prince2", + "output": [ + "projectManagement" + ] + }, + { + "input": "demonstration", + "output": [ + "example" + ] + }, + { + "input": "pr: dependency ⬆️", + "output": [ + "maintenance" + ] + }, + { + "input": "pr: docs :memo:", + "output": [ + "doc" + ] + }, + { + "input": "windows", + "output": [ + "platform" + ] + }, + { + "input": "revisitinfuture", + "output": [ + "ideas" + ] + }, + { + "input": "tips", + "output": [ + "ideas" + ] + }, + { + "input": "reference", + "output": [ + "example" + ] + }, + { + "input": "priority: high", + "output": [ + "null" + ] + }, + { + "input": "cmty:bug-report", + "output": [ + "bug" + ] + }, + { + "input": "feat: babel", + "output": [ + "tool" + ] + }, + { + "input": "flashsocket", + "output": [ + "tool" + ] + }, + { + "input": "target:unix", + "output": [ + "platform" + ] + }, + { + "input": "npm", + "output": [ + "infra" + ] + }, + { + "input": "site reliability", + "output": [ + "maintenance" + ] + }, + { + "input": "enhancement", + "output": [ + "maintenance" + ] + }, + { + "input": "chore", + "output": [ + "maintenance" + ] + }, + { + "input": "adapter", + "output": [ + "plugin" + ] + }, + { + "input": "slides", + "output": [ + "talk" + ] + }, + { + "input": "query", + "output": [ + "question" + ] + }, + { + "input": "feature", + "output": [ + "ideas" + ] + }, + { + "input": "chat (category)", + "output": [ + "ideas" + ] + }, + { + "input": "major", + "output": [ + "null" + ] + }, + { + "input": "release: alpha", + "output": [ + "null" + ] + }, + { + "input": ":lock: security", + "output": [ + "security" + ] + }, + { + "input": "newsletter", + "output": [ + "content" + ] + }, + { + "input": "verification", + "output": [ + "test" + ] + }, + { + "input": "color", + "output": [ + "design" + ] + }, + { + "input": "containerd", + "output": [ + "infra" + ] + }, + { + "input": ":doughnut: enhancement", + "output": [ + "maintenance" + ] + }, + { + "input": "sentry", + "output": [ + "infra" + ] + }, + { + "input": "dissertation", + "output": [ + "research" + ] + }, + { + "input": "mentoring", + "output": [ + "mentoring" + ] + }, + { + "input": "confer", + "output": [ + "talk" + ] + }, + { + "input": "component: core utilities", + "output": [ + "maintenance" + ] + }, + { + "input": "infosec", + "output": [ + "security" + ] + }, + { + "input": "vulnerability", + "output": [ + "security" + ] + }, + { + "input": "has pr", + "output": [ + "null" + ] + }, + { + "input": "status: code review request", + "output": [ + "null" + ] + }, + { + "input": "teaching", + "output": [ + "tutorial" + ] + }, + { + "input": "target:ios", + "output": [ + "platform" + ] + }, + { + "input": "protection", + "output": [ + "security" + ] + }, + { + "input": ":robot: android", + "output": [ + "platform" + ] + }, + { + "input": "type: documentation :book:", + "output": [ + "doc" + ] + }, + { + "input": "webaim", + "output": [ + "a11y" + ] + }, + { + "input": "wontfix", + "output": [ + "null" + ] + }, + { + "input": "needs triage", + "output": [ + "null" + ] + }, + { + "input": "contribution welcome", + "output": [ + "null" + ] + }, + { + "input": "target:macos", + "output": [ + "platform" + ] + }, + { + "input": "assertion", + "output": [ + "test" + ] + }, + { + "input": "blog", + "output": [ + "blog" + ] + }, + { + "input": "review in progress", + "output": [ + "null" + ] + }, + { + "input": "node next", + "output": [ + "platform" + ] + }, + { + "input": "future architecture enhancements", + "output": [ + "ideas" + ] + }, + { + "input": "pmi", + "output": [ + "projectManagement" + ] + }, + { + "input": "promotion", + "output": [ + "promotion" + ] + }, + { + "input": "validation", + "output": [ + "review" + ] + }, + { + "input": "art", + "output": [ + "design" + ] + }, + { + "input": "film", + "output": [ + "video" + ] + }, + { + "input": "bitbucket cloud", + "output": [ + "infra" + ] + }, + { + "input": "labour", + "output": [ + "maintenance" + ] + }, + { + "input": "python", + "output": [ + "code" + ] + }, + { + "input": "suggestion", + "output": [ + "ideas" + ] + }, + { + "input": "future crypto enhancements", + "output": [ + "ideas" + ] + }, + { + "input": "attitudinal user testing", + "output": [ + "userTesting" + ] + }, + { + "input": "electron", + "output": [ + "tool" + ] + }, + { + "input": "trial", + "output": [ + "test" + ] + }, + { + "input": "definition:request", + "output": [ + "ideas" + ] + }, + { + "input": "pr: good example", + "output": [ + "example" + ] + }, + { + "input": "data protection", + "output": [ + "security" + ] + }, + { + "input": "resolution: support redirect", + "output": [ + "null" + ] + }, + { + "input": "cloud", + "output": [ + "infra" + ] + }, + { + "input": "target:android", + "output": [ + "platform" + ] + }, + { + "input": "assessment", + "output": [ + "test" + ] + }, + { + "input": "monitor", + "output": [ + "maintenance" + ] + }, + { + "input": "css", + "output": [ + "code" + ] + }, + { + "input": "hack", + "output": [ + "code" + ] + }, + { + "input": "translation", + "output": [ + "translation" + ] + }, + { + "input": "research opportunity", + "output": [ + "research" + ] + }, + { + "input": "vultr", + "output": [ + "infra" + ] + }, + { + "input": "kubernetes", + "output": [ + "infra" + ] + }, + { + "input": "discussion", + "output": [ + "ideas" + ] + }, + { + "input": "needs a example app.", + "output": [ + "null" + ] + }, + { + "input": "wiki", + "output": [ + "doc" + ] + }, + { + "input": "parser", + "output": [ + "tool" + ] + }, + { + "input": "feat: pwa", + "output": [ + "code" + ] + }, + { + "input": ":iphone: mobile", + "output": [ + "platform" + ] + }, + { + "input": "program", + "output": [ + "platform" + ] + }, + { + "input": "backer finding", + "output": [ + "fundingFinding" + ] + }, + { + "input": "digital ocean", + "output": [ + "infra" + ] + }, + { + "input": "safeguard", + "output": [ + "security" + ] + }, + { + "input": "iac", + "output": [ + "infra" + ] + }, + { + "input": "javascript", + "output": [ + "code" + ] + }, + { + "input": "integration test", + "output": [ + "test" + ] + }, + { + "input": "glo", + "output": [ + "projectManagement" + ] + }, + { + "input": "porting", + "output": [ + "platform" + ] + }, + { + "input": "status: on hold", + "output": [ + "null" + ] + }, + { + "input": "status: hacktoberfest approved", + "output": [ + "null" + ] + }, + { + "input": "evaluation", + "output": [ + "test" + ] + }, + { + "input": "go client internal release", + "output": [ + "infra" + ] + }, + { + "input": "type: test", + "output": [ + "test" + ] + }, + { + "input": "must-triage", + "output": [ + "null" + ] + }, + { + "input": "gradle", + "output": [ + "infra" + ] + }, + { + "input": "accessibility", + "output": [ + "a11y" + ] + }, + { + "input": "status: work in progress", + "output": [ + "null" + ] + }, + { + "input": "other language integration feature", + "output": [ + "ideas" + ] + }, + { + "input": "difficulty: medium", + "output": [ + "null" + ] + }, + { + "input": "data wrangling", + "output": [ + "data" + ] + }, + { + "input": "sast", + "output": [ + "security" + ] + }, + { + "input": "tech-debt", + "output": [ + "maintenance" + ] + }, + { + "input": "data entry", + "output": [ + "data" + ] + }, + { + "input": "fault", + "output": [ + "bug" + ] + }, + { + "input": "problem", + "output": [ + "bug" + ] + }, + { + "input": "brand icon", + "output": [ + "design" + ] + }, + { + "input": "internal-issue-created", + "output": [ + "bug" + ] + }, + { + "input": "pmp", + "output": [ + "projectManagement" + ] + }, + { + "input": "bdd", + "output": [ + "test" + ] + }, + { + "input": "checkpoint", + "output": [ + "review" + ] + }, + { + "input": "csharp", + "output": [ + "code" + ] + }, + { + "input": "pr: unreviewed", + "output": [ + "null" + ] + }, + { + "input": "component: test renderer", + "output": [ + "test" + ] + }, + { + "input": "idea", + "output": [ + "ideas" + ] + }, + { + "input": "needs browser testing", + "output": [ + "null" + ] + }, + { + "input": "status: in progress", + "output": [ + "null" + ] + }, + { + "input": "feedback requested", + "output": [ + "null" + ] + }, + { + "input": "wcag", + "output": [ + "a11y" + ] + }, + { + "input": "bugs", + "output": [ + "bug" + ] + }, + { + "input": "mentor", + "output": [ + "mentoring" + ] + }, + { + "input": "economics", + "output": [ + "financial" + ] + }, + { + "input": "lib", + "output": [ + "plugin" + ] + }, + { + "input": "puppet", + "output": [ + "infra" + ] + }, + { + "input": ":speech_balloon: question", + "output": [ + "question" + ] + }, + { + "input": "c/c++", + "output": [ + "code" + ] + }, + { + "input": "type: enhancement :bulb:", + "output": [ + "ideas" + ] + }, + { + "input": "pr: internal", + "output": [ + "code" + ] + }, + { + "input": "business", + "output": [ + "business" + ] + }, + { + "input": "prometheus", + "output": [ + "infra" + ] + }, + { + "input": "triage", + "output": [ + "null" + ] + }, + { + "input": "pr: new feature :rocket:", + "output": [ + "ideas" + ] + }, + { + "input": "type: discuss :speech_balloon:", + "output": [ + "ideas" + ] + }, + { + "input": "doc", + "output": [ + "doc" + ] + }, + { + "input": "ie8", + "output": [ + "platform" + ] + }, + { + "input": "blogs", + "output": [ + "blog" + ] + }, + { + "input": "feat: unit-mocha", + "output": [ + "test" + ] + }, + { + "input": "enterprise", + "output": [ + "business" + ] + }, + { + "input": "component: scheduler", + "output": [ + "null" + ] + }, + { + "input": "regression", + "output": [ + "bug" + ] + }, + { + "input": "spec: class fields", + "output": [ + "doc" + ] + }, + { + "input": "commercial", + "output": [ + "business" + ] + }, + { + "input": "infra", + "output": [ + "infra" + ] + }, + { + "input": "terraform", + "output": [ + "infra" + ] + }, + { + "input": "go", + "output": [ + "code" + ] + }, + { + "input": "figure", + "output": [ + "design" + ] + }, + { + "input": "layout", + "output": [ + "design" + ] + }, + { + "input": "specification", + "output": [ + "doc" + ] + }, + { + "input": "vector image", + "output": [ + "design" + ] + }, + { + "input": "greenkeeper", + "output": [ + "infra" + ] + }, + { + "input": "tdd", + "output": [ + "test" + ] + }, + { + "input": "performance", + "output": [ + "maintenance" + ] + }, + { + "input": "raster image", + "output": [ + "design" + ] + }, + { + "input": "mishap", + "output": [ + "bug" + ] + }, + { + "input": "sketch", + "output": [ + "design" + ] + }, + { + "input": "released", + "output": [ + "null" + ] + }, + { + "input": "linux", + "output": [ + "platform" + ] + }, + { + "input": "font design", + "output": [ + "design" + ] + }, + { + "input": ":rocket: deployment", + "output": [ + "infra" + ] + }, + { + "input": "feat: e2e-nightwatch", + "output": [ + "test" + ] + }, + { + "input": "type: infrastructure", + "output": [ + "infra" + ] + }, + { + "input": "engine vulns", + "output": [ + "security" + ] + }, + { + "input": "syntax feature request", + "output": [ + "ideas" + ] + }, + { + "input": "type: security", + "output": [ + "security" + ] + }, + { + "input": "deliverable", + "output": [ + "projectManagement" + ] + }, + { + "input": "manual", + "output": [ + "doc" + ] + }, + { + "input": "target:osx", + "output": [ + "platform" + ] + }, + { + "input": "axe", + "output": [ + "a11y" + ] + }, + { + "input": ":bug: bug", + "output": [ + "bug" + ] + }, + { + "input": "type: sendgrid enhancement", + "output": [ + "maintenance" + ] + }, + { + "input": "operating system", + "output": [ + "platform" + ] + }, + { + "input": "advance developer workflow", + "output": [ + "infra" + ] + }, + { + "input": "safety", + "output": [ + "security" + ] + }, + { + "input": "phonetic", + "output": [ + "audio" + ] + }, + { + "input": "to do", + "output": [ + "maintenance" + ] + }, + { + "input": "concept", + "output": [ + "ideas" + ] + }, + { + "input": "lerna", + "output": [ + "infra" + ] + }, + { + "input": "readme", + "output": [ + "doc" + ] + }, + { + "input": "security", + "output": [ + "security" + ] + }, + { + "input": "music", + "output": [ + "audio" + ] + }, + { + "input": "needs a failing test", + "output": [ + "null" + ] + }, + { + "input": "customer experience", + "output": [ + "design" + ] + }, + { + "input": "extension", + "output": [ + "plugin" + ] + }, + { + "input": "todo", + "output": [ + "maintenance" + ] + }, + { + "input": "lint", + "output": [ + "maintenance" + ] + }, + { + "input": "target:browser", + "output": [ + "platform" + ] + }, + { + "input": "feature request", + "output": [ + "ideas" + ] + }, + { + "input": "component: optimizing compiler", + "output": [ + "code" + ] + }, + { + "input": "css-select", + "output": [ + "code" + ] + }, + { + "input": "figma", + "output": [ + "tool" + ] + }, + { + "input": "finance", + "output": [ + "financial" + ] + }, + { + "input": "closed due to inactivity", + "output": [ + "null" + ] + }, + { + "input": ":rocket: feature request", + "output": [ + "ideas" + ] + }, + { + "input": "jira", + "output": [ + "projectManagement" + ] + }, + { + "input": "survey", + "output": [ + "review" + ] + }, + { + "input": "behavioral user testing", + "output": [ + "userTesting" + ] + }, + { + "input": "multi module", + "output": [ + "maintenance" + ] + }, + { + "input": "discussion :speech_balloon:", + "output": [ + "ideas" + ] + }, + { + "input": "mixing", + "output": [ + "audio" + ] + }, + { + "input": "0 - backlog", + "output": [ + "null" + ] + }, + { + "input": "update", + "output": [ + "maintenance" + ] + }, + { + "input": "present", + "output": [ + "talk" + ] + }, + { + "input": "modules", + "output": [ + "code" + ] + }, + { + "input": "lang-julia", + "output": [ + "code" + ] + }, + { + "input": "usability testing", + "output": [ + "userTesting" + ] + }, + { + "input": "vuln", + "output": [ + "security" + ] + }, + { + "input": "demo", + "output": [ + "example" + ] + }, + { + "input": "corporate event", + "output": [ + "eventOrganizing" + ] + }, + { + "input": "type: refactor", + "output": [ + "code" + ] + }, + { + "input": "spam", + "output": [ + "null" + ] + }, + { + "input": "definition:bug", + "output": [ + "bug" + ] + }, + { + "input": "help wanted", + "output": [ + "null" + ] + }, + { + "input": "type: idea", + "output": [ + "ideas" + ] + }, + { + "input": ":bulb: proposal", + "output": [ + "ideas" + ] + }, + { + "input": "handshakes", + "output": [ + "business" + ] + }, + { + "input": "platform", + "output": [ + "platform" + ] + }, + { + "input": "cli", + "output": [ + "code" + ] + }, + { + "input": "wave", + "output": [ + "a11y" + ] + }, + { + "input": "ansible", + "output": [ + "infra" + ] + }, + { + "input": "lang-convert", + "output": [ + "translation" + ] + }, + { + "input": "feat: eslint", + "output": [ + "maintenance" + ] + }, + { + "input": "gdpr", + "output": [ + "security" + ] + }, + { + "input": "type: doc update", + "output": [ + "doc" + ] + }, + { + "input": "spec: classes", + "output": [ + "doc" + ] + }, + { + "input": "websocket", + "output": [ + "tool" + ] + }, + { + "input": "android", + "output": [ + "platform" + ] + }, + { + "input": "speach", + "output": [ + "talk" + ] + }, + { + "input": "pr: bug fix :bug:", + "output": [ + "bug" + ] + }, + { + "input": "a/b testing", + "output": [ + "userTesting" + ] + }, + { + "input": "chef", + "output": [ + "infra" + ] + }, + { + "input": "patreon", + "output": [ + "financial" + ] + }, + { + "input": "pr: reviewed-changes-requested", + "output": [ + "null" + ] + }, + { + "input": "on hold", + "output": [ + "null" + ] + }, + { + "input": "ui test", + "output": [ + "test" + ] + }, + { + "input": "analysis", + "output": [ + "review" + ] + }, + { + "input": "pr: needs review", + "output": [ + "null" + ] + }, + { + "input": "component: build infrastructure", + "output": [ + "infra" + ] + }, + { + "input": "youtube", + "output": [ + "video" + ] + }, + { + "input": "spec: decorators (legacy)", + "output": [ + "doc" + ] + }, + { + "input": "deployment", + "output": [ + "infra" + ] + }, + { + "input": "mentorship", + "output": [ + "mentoring" + ] + }, + { + "input": "feat: typescript", + "output": [ + "code" + ] + }, + { + "input": "feat: cli", + "output": [ + "code" + ] + }, + { + "input": "utils", + "output": [ + "plugin" + ] + }, + { + "input": "didactic", + "output": [ + "tutorial" + ] + }, + { + "input": "story", + "output": [ + "content" + ] + }, + { + "input": "academia", + "output": [ + "research" + ] + }, + { + "input": "component: developer tools", + "output": [ + "tool" + ] + }, + { + "input": "inspiration", + "output": [ + "ideas" + ] + }, + { + "input": "business process", + "output": [ + "business" + ] + }, + { + "input": "sustain", + "output": [ + "maintenance" + ] + }, + { + "input": "confirmed", + "output": [ + "null" + ] + }, + { + "input": "type: question :grey_question:", + "output": [ + "question" + ] + }, + { + "input": "cmty:question", + "output": [ + "question" + ] + }, + { + "input": "need-info", + "output": [ + "null" + ] + }, + { + "input": "sustenance", + "output": [ + "maintenance" + ] + }, + { + "input": "good first issue", + "output": [ + "null" + ] + }, + { + "input": "kind/discussion", + "output": [ + "ideas" + ] + }, + { + "input": "palette", + "output": [ + "design" + ] + }, + { + "input": "azure ad", + "output": [ + "infra" + ] + }, + { + "input": "data collection", + "output": [ + "data" + ] + }, + { + "input": "external-bugs", + "output": [ + "bug" + ] + }, + { + "input": "deal", + "output": [ + "business" + ] + }, + { + "input": "hacking", + "output": [ + "security" + ] + }, + { + "input": "kind/question", + "output": [ + "question" + ] + }, + { + "input": "video", + "output": [ + "video" + ] + }, + { + "input": "component: test utils", + "output": [ + "test" + ] + }, + { + "input": "hsv", + "output": [ + "design" + ] + }, + { + "input": "thesis", + "output": [ + "content" + ] + }, + { + "input": "pentesting", + "output": [ + "security" + ] + }, + { + "input": "design", + "output": [ + "design" + ] + }, + { + "input": "website copy", + "output": [ + "content" + ] + }, + { + "input": "type: bug :bug:", + "output": [ + "bug" + ] + }, + { + "input": "guide", + "output": [ + "tutorial" + ] + }, + { + "input": "next meetup!", + "output": [ + "eventOrganizing" + ] + }, + { + "input": "feat: ui", + "output": [ + "design" + ] + }, + { + "input": "mastering", + "output": [ + "audio" + ] + }, + { + "input": "steps", + "output": [ + "doc" + ] + }, + { + "input": "abandoned", + "output": [ + "null" + ] + }, + { + "input": "badges", + "output": [ + "doc" + ] + }, + { + "input": "sponsor", + "output": [ + "mentoring" + ] + }, + { + "input": "assess", + "output": [ + "test" + ] + }, + { + "input": "pr: merged", + "output": [ + "null" + ] + }, + { + "input": "vlog", + "output": [ + "video" + ] + }, + { + "input": "acceptance testing", + "output": [ + "test" + ] + }, + { + "input": "hot discussion", + "output": [ + "ideas" + ] + }, + { + "input": "tv", + "output": [ + "video" + ] + }, + { + "input": "soundtrack", + "output": [ + "audio" + ] + }, + { + "input": "design (category)", + "output": [ + "design" + ] + }, + { + "input": "ci/cd", + "output": [ + "infra" + ] + }, + { + "input": "multi-cloud", + "output": [ + "infra" + ] + }, + { + "input": "funding finder", + "output": [ + "fundingFinding" + ] + }, + { + "input": "difficulty: hard", + "output": [ + "null" + ] + }, + { + "input": "documentation :book:", + "output": [ + "doc" + ] + }, + { + "input": "diary", + "output": [ + "blog" + ] + }, + { + "input": "standard", + "output": [ + "doc" + ] + }, + { + "input": "colour", + "output": [ + "design" + ] + }, + { + "input": ":computer: desktop", + "output": [ + "platform" + ] + }, + { + "input": "flaw", + "output": [ + "bug" + ] + }, + { + "input": "reliability", + "output": [ + "maintenance" + ] + }, + { + "input": "feat: cli-service build", + "output": [ + "code" + ] + }, + { + "input": "blocked", + "output": [ + "null" + ] + }, + { + "input": "type: maintenance :construction:", + "output": [ + "maintenance" + ] + }, + { + "input": "ios", + "output": [ + "platform" + ] + }, + { + "input": "planned feature", + "output": [ + "ideas" + ] + }, + { + "input": "kind/feature-request", + "output": [ + "ideas" + ] + }, + { + "input": "rfc", + "output": [ + "ideas" + ] + }, + { + "input": "image", + "output": [ + "design" + ] + }, + { + "input": "stock", + "output": [ + "infra" + ] + }, + { + "input": "reminder", + "output": [ + "null" + ] + }, + { + "input": "status: review needed", + "output": [ + "null" + ] + }, + { + "input": "in review", + "output": [ + "null" + ] + }, + { + "input": "lang-crystal", + "output": [ + "code" + ] + }, + { + "input": "pr: breaking change", + "output": [ + "code" + ] + }, + { + "input": "phone", + "output": [ + "platform" + ] + }, + { + "input": "refactor", + "output": [ + "code" + ] + }, + { + "input": "monologue", + "output": [ + "talk" + ] + }, + { + "input": "pr: reviewed-approved", + "output": [ + "null" + ] + }, + { + "input": "new best practice", + "output": [ + "ideas" + ] + }, + { + "input": "lecture", + "output": [ + "tutorial" + ] + }, + { + "input": "backing", + "output": [ + "financial" + ] + }, + { + "input": "website", + "output": [ + "code" + ] + }, + { + "input": "browser issue", + "output": [ + "bug" + ] + }, + { + "input": "aws", + "output": [ + "infra" + ] + }, + { + "input": "pr: polish :nail_care:", + "output": [ + "maintenance" + ] + }, + { + "input": "article", + "output": [ + "content" + ] + }, + { + "input": "peer-review", + "output": [ + "review" + ] + }, + { + "input": "writer-needed", + "output": [ + "null" + ] + }, + { + "input": "eventstorming", + "output": [ + "ideas" + ] + }, + { + "input": "freemasonry icons", + "output": [ + "design" + ] + }, + { + "input": "lean", + "output": [ + "projectManagement" + ] + }, + { + "input": "cannot reproduce", + "output": [ + "null" + ] + }, + { + "input": "paas", + "output": [ + "platform" + ] + }, + { + "input": ".net core", + "output": [ + "code" + ] + }, + { + "input": "wiretap", + "output": [ + "security" + ] + }, + { + "input": "feat: unit-jest", + "output": [ + "test" + ] + }, + { + "input": "instruction", + "output": [ + "doc" + ] + }, + { + "input": "infrastructure", + "output": [ + "infra" + ] + }, + { + "input": "rgb", + "output": [ + "design" + ] + }, + { + "input": "ideas", + "output": [ + "ideas" + ] + }, + { + "input": "target:windows", + "output": [ + "platform" + ] + }, + { + "input": "funding call", + "output": [ + "fundingFinding" + ] + }, + { + "input": "iconography", + "output": [ + "design" + ] + }, + { + "input": "promote", + "output": [ + "promotion" + ] + }, + { + "input": "template", + "output": [ + "example" + ] + }, + { + "input": "support", + "output": [ + "null" + ] + }, + { + "input": "first-timers-only", + "output": [ + "null" + ] + }, + { + "input": "java", + "output": [ + "code" + ] + }, + { + "input": "cdn", + "output": [ + "platform" + ] + }, + { + "input": "pr: new dependency", + "output": [ + "ideas" + ] + }, + { + "input": "status: ready for deploy", + "output": [ + "null" + ] + }, + { + "input": "computer", + "output": [ + "platform" + ] + }, + { + "input": "troubleshooting", + "output": [ + "bug" + ] + }, + { + "input": "spec: bigint", + "output": [ + "doc" + ] + }, + { + "input": "spec: async generators", + "output": [ + "doc" + ] + }, + { + "input": "feature proposal", + "output": [ + "ideas" + ] + }, + { + "input": "e2e test", + "output": [ + "test" + ] + }, + { + "input": "approachability", + "output": [ + "a11y" + ] + }, + { + "input": "investment", + "output": [ + "financial" + ] + }, + { + "input": "conflicts", + "output": [ + "null" + ] + }, + { + "input": "optimisation", + "output": [ + "code" + ] + }, + { + "input": "kotlin", + "output": [ + "code" + ] + }, + { + "input": "planned for next release", + "output": [ + "null" + ] + }, + { + "input": "unconfirmed", + "output": [ + "null" + ] + }, + { + "input": "type: duplicate :repeat:", + "output": [ + "null" + ] + }, + { + "input": "devops: defend", + "output": [ + "infra" + ] + }, + { + "input": "blogging", + "output": [ + "blog" + ] + }, + { + "input": "friendliness", + "output": [ + "a11y" + ] + }, + { + "input": "i18n", + "output": [ + "translation" + ] + }, + { + "input": "review", + "output": [ + "review" + ] + }, + { + "input": "user interface", + "output": [ + "design" + ] + }, + { + "input": "critical", + "output": [ + "null" + ] + }, + { + "input": "business (category)", + "output": [ + "business" + ] + }, + { + "input": "privacy", + "output": [ + "security" + ] + }, + { + "input": "tests", + "output": [ + "test" + ] + }, + { + "input": "duplicate", + "output": [ + "null" + ] + }, + { + "input": "pr: breaking change :boom:", + "output": [ + "code" + ] + }, + { + "input": "web app", + "output": [ + "code" + ] + }, + { + "input": "test", + "output": [ + "test" + ] + }, + { + "input": "check", + "output": [ + "review" + ] + }, + { + "input": "documentation", + "output": [ + "doc" + ] + }, + { + "input": "television", + "output": [ + "video" + ] + }, + { + "input": "uat", + "output": [ + "test" + ] + }, + { + "input": "backer", + "output": [ + "financial" + ] + }, + { + "input": "exploit", + "output": [ + "security" + ] + }, + { + "input": "requires upstream change", + "output": [ + "code" + ] + }, + { + "input": "travis-yml", + "output": [ + "infra" + ] + }, + { + "input": "node", + "output": [ + "platform" + ] + }, + { + "input": "dev experience", + "output": [ + "design" + ] + }, + { + "input": "pr: bug fix", + "output": [ + "bug" + ] + }, + { + "input": "backend", + "output": [ + "code" + ] + }, + { + "input": "data cleaning", + "output": [ + "data" + ] + }, + { + "input": "pr: internal :house:", + "output": [ + "code" + ] + }, + { + "input": ":question: question", + "output": [ + "question" + ] + }, + { + "input": "technical debt", + "output": [ + "maintenance" + ] + }, + { + "input": "core", + "output": [ + "maintenance" + ] + }, + { + "input": "client test", + "output": [ + "userTesting" + ] + }, + { + "input": "weekly-digest", + "output": [ + "blog" + ] + }, + { + "input": "component: shallow renderer", + "output": [ + "code" + ] + }, + { + "input": "commerce", + "output": [ + "business" + ] + }, + { + "input": "browser: ie", + "output": [ + "platform" + ] + }, + { + "input": "hsl", + "output": [ + "design" + ] + }, + { + "input": "status: left out", + "output": [ + "null" + ] + }, + { + "input": ".net standard", + "output": [ + "code" + ] + }, + { + "input": "pr welcome", + "output": [ + "null" + ] + }, + { + "input": "opinions needed", + "output": [ + "ideas" + ] + }, + { + "input": "documents", + "output": [ + "doc" + ] + }, + { + "input": "legacy", + "output": [ + "maintenance" + ] + }, + { + "input": "grafana", + "output": [ + "infra" + ] + }, + { + "input": "react native", + "output": [ + "code" + ] + }, + { + "input": "lang-go", + "output": [ + "code" + ] + }, + { + "input": "tutorial", + "output": [ + "tutorial" + ] + }, + { + "input": "plugin", + "output": [ + "plugin" + ] + }, + { + "input": "logo", + "output": [ + "design" + ] + }, + { + "input": ":grey_question: question", + "output": [ + "question" + ] + }, + { + "input": "refactoring", + "output": [ + "code" + ] + }, + { + "input": "browser: safari", + "output": [ + "platform" + ] + }, + { + "input": "saltstack", + "output": [ + "infra" + ] + }, + { + "input": "status: available", + "output": [ + "null" + ] + }, + { + "input": "component: server rendering", + "output": [ + "code" + ] + }, + { + "input": "htmlfile", + "output": [ + "code" + ] + }, + { + "input": "theorem", + "output": [ + "ideas" + ] + }, + { + "input": "social", + "output": [ + "eventOrganizing" + ] + }, + { + "input": "internationalisation", + "output": [ + "translation" + ] + }, + { + "input": "definition:enhancement", + "output": [ + "maintenance" + ] + }, + { + "input": "enquire", + "output": [ + "question" + ] + }, + { + "input": "packaging", + "output": [ + "platform" + ] + }, + { + "input": "lang-r", + "output": [ + "code" + ] + }, + { + "input": "type: regression :boom:", + "output": [ + "bug" + ] + }, + { + "input": "regression test", + "output": [ + "test" + ] + }, + { + "input": "new api proposal", + "output": [ + "ideas" + ] + }, + { + "input": "container", + "output": [ + "infra" + ] + }, + { + "input": "opencollective", + "output": [ + "financial" + ] + }, + { + "input": "bug report", + "output": [ + "bug" + ] + }, + { + "input": "type: performance", + "output": [ + "maintenance" + ] + }, + { + "input": "new definition", + "output": [ + "code" + ] + }, + { + "input": "pr: documentation", + "output": [ + "doc" + ] + }, + { + "input": ":boom: regression", + "output": [ + "bug" + ] + }, + { + "input": "clickup", + "output": [ + "projectManagement" + ] + }, + { + "input": "docs", + "output": [ + "doc" + ] + }, + { + "input": "installer", + "output": [ + "tool" + ] + }, + { + "input": "statement", + "output": [ + "ideas" + ] + }, + { + "input": "gcp", + "output": [ + "infra" + ] + }, + { + "input": "bug", + "output": [ + "bug" + ] + }, + { + "input": "opinion", + "output": [ + "ideas" + ] + }, + { + "input": "accepted", + "output": [ + "null" + ] + }, + { + "input": "html", + "output": [ + "code" + ] + }, + { + "input": "a11y", + "output": [ + "a11y" + ] + }, + { + "input": "general js", + "output": [ + "code" + ] + }, + { + "input": "unit test", + "output": [ + "test" + ] + }, + { + "input": "speak", + "output": [ + "talk" + ] + }, + { + "input": "brainstorming", + "output": [ + "ideas" + ] + }, + { + "input": "backup", + "output": [ + "maintenance" + ] + }, + { + "input": "status: accepted", + "output": [ + "null" + ] + }, + { + "input": "language", + "output": [ + "translation" + ] + }, + { + "input": "bugfix", + "output": [ + "bug" + ] + }, + { + "input": "question", + "output": [ + "question" + ] + }, + { + "input": "k8s", + "output": [ + "infra" + ] + }, + { + "input": "scrum", + "output": [ + "projectManagement" + ] + }, + { + "input": "paper", + "output": [ + "content" + ] + }, + { + "input": "upstream bug", + "output": [ + "bug" + ] + }, + { + "input": "library", + "output": [ + "tool" + ] + }, + { + "input": "stale", + "output": [ + "null" + ] + }, + { + "input": "testing", + "output": [ + "test" + ] + }, + { + "input": "optimization", + "output": [ + "code" + ] + }, + { + "input": "tv show", + "output": [ + "video" + ] + }, + { + "input": ":apple: ios", + "output": [ + "platform" + ] + }, + { + "input": "priority: low", + "output": [ + "null" + ] + }, + { + "input": "spec: async functions", + "output": [ + "doc" + ] + }, + { + "input": "target:gnu/linux", + "output": [ + "platform" + ] + }, + { + "input": "focus groups", + "output": [ + "userTesting" + ] + }, + { + "input": "dependency-update", + "output": [ + "maintenance" + ] + }, + { + "input": "dependency related", + "output": [ + "maintenance" + ] + }, + { + "input": "wip", + "output": [ + "null" + ] + }, + { + "input": "bootstrap", + "output": [ + "tool" + ] + }, + { + "input": "developer experience", + "output": [ + "design" + ] + }, + { + "input": "breaking change", + "output": [ + "code" + ] + }, + { + "input": "usability", + "output": [ + "a11y" + ] + }, + { + "input": "*nix", + "output": [ + "platform" + ] + }, + { + "input": "externs", + "output": [ + "plugin" + ] + }, + { + "input": "critique", + "output": [ + "review" + ] + }, + { + "input": "prince2", + "output": [ + "projectManagement" + ] + }, + { + "input": "demonstration", + "output": [ + "example" + ] + }, + { + "input": "pr: dependency ⬆️", + "output": [ + "maintenance" + ] + }, + { + "input": "pr: docs :memo:", + "output": [ + "doc" + ] + }, + { + "input": "windows", + "output": [ + "platform" + ] + }, + { + "input": "revisitinfuture", + "output": [ + "ideas" + ] + }, + { + "input": "tips", + "output": [ + "ideas" + ] + }, + { + "input": "reference", + "output": [ + "example" + ] + }, + { + "input": "priority: high", + "output": [ + "null" + ] + }, + { + "input": "cmty:bug-report", + "output": [ + "bug" + ] + }, + { + "input": "feat: babel", + "output": [ + "tool" + ] + }, + { + "input": "flashsocket", + "output": [ + "tool" + ] + }, + { + "input": "target:unix", + "output": [ + "platform" + ] + }, + { + "input": "npm", + "output": [ + "infra" + ] + }, + { + "input": "site reliability", + "output": [ + "maintenance" + ] + }, + { + "input": "enhancement", + "output": [ + "maintenance" + ] + }, + { + "input": "chore", + "output": [ + "maintenance" + ] + }, + { + "input": "adapter", + "output": [ + "plugin" + ] + }, + { + "input": "slides", + "output": [ + "talk" + ] + }, + { + "input": "query", + "output": [ + "question" + ] + }, + { + "input": "feature", + "output": [ + "ideas" + ] + }, + { + "input": "chat (category)", + "output": [ + "ideas" + ] + }, + { + "input": "major", + "output": [ + "null" + ] + }, + { + "input": "release: alpha", + "output": [ + "null" + ] + }, + { + "input": ":lock: security", + "output": [ + "security" + ] + }, + { + "input": "newsletter", + "output": [ + "content" + ] + }, + { + "input": "verification", + "output": [ + "test" + ] + }, + { + "input": "color", + "output": [ + "design" + ] + }, + { + "input": "containerd", + "output": [ + "infra" + ] + }, + { + "input": ":doughnut: enhancement", + "output": [ + "maintenance" + ] + }, + { + "input": "sentry", + "output": [ + "infra" + ] + }, + { + "input": "dissertation", + "output": [ + "research" + ] + }, + { + "input": "mentoring", + "output": [ + "mentoring" + ] + }, + { + "input": "confer", + "output": [ + "talk" + ] + }, + { + "input": "component: core utilities", + "output": [ + "maintenance" + ] + }, + { + "input": "infosec", + "output": [ + "security" + ] + }, + { + "input": "vulnerability", + "output": [ + "security" + ] + }, + { + "input": "has pr", + "output": [ + "null" + ] + }, + { + "input": "status: code review request", + "output": [ + "null" + ] + }, + { + "input": "teaching", + "output": [ + "tutorial" + ] + }, + { + "input": "target:ios", + "output": [ + "platform" + ] + }, + { + "input": "protection", + "output": [ + "security" + ] + }, + { + "input": ":robot: android", + "output": [ + "platform" + ] + }, + { + "input": "type: documentation :book:", + "output": [ + "doc" + ] + }, + { + "input": "webaim", + "output": [ + "a11y" + ] + }, + { + "input": "wontfix", + "output": [ + "null" + ] + }, + { + "input": "needs triage", + "output": [ + "null" + ] + }, + { + "input": "contribution welcome", + "output": [ + "null" + ] + }, + { + "input": "target:macos", + "output": [ + "platform" + ] + }, + { + "input": "assertion", + "output": [ + "test" + ] + }, + { + "input": "blog", + "output": [ + "blog" + ] + }, + { + "input": "review in progress", + "output": [ + "null" + ] + }, + { + "input": "node next", + "output": [ + "platform" + ] + }, + { + "input": "future architecture enhancements", + "output": [ + "ideas" + ] + }, + { + "input": "pmi", + "output": [ + "projectManagement" + ] + }, + { + "input": "promotion", + "output": [ + "promotion" + ] + }, + { + "input": "validation", + "output": [ + "review" + ] + }, + { + "input": "art", + "output": [ + "design" + ] + }, + { + "input": "film", + "output": [ + "video" + ] + }, + { + "input": "bitbucket cloud", + "output": [ + "infra" + ] + }, + { + "input": "labour", + "output": [ + "maintenance" + ] + }, + { + "input": "python", + "output": [ + "code" + ] + }, + { + "input": "suggestion", + "output": [ + "ideas" + ] + }, + { + "input": "future crypto enhancements", + "output": [ + "ideas" + ] + }, + { + "input": "attitudinal user testing", + "output": [ + "userTesting" + ] + }, + { + "input": "electron", + "output": [ + "tool" + ] + }, + { + "input": "trial", + "output": [ + "test" + ] + }, + { + "input": "definition:request", + "output": [ + "ideas" + ] + }, + { + "input": "pr: good example", + "output": [ + "example" + ] + }, + { + "input": "data protection", + "output": [ + "security" + ] + }, + { + "input": "resolution: support redirect", + "output": [ + "null" + ] + }, + { + "input": "cloud", + "output": [ + "infra" + ] + }, + { + "input": "target:android", + "output": [ + "platform" + ] + }, + { + "input": "assessment", + "output": [ + "test" + ] + }, + { + "input": "monitor", + "output": [ + "maintenance" + ] + }, + { + "input": "css", + "output": [ + "code" + ] + }, + { + "input": "hack", + "output": [ + "code" + ] + }, + { + "input": "translation", + "output": [ + "translation" + ] + }, + { + "input": "research opportunity", + "output": [ + "research" + ] + }, + { + "input": "vultr", + "output": [ + "infra" + ] + }, + { + "input": "kubernetes", + "output": [ + "infra" + ] + }, + { + "input": "discussion", + "output": [ + "ideas" + ] + }, + { + "input": "needs a example app.", + "output": [ + "null" + ] + }, + { + "input": "wiki", + "output": [ + "doc" + ] + }, + { + "input": "parser", + "output": [ + "tool" + ] + }, + { + "input": "feat: pwa", + "output": [ + "code" + ] + }, + { + "input": ":iphone: mobile", + "output": [ + "platform" + ] + }, + { + "input": "program", + "output": [ + "platform" + ] + }, + { + "input": "backer finding", + "output": [ + "fundingFinding" + ] + }, + { + "input": "digital ocean", + "output": [ + "infra" + ] + }, + { + "input": "safeguard", + "output": [ + "security" + ] + }, + { + "input": "iac", + "output": [ + "infra" + ] + }, + { + "input": "javascript", + "output": [ + "code" + ] + }, + { + "input": "integration test", + "output": [ + "test" + ] + }, + { + "input": "glo", + "output": [ + "projectManagement" + ] + }, + { + "input": "porting", + "output": [ + "platform" + ] + }, + { + "input": "status: on hold", + "output": [ + "null" + ] + }, + { + "input": "status: hacktoberfest approved", + "output": [ + "null" + ] + }, + { + "input": "evaluation", + "output": [ + "test" + ] + }, + { + "input": "go client internal release", + "output": [ + "infra" + ] + }, + { + "input": "type: test", + "output": [ + "test" + ] + }, + { + "input": "must-triage", + "output": [ + "null" + ] + }, + { + "input": "gradle", + "output": [ + "infra" + ] + }, + { + "input": "accessibility", + "output": [ + "a11y" + ] + }, + { + "input": "status: work in progress", + "output": [ + "null" + ] + }, + { + "input": "other language integration feature", + "output": [ + "ideas" + ] + }, + { + "input": "difficulty: medium", + "output": [ + "null" + ] + }, + { + "input": "data wrangling", + "output": [ + "data" + ] + }, + { + "input": "sast", + "output": [ + "security" + ] + }, + { + "input": "tech-debt", + "output": [ + "maintenance" + ] + }, + { + "input": "data entry", + "output": [ + "data" + ] + }, + { + "input": "fault", + "output": [ + "bug" + ] + }, + { + "input": "problem", + "output": [ + "bug" + ] + }, + { + "input": "brand icon", + "output": [ + "design" + ] + }, + { + "input": "internal-issue-created", + "output": [ + "bug" + ] + }, + { + "input": "pmp", + "output": [ + "projectManagement" + ] + }, + { + "input": "bdd", + "output": [ + "test" + ] + }, + { + "input": "checkpoint", + "output": [ + "review" + ] + }, + { + "input": "csharp", + "output": [ + "code" + ] + }, + { + "input": "pr: unreviewed", + "output": [ + "null" + ] + }, + { + "input": "component: test renderer", + "output": [ + "test" + ] + }, + { + "input": "idea", + "output": [ + "ideas" + ] + }, + { + "input": "needs browser testing", + "output": [ + "null" + ] + }, + { + "input": "status: in progress", + "output": [ + "null" + ] + }, + { + "input": "feedback requested", + "output": [ + "null" + ] + }, + { + "input": "wcag", + "output": [ + "a11y" + ] + }, + { + "input": "bugs", + "output": [ + "bug" + ] + }, + { + "input": "mentor", + "output": [ + "mentoring" + ] + }, + { + "input": "economics", + "output": [ + "financial" + ] + }, + { + "input": "lib", + "output": [ + "plugin" + ] + }, + { + "input": "puppet", + "output": [ + "infra" + ] + }, + { + "input": ":speech_balloon: question", + "output": [ + "question" + ] + }, + { + "input": "c/c++", + "output": [ + "code" + ] + }, + { + "input": "type: enhancement :bulb:", + "output": [ + "ideas" + ] + }, + { + "input": "pr: internal", + "output": [ + "code" + ] + }, + { + "input": "business", + "output": [ + "business" + ] + }, + { + "input": "prometheus", + "output": [ + "infra" + ] + }, + { + "input": "triage", + "output": [ + "null" + ] + }, + { + "input": "pr: new feature :rocket:", + "output": [ + "ideas" + ] + }, + { + "input": "type: discuss :speech_balloon:", + "output": [ + "ideas" + ] + }, + { + "input": "doc", + "output": [ + "doc" + ] + }, + { + "input": "ie8", + "output": [ + "platform" + ] + }, + { + "input": "blogs", + "output": [ + "blog" + ] + }, + { + "input": "feat: unit-mocha", + "output": [ + "test" + ] + }, + { + "input": "enterprise", + "output": [ + "business" + ] + }, + { + "input": "component: scheduler", + "output": [ + "null" + ] + }, + { + "input": "regression", + "output": [ + "bug" + ] + }, + { + "input": "spec: class fields", + "output": [ + "doc" + ] + }, + { + "input": "commercial", + "output": [ + "business" + ] + }, + { + "input": "infra", + "output": [ + "infra" + ] + }, + { + "input": "terraform", + "output": [ + "infra" + ] + }, + { + "input": "go", + "output": [ + "code" + ] + }, + { + "input": "figure", + "output": [ + "design" + ] + }, + { + "input": "layout", + "output": [ + "design" + ] + }, + { + "input": "specification", + "output": [ + "doc" + ] + }, + { + "input": "vector image", + "output": [ + "design" + ] + }, + { + "input": "greenkeeper", + "output": [ + "infra" + ] + }, + { + "input": "tdd", + "output": [ + "test" + ] + }, + { + "input": "performance", + "output": [ + "maintenance" + ] + }, + { + "input": "raster image", + "output": [ + "design" + ] + }, + { + "input": "mishap", + "output": [ + "bug" + ] + }, + { + "input": "sketch", + "output": [ + "design" + ] + }, + { + "input": "released", + "output": [ + "null" + ] + }, + { + "input": "linux", + "output": [ + "platform" + ] + }, + { + "input": "font design", + "output": [ + "design" + ] + }, + { + "input": ":rocket: deployment", + "output": [ + "infra" + ] + }, + { + "input": "feat: e2e-nightwatch", + "output": [ + "test" + ] + }, + { + "input": "type: infrastructure", + "output": [ + "infra" + ] + }, + { + "input": "engine vulns", + "output": [ + "security" + ] + }, + { + "input": "syntax feature request", + "output": [ + "ideas" + ] + }, + { + "input": "type: security", + "output": [ + "security" + ] + }, + { + "input": "deliverable", + "output": [ + "projectManagement" + ] + }, + { + "input": "manual", + "output": [ + "doc" + ] + }, + { + "input": "target:osx", + "output": [ + "platform" + ] + }, + { + "input": "axe", + "output": [ + "a11y" + ] + }, + { + "input": ":bug: bug", + "output": [ + "bug" + ] + }, + { + "input": "type: sendgrid enhancement", + "output": [ + "maintenance" + ] + }, + { + "input": "operating system", + "output": [ + "platform" + ] + }, + { + "input": "advance developer workflow", + "output": [ + "infra" + ] + }, + { + "input": "safety", + "output": [ + "security" + ] + }, + { + "input": "phonetic", + "output": [ + "audio" + ] + }, + { + "input": "to do", + "output": [ + "maintenance" + ] + }, + { + "input": "concept", + "output": [ + "ideas" + ] + }, + { + "input": "lerna", + "output": [ + "infra" + ] + }, + { + "input": "readme", + "output": [ + "doc" + ] + }, + { + "input": "security", + "output": [ + "security" + ] + }, + { + "input": "music", + "output": [ + "audio" + ] + }, + { + "input": "needs a failing test", + "output": [ + "null" + ] + }, + { + "input": "customer experience", + "output": [ + "design" + ] + }, + { + "input": "extension", + "output": [ + "plugin" + ] + }, + { + "input": "todo", + "output": [ + "maintenance" + ] + }, + { + "input": "lint", + "output": [ + "maintenance" + ] + }, + { + "input": "target:browser", + "output": [ + "platform" + ] + }, + { + "input": "feature request", + "output": [ + "ideas" + ] + }, + { + "input": "component: optimizing compiler", + "output": [ + "code" + ] + }, + { + "input": "css-select", + "output": [ + "code" + ] + }, + { + "input": "figma", + "output": [ + "tool" + ] + }, + { + "input": "finance", + "output": [ + "financial" + ] + }, + { + "input": "closed due to inactivity", + "output": [ + "null" + ] + }, + { + "input": ":rocket: feature request", + "output": [ + "ideas" + ] + }, + { + "input": "jira", + "output": [ + "projectManagement" + ] + }, + { + "input": "survey", + "output": [ + "review" + ] + }, + { + "input": "behavioral user testing", + "output": [ + "userTesting" + ] + }, + { + "input": "multi module", + "output": [ + "maintenance" + ] + }, + { + "input": "discussion :speech_balloon:", + "output": [ + "ideas" + ] + }, + { + "input": "mixing", + "output": [ + "audio" + ] + }, + { + "input": "0 - backlog", + "output": [ + "null" + ] + }, + { + "input": "update", + "output": [ + "maintenance" + ] + }, + { + "input": "present", + "output": [ + "talk" + ] + }, + { + "input": "modules", + "output": [ + "code" + ] + }, + { + "input": "lang-julia", + "output": [ + "code" + ] + }, + { + "input": "usability testing", + "output": [ + "userTesting" + ] + }, + { + "input": "vuln", + "output": [ + "security" + ] + }, + { + "input": "demo", + "output": [ + "example" + ] + }, + { + "input": "corporate event", + "output": [ + "eventOrganizing" + ] + }, + { + "input": "type: refactor", + "output": [ + "code" + ] + }, + { + "input": "spam", + "output": [ + "null" + ] + }, + { + "input": "definition:bug", + "output": [ + "bug" + ] + }, + { + "input": "help wanted", + "output": [ + "null" + ] + }, + { + "input": "type: idea", + "output": [ + "ideas" + ] + }, + { + "input": ":bulb: proposal", + "output": [ + "ideas" + ] + }, + { + "input": "handshakes", + "output": [ + "business" + ] + }, + { + "input": "platform", + "output": [ + "platform" + ] + }, + { + "input": "cli", + "output": [ + "code" + ] + }, + { + "input": "wave", + "output": [ + "a11y" + ] + }, + { + "input": "ansible", + "output": [ + "infra" + ] + }, + { + "input": "lang-convert", + "output": [ + "translation" + ] + }, + { + "input": "feat: eslint", + "output": [ + "maintenance" + ] + }, + { + "input": "gdpr", + "output": [ + "security" + ] + }, + { + "input": "type: doc update", + "output": [ + "doc" + ] + }, + { + "input": "spec: classes", + "output": [ + "doc" + ] + }, + { + "input": "websocket", + "output": [ + "tool" + ] + }, + { + "input": "android", + "output": [ + "platform" + ] + }, + { + "input": "speach", + "output": [ + "talk" + ] + }, + { + "input": "pr: bug fix :bug:", + "output": [ + "bug" + ] + }, + { + "input": "a/b testing", + "output": [ + "userTesting" + ] + }, + { + "input": "chef", + "output": [ + "infra" + ] + }, + { + "input": "patreon", + "output": [ + "financial" + ] + }, + { + "input": "pr: reviewed-changes-requested", + "output": [ + "null" + ] + }, + { + "input": "on hold", + "output": [ + "null" + ] + }, + { + "input": "ui test", + "output": [ + "test" + ] + }, + { + "input": "analysis", + "output": [ + "review" + ] + }, + { + "input": "pr: needs review", + "output": [ + "null" + ] + }, + { + "input": "component: build infrastructure", + "output": [ + "infra" + ] + }, + { + "input": "youtube", + "output": [ + "video" + ] + }, + { + "input": "spec: decorators (legacy)", + "output": [ + "doc" + ] + }, + { + "input": "deployment", + "output": [ + "infra" + ] + }, + { + "input": "mentorship", + "output": [ + "mentoring" + ] + }, + { + "input": "feat: typescript", + "output": [ + "code" + ] + }, + { + "input": "feat: cli", + "output": [ + "code" + ] + }, + { + "input": "utils", + "output": [ + "plugin" + ] + }, + { + "input": "didactic", + "output": [ + "tutorial" + ] + }, + { + "input": "story", + "output": [ + "content" + ] + }, + { + "input": "academia", + "output": [ + "research" + ] + }, + { + "input": "component: developer tools", + "output": [ + "tool" + ] + }, + { + "input": "inspiration", + "output": [ + "ideas" + ] + }, + { + "input": "business process", + "output": [ + "business" + ] + }, + { + "input": "sustain", + "output": [ + "maintenance" + ] + }, + { + "input": "confirmed", + "output": [ + "null" + ] + }, + { + "input": "type: question :grey_question:", + "output": [ + "question" + ] + }, + { + "input": "cmty:question", + "output": [ + "question" + ] + }, + { + "input": "need-info", + "output": [ + "null" + ] + }, + { + "input": "sustenance", + "output": [ + "maintenance" + ] + }, + { + "input": "good first issue", + "output": [ + "null" + ] + }, + { + "input": "kind/discussion", + "output": [ + "ideas" + ] + }, + { + "input": "palette", + "output": [ + "design" + ] + }, + { + "input": "azure ad", + "output": [ + "infra" + ] + }, + { + "input": "data collection", + "output": [ + "data" + ] + }, + { + "input": "external-bugs", + "output": [ + "bug" + ] + }, + { + "input": "deal", + "output": [ + "business" + ] + }, + { + "input": "hacking", + "output": [ + "security" + ] + }, + { + "input": "kind/question", + "output": [ + "question" + ] + }, + { + "input": "video", + "output": [ + "video" + ] + }, + { + "input": "component: test utils", + "output": [ + "test" + ] + }, + { + "input": "hsv", + "output": [ + "design" + ] + }, + { + "input": "thesis", + "output": [ + "content" + ] + }, + { + "input": "pentesting", + "output": [ + "security" + ] + }, + { + "input": "design", + "output": [ + "design" + ] + }, + { + "input": "website copy", + "output": [ + "content" + ] + }, + { + "input": "type: bug :bug:", + "output": [ + "bug" + ] + }, + { + "input": "guide", + "output": [ + "tutorial" + ] + }, + { + "input": "next meetup!", + "output": [ + "eventOrganizing" + ] + }, + { + "input": "feat: ui", + "output": [ + "design" + ] + }, + { + "input": "mastering", + "output": [ + "audio" + ] + }, + { + "input": "steps", + "output": [ + "doc" + ] + }, + { + "input": "abandoned", + "output": [ + "null" + ] + }, + { + "input": "badges", + "output": [ + "doc" + ] + }, + { + "input": "sponsor", + "output": [ + "mentoring" + ] + }, + { + "input": "assess", + "output": [ + "test" + ] + }, + { + "input": "pr: merged", + "output": [ + "null" + ] + }, + { + "input": "vlog", + "output": [ + "video" + ] + }, + { + "input": "acceptance testing", + "output": [ + "test" + ] + }, + { + "input": "hot discussion", + "output": [ + "ideas" + ] + }, + { + "input": "tv", + "output": [ + "video" + ] + }, + { + "input": "soundtrack", + "output": [ + "audio" + ] + }, + { + "input": "design (category)", + "output": [ + "design" + ] + }, + { + "input": "ci/cd", + "output": [ + "infra" + ] + }, + { + "input": "multi-cloud", + "output": [ + "infra" + ] + }, + { + "input": "funding finder", + "output": [ + "fundingFinding" + ] + }, + { + "input": "difficulty: hard", + "output": [ + "null" + ] + }, + { + "input": "documentation :book:", + "output": [ + "doc" + ] + }, + { + "input": "diary", + "output": [ + "blog" + ] + }, + { + "input": "standard", + "output": [ + "doc" + ] + }, + { + "input": "colour", + "output": [ + "design" + ] + }, + { + "input": ":computer: desktop", + "output": [ + "platform" + ] + }, + { + "input": "flaw", + "output": [ + "bug" + ] + }, + { + "input": "reliability", + "output": [ + "maintenance" + ] + }, + { + "input": "feat: cli-service build", + "output": [ + "code" + ] + }, + { + "input": "blocked", + "output": [ + "null" + ] + }, + { + "input": "type: maintenance :construction:", + "output": [ + "maintenance" + ] + }, + { + "input": "ios", + "output": [ + "platform" + ] + }, + { + "input": "planned feature", + "output": [ + "ideas" + ] + }, + { + "input": "kind/feature-request", + "output": [ + "ideas" + ] + }, + { + "input": "rfc", + "output": [ + "ideas" + ] + }, + { + "input": "image", + "output": [ + "design" + ] + }, + { + "input": "stock", + "output": [ + "infra" + ] + }, + { + "input": "reminder", + "output": [ + "null" + ] + }, + { + "input": "status: review needed", + "output": [ + "null" + ] + }, + { + "input": "in review", + "output": [ + "null" + ] + }, + { + "input": "lang-crystal", + "output": [ + "code" + ] + }, + { + "input": "pr: breaking change", + "output": [ + "code" + ] + }, + { + "input": "phone", + "output": [ + "platform" + ] + }, + { + "input": "refactor", + "output": [ + "code" + ] + }, + { + "input": "monologue", + "output": [ + "talk" + ] + }, + { + "input": "pr: reviewed-approved", + "output": [ + "null" + ] + }, + { + "input": "new best practice", + "output": [ + "ideas" + ] + }, + { + "input": "lecture", + "output": [ + "tutorial" + ] + }, + { + "input": "backing", + "output": [ + "financial" + ] + }, + { + "input": "website", + "output": [ + "code" + ] + }, + { + "input": "browser issue", + "output": [ + "bug" + ] + }, + { + "input": "aws", + "output": [ + "infra" + ] + }, + { + "input": "pr: polish :nail_care:", + "output": [ + "maintenance" + ] + }, + { + "input": "article", + "output": [ + "content" + ] + }, + { + "input": "peer-review", + "output": [ + "review" + ] + }, + { + "input": "writer-needed", + "output": [ + "null" + ] + }, + { + "input": "eventstorming", + "output": [ + "ideas" + ] + }, + { + "input": "freemasonry icons", + "output": [ + "design" + ] + }, + { + "input": "lean", + "output": [ + "projectManagement" + ] + }, + { + "input": "cannot reproduce", + "output": [ + "null" + ] + }, + { + "input": "paas", + "output": [ + "platform" + ] + }, + { + "input": ".net core", + "output": [ + "code" + ] + }, + { + "input": "wiretap", + "output": [ + "security" + ] + }, + { + "input": "feat: unit-jest", + "output": [ + "test" + ] + }, + { + "input": "instruction", + "output": [ + "doc" + ] + }, + { + "input": "infrastructure", + "output": [ + "infra" + ] + }, + { + "input": "rgb", + "output": [ + "design" + ] + }, + { + "input": "ideas", + "output": [ + "ideas" + ] + }, + { + "input": "target:windows", + "output": [ + "platform" + ] + }, + { + "input": "funding call", + "output": [ + "fundingFinding" + ] + }, + { + "input": "iconography", + "output": [ + "design" + ] + }, + { + "input": "promote", + "output": [ + "promotion" + ] + }, + { + "input": "template", + "output": [ + "example" + ] + }, + { + "input": "support", + "output": [ + "null" + ] + }, + { + "input": "first-timers-only", + "output": [ + "null" + ] + }, + { + "input": "java", + "output": [ + "code" + ] + }, + { + "input": "cdn", + "output": [ + "platform" + ] + }, + { + "input": "pr: new dependency", + "output": [ + "ideas" + ] + }, + { + "input": "status: ready for deploy", + "output": [ + "null" + ] + }, + { + "input": "computer", + "output": [ + "platform" + ] + }, + { + "input": "troubleshooting", + "output": [ + "bug" + ] + }, + { + "input": "spec: bigint", + "output": [ + "doc" + ] + }, + { + "input": "spec: async generators", + "output": [ + "doc" + ] + }, + { + "input": "feature proposal", + "output": [ + "ideas" + ] + }, + { + "input": "e2e test", + "output": [ + "test" + ] + }, + { + "input": "approachability", + "output": [ + "a11y" + ] + }, + { + "input": "investment", + "output": [ + "financial" + ] + }, + { + "input": "conflicts", + "output": [ + "null" + ] + }, + { + "input": "optimisation", + "output": [ + "code" + ] + }, + { + "input": "kotlin", + "output": [ + "code" + ] + }, + { + "input": "planned for next release", + "output": [ + "null" + ] + }, + { + "input": "unconfirmed", + "output": [ + "null" + ] + }, + { + "input": "type: duplicate :repeat:", + "output": [ + "null" + ] + }, + { + "input": "devops: defend", + "output": [ + "infra" + ] + }, + { + "input": "blogging", + "output": [ + "blog" + ] + }, + { + "input": "friendliness", + "output": [ + "a11y" + ] + }, + { + "input": "i18n", + "output": [ + "translation" + ] + }, + { + "input": "cla signed", + "output": [ + "null" + ] + }, + { + "input": "icebox", + "output": [ + "platform" + ] + }, + { + "input": "meetup", + "output": [ + "eventOrganizing" + ] + }, + { + "input": "examination", + "output": [ + "test" + ] + }, + { + "input": "mobile device support", + "output": [ + "platform" + ] + }, + { + "input": "component: component api", + "output": [ + "code" + ] + }, + { + "input": "spec: decorators", + "output": [ + "doc" + ] + }, + { + "input": "addon", + "output": [ + "plugin" + ] + }, + { + "input": "cracking", + "output": [ + "security" + ] + }, + { + "input": ":sparkles: enhancement", + "output": [ + "maintenance" + ] + }, + { + "input": "component: hooks", + "output": [ + "code" + ] + }, + { + "input": "improved error handling", + "output": [ + "code" + ] + }, + { + "input": "needs repro", + "output": [ + "null" + ] + }, + { + "input": "upkeep", + "output": [ + "maintenance" + ] + }, + { + "input": "component: reactis", + "output": [ + "code" + ] + }, + { + "input": "pr: ready to be merged", + "output": [ + "null" + ] + }, + { + "input": "sample", + "output": [ + "example" + ] + }, + { + "input": ":white_check_mark: testing", + "output": [ + "test" + ] + }, + { + "input": "maintenance", + "output": [ + "maintenance" + ] + }, + { + "input": "external", + "output": [ + "plugin" + ] + }, + { + "input": "desktop", + "output": [ + "platform" + ] + }, + { + "input": "hacktoberfest", + "output": [ + "code" + ] + }, + { + "input": "data", + "output": [ + "data" + ] + }, + { + "input": "lang-dart", + "output": [ + "code" + ] + }, + { + "input": ".net framework", + "output": [ + "code" + ] + }, + { + "input": "icon", + "output": [ + "design" + ] + }, + { + "input": "grant finder", + "output": [ + "fundingFinding" + ] + }, + { + "input": "needs-research", + "output": [ + "null" + ] + }, + { + "input": "cybersec", + "output": [ + "security" + ] + }, + { + "input": "biz", + "output": [ + "business" + ] + }, + { + "input": "internationalization", + "output": [ + "translation" + ] + }, + { + "input": "utility-lib", + "output": [ + "plugin" + ] + }, + { + "input": "qa", + "output": [ + "test" + ] + }, + { + "input": "do not merge", + "output": [ + "null" + ] + }, + { + "input": "hacked", + "output": [ + "security" + ] + }, + { + "input": "how-to", + "output": [ + "tutorial" + ] + }, + { + "input": "beginner-friendly", + "output": [ + "null" + ] + }, + { + "input": "trello", + "output": [ + "projectManagement" + ] + }, + { + "input": "os", + "output": [ + "platform" + ] + }, + { + "input": "sound", + "output": [ + "audio" + ] + }, + { + "input": "docs improvement", + "output": [ + "doc" + ] + }, + { + "input": ":heavy_plus_sign: feature request", + "output": [ + "ideas" + ] + }, + { + "input": "glitch", + "output": [ + "bug" + ] + }, + { + "input": "cx", + "output": [ + "design" + ] + }, + { + "input": "dependencies", + "output": [ + "maintenance" + ] + }, + { + "input": "inquiry", + "output": [ + "question" + ] + }, + { + "input": "deno", + "output": [ + "platform" + ] + }, + { + "input": "area: crash", + "output": [ + "bug" + ] + }, + { + "input": "camera", + "output": [ + "video" + ] + }, + { + "input": "pr: wip", + "output": [ + "null" + ] + }, + { + "input": "devops: configure", + "output": [ + "infra" + ] + }, + { + "input": "component: dom", + "output": [ + "code" + ] + }, + { + "input": "programming", + "output": [ + "code" + ] + }, + { + "input": "test needed", + "output": [ + "null" + ] + }, + { + "input": "question :question:", + "output": [ + "question" + ] + }, + { + "input": "@font-face", + "output": [ + "design" + ] + }, + { + "input": "rgba", + "output": [ + "design" + ] + }, + { + "input": "parser-specific", + "output": [ + "tool" + ] + }, + { + "input": "pr: new feature", + "output": [ + "ideas" + ] + }, + { + "input": "wikipedia", + "output": [ + "doc" + ] + }, + { + "input": "shell", + "output": [ + "tool" + ] + }, + { + "input": "cmty:feature-request", + "output": [ + "ideas" + ] + }, + { + "input": "contributions", + "output": [ + "maintenance" + ] + }, + { + "input": "tryout", + "output": [ + "test" + ] + }, + { + "input": "needs review", + "output": [ + "null" + ] + }, + { + "input": "thought", + "output": [ + "ideas" + ] + }, + { + "input": "kind/bug", + "output": [ + "bug" + ] + }, + { + "input": "data analysis", + "output": [ + "data" + ] + }, + { + "input": "contenu", + "output": [ + "content" + ] + }, + { + "input": "feat/cli", + "output": [ + "code" + ] + }, + { + "input": "fund investigation", + "output": [ + "fundingFinding" + ] + }, + { + "input": "type: question", + "output": [ + "question" + ] + }, + { + "input": "type: enhancement", + "output": [ + "maintenance" + ] + }, + { + "input": "basecamp", + "output": [ + "projectManagement" + ] + }, + { + "input": "literature review", + "output": [ + "research" + ] + }, + { + "input": "needs docs", + "output": [ + "null" + ] + }, + { + "input": "socket.io client", + "output": [ + "tool" + ] + }, + { + "input": "fiscal", + "output": [ + "financial" + ] + }, + { + "input": "user testing", + "output": [ + "userTesting" + ] + }, + { + "input": "debug information", + "output": [ + "bug" + ] + }, + { + "input": "frontend", + "output": [ + "code" + ] + }, + { + "input": "area/cli", + "output": [ + "infra" + ] + }, + { + "input": "upstream", + "output": [ + "null" + ] + }, + { + "input": "question :raising_hand:", + "output": [ + "question" + ] + }, + { + "input": "style", + "output": [ + "design" + ] + }, + { + "input": "clean up", + "output": [ + "maintenance" + ] + }, + { + "input": "motif", + "output": [ + "design" + ] + }, + { + "input": "to merge", + "output": [ + "null" + ] + }, + { + "input": "event", + "output": [ + "eventOrganizing" + ] + }, + { + "input": "status: help wanted", + "output": [ + "null" + ] + }, + { + "input": "priority: medium", + "output": [ + "null" + ] + }, + { + "input": "financial backing", + "output": [ + "fundingFinding" + ] + }, + { + "input": "ruby", + "output": [ + "code" + ] + }, + { + "input": "es7", + "output": [ + "code" + ] + }, + { + "input": "warrant", + "output": [ + "security" + ] + }, + { + "input": "cmty:status:cancelled", + "output": [ + "null" + ] + }, + { + "input": "plan", + "output": [ + "ideas" + ] + }, + { + "input": "hackathon", + "output": [ + "code" + ] + }, + { + "input": ":beginner: documentation", + "output": [ + "doc" + ] + }, + { + "input": "typography", + "output": [ + "design" + ] + }, + { + "input": "counsel", + "output": [ + "mentoring" + ] + }, + { + "input": "recording", + "output": [ + "audio" + ] + }, + { + "input": "crowdin", + "output": [ + "translation" + ] + }, + { + "input": "component: eslint rules", + "output": [ + "maintenance" + ] + }, + { + "input": "difficulty: easy", + "output": [ + "null" + ] + }, + { + "input": "repare", + "output": [ + "maintenance" + ] + }, + { + "input": "conference", + "output": [ + "eventOrganizing" + ] + }, + { + "input": "great insight", + "output": [ + "ideas" + ] + }, + { + "input": "phd", + "output": [ + "research" + ] + }, + { + "input": "documentation :orange_book:", + "output": [ + "doc" + ] + }, + { + "input": "type: invalid :x:", + "output": [ + "null" + ] + }, + { + "input": "needs changelog", + "output": [ + "null" + ] + }, + { + "input": "feat: e2e-cypress", + "output": [ + "test" + ] + }, + { + "input": ":lipstick: ui", + "output": [ + "design" + ] + }, + { + "input": "1 - ready", + "output": [ + "null" + ] + }, + { + "input": "backdoor", + "output": [ + "security" + ] + }, + { + "input": "fund collection", + "output": [ + "fundingFinding" + ] + }, + { + "input": "approved", + "output": [ + "null" + ] + }, + { + "input": "talk", + "output": [ + "talk" + ] + }, + { + "input": "subtitle", + "output": [ + "translation" + ] + }, + { + "input": "funding research", + "output": [ + "fundingFinding" + ] + }, + { + "input": "todo :spiral_notepad:", + "output": [ + "maintenance" + ] + }, + { + "input": "feat: babel", + "output": [ + "tool" + ] + }, + { + "input": "flashsocket", + "output": [ + "tool" + ] + }, + { + "input": "target:unix", + "output": [ + "platform" + ] + }, + { + "input": "npm", + "output": [ + "infra" + ] + }, + { + "input": "site reliability", + "output": [ + "maintenance" + ] + }, + { + "input": "enhancement", + "output": [ + "maintenance" + ] + }, + { + "input": "chore", + "output": [ + "maintenance" + ] + }, + { + "input": "adapter", + "output": [ + "plugin" + ] + }, + { + "input": "slides", + "output": [ + "talk" + ] + }, + { + "input": "query", + "output": [ + "question" + ] + }, + { + "input": "feature", + "output": [ + "ideas" + ] + }, + { + "input": "chat (category)", + "output": [ + "ideas" + ] + }, + { + "input": "major", + "output": [ + "null" + ] + }, + { + "input": "release: alpha", + "output": [ + "null" + ] + }, + { + "input": ":lock: security", + "output": [ + "security" + ] + }, + { + "input": "newsletter", + "output": [ + "content" + ] + }, + { + "input": "verification", + "output": [ + "test" + ] + }, + { + "input": "color", + "output": [ + "design" + ] + }, + { + "input": "containerd", + "output": [ + "infra" + ] + }, + { + "input": ":doughnut: enhancement", + "output": [ + "maintenance" + ] + }, + { + "input": "sentry", + "output": [ + "infra" + ] + }, + { + "input": "dissertation", + "output": [ + "research" + ] + }, + { + "input": "mentoring", + "output": [ + "mentoring" + ] + }, + { + "input": "confer", + "output": [ + "talk" + ] + }, + { + "input": "component: core utilities", + "output": [ + "maintenance" + ] + }, + { + "input": "infosec", + "output": [ + "security" + ] + }, + { + "input": "vulnerability", + "output": [ + "security" + ] + }, + { + "input": "has pr", + "output": [ + "null" + ] + }, + { + "input": "status: code review request", + "output": [ + "null" + ] + }, + { + "input": "teaching", + "output": [ + "tutorial" + ] + }, + { + "input": "target:ios", + "output": [ + "platform" + ] + }, + { + "input": "protection", + "output": [ + "security" + ] + }, + { + "input": ":robot: android", + "output": [ + "platform" + ] + }, + { + "input": "type: documentation :book:", + "output": [ + "doc" + ] + }, + { + "input": "webaim", + "output": [ + "a11y" + ] + }, + { + "input": "wontfix", + "output": [ + "null" + ] + }, + { + "input": "needs triage", + "output": [ + "null" + ] + }, + { + "input": "contribution welcome", + "output": [ + "null" + ] + }, + { + "input": "target:macos", + "output": [ + "platform" + ] + }, + { + "input": "assertion", + "output": [ + "test" + ] + }, + { + "input": "blog", + "output": [ + "blog" + ] + }, + { + "input": "review in progress", + "output": [ + "null" + ] + }, + { + "input": "node next", + "output": [ + "platform" + ] + }, + { + "input": "future architecture enhancements", + "output": [ + "ideas" + ] + }, + { + "input": "pmi", + "output": [ + "projectManagement" + ] + }, + { + "input": "promotion", + "output": [ + "promotion" + ] + }, + { + "input": "validation", + "output": [ + "review" + ] + }, + { + "input": "art", + "output": [ + "design" + ] + }, + { + "input": "film", + "output": [ + "video" + ] + }, + { + "input": "bitbucket cloud", + "output": [ + "infra" + ] + }, + { + "input": "labour", + "output": [ + "maintenance" + ] + }, + { + "input": "python", + "output": [ + "code" + ] + }, + { + "input": "suggestion", + "output": [ + "ideas" + ] + }, + { + "input": "future crypto enhancements", + "output": [ + "ideas" + ] + }, + { + "input": "attitudinal user testing", + "output": [ + "userTesting" + ] + }, + { + "input": "electron", + "output": [ + "tool" + ] + }, + { + "input": "trial", + "output": [ + "test" + ] + }, + { + "input": "definition:request", + "output": [ + "ideas" + ] + }, + { + "input": "pr: good example", + "output": [ + "example" + ] + }, + { + "input": "data protection", + "output": [ + "security" + ] + }, + { + "input": "resolution: support redirect", + "output": [ + "null" + ] + }, + { + "input": "cloud", + "output": [ + "infra" + ] + }, + { + "input": "target:android", + "output": [ + "platform" + ] + }, + { + "input": "assessment", + "output": [ + "test" + ] + }, + { + "input": "monitor", + "output": [ + "maintenance" + ] + }, + { + "input": "css", + "output": [ + "code" + ] + }, + { + "input": "hack", + "output": [ + "code" + ] + }, + { + "input": "translation", + "output": [ + "translation" + ] + }, + { + "input": "research opportunity", + "output": [ + "research" + ] + }, + { + "input": "vultr", + "output": [ + "infra" + ] + }, + { + "input": "kubernetes", + "output": [ + "infra" + ] + }, + { + "input": "discussion", + "output": [ + "ideas" + ] + }, + { + "input": "needs a example app.", + "output": [ + "null" + ] + }, + { + "input": "wiki", + "output": [ + "doc" + ] + }, + { + "input": "parser", + "output": [ + "tool" + ] + }, + { + "input": "feat: pwa", + "output": [ + "code" + ] + }, + { + "input": ":iphone: mobile", + "output": [ + "platform" + ] + }, + { + "input": "program", + "output": [ + "platform" + ] + }, + { + "input": "backer finding", + "output": [ + "fundingFinding" + ] + }, + { + "input": "digital ocean", + "output": [ + "infra" + ] + }, + { + "input": "safeguard", + "output": [ + "security" + ] + }, + { + "input": "iac", + "output": [ + "infra" + ] + }, + { + "input": "javascript", + "output": [ + "code" + ] + }, + { + "input": "integration test", + "output": [ + "test" + ] + }, + { + "input": "glo", + "output": [ + "projectManagement" + ] + }, + { + "input": "porting", + "output": [ + "platform" + ] + }, + { + "input": "status: on hold", + "output": [ + "null" + ] + }, + { + "input": "status: hacktoberfest approved", + "output": [ + "null" + ] + }, + { + "input": "evaluation", + "output": [ + "test" + ] + }, + { + "input": "go client internal release", + "output": [ + "infra" + ] + }, + { + "input": "type: test", + "output": [ + "test" + ] + }, + { + "input": "must-triage", + "output": [ + "null" + ] + }, + { + "input": "gradle", + "output": [ + "infra" + ] + }, + { + "input": "accessibility", + "output": [ + "a11y" + ] + }, + { + "input": "status: work in progress", + "output": [ + "null" + ] + }, + { + "input": "other language integration feature", + "output": [ + "ideas" + ] + }, + { + "input": "difficulty: medium", + "output": [ + "null" + ] + }, + { + "input": "data wrangling", + "output": [ + "data" + ] + }, + { + "input": "sast", + "output": [ + "security" + ] + }, + { + "input": "tech-debt", + "output": [ + "maintenance" + ] + }, + { + "input": "data entry", + "output": [ + "data" + ] + }, + { + "input": "fault", + "output": [ + "bug" + ] + }, + { + "input": "problem", + "output": [ + "bug" + ] + }, + { + "input": "brand icon", + "output": [ + "design" + ] + }, + { + "input": "internal-issue-created", + "output": [ + "bug" + ] + }, + { + "input": "pmp", + "output": [ + "projectManagement" + ] + }, + { + "input": "bdd", + "output": [ + "test" + ] + }, + { + "input": "checkpoint", + "output": [ + "review" + ] + }, + { + "input": "csharp", + "output": [ + "code" + ] + }, + { + "input": "pr: unreviewed", + "output": [ + "null" + ] + }, + { + "input": "component: test renderer", + "output": [ + "test" + ] + }, + { + "input": "idea", + "output": [ + "ideas" + ] + }, + { + "input": "needs browser testing", + "output": [ + "null" + ] + }, + { + "input": "status: in progress", + "output": [ + "null" + ] + }, + { + "input": "feedback requested", + "output": [ + "null" + ] + }, + { + "input": "wcag", + "output": [ + "a11y" + ] + }, + { + "input": "bugs", + "output": [ + "bug" + ] + }, + { + "input": "mentor", + "output": [ + "mentoring" + ] + }, + { + "input": "economics", + "output": [ + "financial" + ] + }, + { + "input": "lib", + "output": [ + "plugin" + ] + }, + { + "input": "puppet", + "output": [ + "infra" + ] + }, + { + "input": ":speech_balloon: question", + "output": [ + "question" + ] + }, + { + "input": "c/c++", + "output": [ + "code" + ] + }, + { + "input": "type: enhancement :bulb:", + "output": [ + "ideas" + ] + }, + { + "input": "pr: internal", + "output": [ + "code" + ] + }, + { + "input": "business", + "output": [ + "business" + ] + }, + { + "input": "prometheus", + "output": [ + "infra" + ] + }, + { + "input": "triage", + "output": [ + "null" + ] + }, + { + "input": "pr: new feature :rocket:", + "output": [ + "ideas" + ] + }, + { + "input": "type: discuss :speech_balloon:", + "output": [ + "ideas" + ] + }, + { + "input": "doc", + "output": [ + "doc" + ] + }, + { + "input": "ie8", + "output": [ + "platform" + ] + }, + { + "input": "blogs", + "output": [ + "blog" + ] + }, + { + "input": "feat: unit-mocha", + "output": [ + "test" + ] + }, + { + "input": "enterprise", + "output": [ + "business" + ] + }, + { + "input": "component: scheduler", + "output": [ + "null" + ] + }, + { + "input": "regression", + "output": [ + "bug" + ] + }, + { + "input": "spec: class fields", + "output": [ + "doc" + ] + }, + { + "input": "commercial", + "output": [ + "business" + ] + }, + { + "input": "infra", + "output": [ + "infra" + ] + }, + { + "input": "terraform", + "output": [ + "infra" + ] + }, + { + "input": "go", + "output": [ + "code" + ] + }, + { + "input": "figure", + "output": [ + "design" + ] + }, + { + "input": "layout", + "output": [ + "design" + ] + }, + { + "input": "specification", + "output": [ + "doc" + ] + }, + { + "input": "vector image", + "output": [ + "design" + ] + }, + { + "input": "greenkeeper", + "output": [ + "infra" + ] + }, + { + "input": "tdd", + "output": [ + "test" + ] + }, + { + "input": "performance", + "output": [ + "maintenance" + ] + }, + { + "input": "raster image", + "output": [ + "design" + ] + }, + { + "input": "mishap", + "output": [ + "bug" + ] + }, + { + "input": "sketch", + "output": [ + "design" + ] + }, + { + "input": "released", + "output": [ + "null" + ] + }, + { + "input": "linux", + "output": [ + "platform" + ] + }, + { + "input": "font design", + "output": [ + "design" + ] + }, + { + "input": ":rocket: deployment", + "output": [ + "infra" + ] + }, + { + "input": "feat: e2e-nightwatch", + "output": [ + "test" + ] + }, + { + "input": "type: infrastructure", + "output": [ + "infra" + ] + }, + { + "input": "engine vulns", + "output": [ + "security" + ] + }, + { + "input": "syntax feature request", + "output": [ + "ideas" + ] + }, + { + "input": "type: security", + "output": [ + "security" + ] + }, + { + "input": "deliverable", + "output": [ + "projectManagement" + ] + }, + { + "input": "manual", + "output": [ + "doc" + ] + }, + { + "input": "target:osx", + "output": [ + "platform" + ] + }, + { + "input": "axe", + "output": [ + "a11y" + ] + }, + { + "input": ":bug: bug", + "output": [ + "bug" + ] + }, + { + "input": "type: sendgrid enhancement", + "output": [ + "maintenance" + ] + }, + { + "input": "operating system", + "output": [ + "platform" + ] + }, + { + "input": "advance developer workflow", + "output": [ + "infra" + ] + }, + { + "input": "safety", + "output": [ + "security" + ] + }, + { + "input": "phonetic", + "output": [ + "audio" + ] + }, + { + "input": "to do", + "output": [ + "maintenance" + ] + }, + { + "input": "concept", + "output": [ + "ideas" + ] + }, + { + "input": "lerna", + "output": [ + "infra" + ] + }, + { + "input": "readme", + "output": [ + "doc" + ] + }, + { + "input": "security", + "output": [ + "security" + ] + }, + { + "input": "music", + "output": [ + "audio" + ] + }, + { + "input": "needs a failing test", + "output": [ + "null" + ] + }, + { + "input": "customer experience", + "output": [ + "design" + ] + }, + { + "input": "extension", + "output": [ + "plugin" + ] + }, + { + "input": "todo", + "output": [ + "maintenance" + ] + }, + { + "input": "lint", + "output": [ + "maintenance" + ] + }, + { + "input": "target:browser", + "output": [ + "platform" + ] + }, + { + "input": "feature request", + "output": [ + "ideas" + ] + }, + { + "input": "component: optimizing compiler", + "output": [ + "code" + ] + }, + { + "input": "css-select", + "output": [ + "code" + ] + }, + { + "input": "figma", + "output": [ + "tool" + ] + }, + { + "input": "finance", + "output": [ + "financial" + ] + }, + { + "input": "closed due to inactivity", + "output": [ + "null" + ] + }, + { + "input": ":rocket: feature request", + "output": [ + "ideas" + ] + }, + { + "input": "jira", + "output": [ + "projectManagement" + ] + }, + { + "input": "survey", + "output": [ + "review" + ] + }, + { + "input": "behavioral user testing", + "output": [ + "userTesting" + ] + }, + { + "input": "multi module", + "output": [ + "maintenance" + ] + }, + { + "input": "discussion :speech_balloon:", + "output": [ + "ideas" + ] + }, + { + "input": "mixing", + "output": [ + "audio" + ] + }, + { + "input": "0 - backlog", + "output": [ + "null" + ] + }, + { + "input": "update", + "output": [ + "maintenance" + ] + }, + { + "input": "present", + "output": [ + "talk" + ] + }, + { + "input": "modules", + "output": [ + "code" + ] + }, + { + "input": "lang-julia", + "output": [ + "code" + ] + }, + { + "input": "usability testing", + "output": [ + "userTesting" + ] + }, + { + "input": "vuln", + "output": [ + "security" + ] + }, + { + "input": "demo", + "output": [ + "example" + ] + }, + { + "input": "corporate event", + "output": [ + "eventOrganizing" + ] + }, + { + "input": "type: refactor", + "output": [ + "code" + ] + }, + { + "input": "spam", + "output": [ + "null" + ] + }, + { + "input": "definition:bug", + "output": [ + "bug" + ] + }, + { + "input": "help wanted", + "output": [ + "null" + ] + }, + { + "input": "type: idea", + "output": [ + "ideas" + ] + }, + { + "input": ":bulb: proposal", + "output": [ + "ideas" + ] + }, + { + "input": "handshakes", + "output": [ + "business" + ] + }, + { + "input": "platform", + "output": [ + "platform" + ] + }, + { + "input": "cli", + "output": [ + "code" + ] + }, + { + "input": "wave", + "output": [ + "a11y" + ] + }, + { + "input": "ansible", + "output": [ + "infra" + ] + }, + { + "input": "lang-convert", + "output": [ + "translation" + ] + }, + { + "input": "feat: eslint", + "output": [ + "maintenance" + ] + }, + { + "input": "gdpr", + "output": [ + "security" + ] + }, + { + "input": "type: doc update", + "output": [ + "doc" + ] + }, + { + "input": "spec: classes", + "output": [ + "doc" + ] + }, + { + "input": "websocket", + "output": [ + "tool" + ] + }, + { + "input": "android", + "output": [ + "platform" + ] + }, + { + "input": "speach", + "output": [ + "talk" + ] + }, + { + "input": "pr: bug fix :bug:", + "output": [ + "bug" + ] + }, + { + "input": "a/b testing", + "output": [ + "userTesting" + ] + }, + { + "input": "chef", + "output": [ + "infra" + ] + }, + { + "input": "patreon", + "output": [ + "financial" + ] + }, + { + "input": "pr: reviewed-changes-requested", + "output": [ + "null" + ] + }, + { + "input": "on hold", + "output": [ + "null" + ] + }, + { + "input": "ui test", + "output": [ + "test" + ] + }, + { + "input": "analysis", + "output": [ + "review" + ] + }, + { + "input": "pr: needs review", + "output": [ + "null" + ] + }, + { + "input": "component: build infrastructure", + "output": [ + "infra" + ] + }, + { + "input": "youtube", + "output": [ + "video" + ] + }, + { + "input": "spec: decorators (legacy)", + "output": [ + "doc" + ] + }, + { + "input": "deployment", + "output": [ + "infra" + ] + }, + { + "input": "mentorship", + "output": [ + "mentoring" + ] + }, + { + "input": "feat: typescript", + "output": [ + "code" + ] + }, + { + "input": "feat: cli", + "output": [ + "code" + ] + }, + { + "input": "utils", + "output": [ + "plugin" + ] + }, + { + "input": "didactic", + "output": [ + "tutorial" + ] + }, + { + "input": "story", + "output": [ + "content" + ] + }, + { + "input": "academia", + "output": [ + "research" + ] + }, + { + "input": "component: developer tools", + "output": [ + "tool" + ] + }, + { + "input": "inspiration", + "output": [ + "ideas" + ] + }, + { + "input": "business process", + "output": [ + "business" + ] + }, + { + "input": "sustain", + "output": [ + "maintenance" + ] + }, + { + "input": "confirmed", + "output": [ + "null" + ] + }, + { + "input": "type: question :grey_question:", + "output": [ + "question" + ] + }, + { + "input": "cmty:question", + "output": [ + "question" + ] + }, + { + "input": "need-info", + "output": [ + "null" + ] + }, + { + "input": "sustenance", + "output": [ + "maintenance" + ] + }, + { + "input": "good first issue", + "output": [ + "null" + ] + }, + { + "input": "kind/discussion", + "output": [ + "ideas" + ] + }, + { + "input": "palette", + "output": [ + "design" + ] + }, + { + "input": "azure ad", + "output": [ + "infra" + ] + }, + { + "input": "data collection", + "output": [ + "data" + ] + }, + { + "input": "external-bugs", + "output": [ + "bug" + ] + }, + { + "input": "deal", + "output": [ + "business" + ] + }, + { + "input": "hacking", + "output": [ + "security" + ] + }, + { + "input": "kind/question", + "output": [ + "question" + ] + }, + { + "input": "video", + "output": [ + "video" + ] + }, + { + "input": "component: test utils", + "output": [ + "test" + ] + }, + { + "input": "hsv", + "output": [ + "design" + ] + }, + { + "input": "thesis", + "output": [ + "content" + ] + }, + { + "input": "pentesting", + "output": [ + "security" + ] + }, + { + "input": "design", + "output": [ + "design" + ] + }, + { + "input": "website copy", + "output": [ + "content" + ] + }, + { + "input": "type: bug :bug:", + "output": [ + "bug" + ] + }, + { + "input": "guide", + "output": [ + "tutorial" + ] + }, + { + "input": "next meetup!", + "output": [ + "eventOrganizing" + ] + }, + { + "input": "feat: ui", + "output": [ + "design" + ] + }, + { + "input": "mastering", + "output": [ + "audio" + ] + }, + { + "input": "steps", + "output": [ + "doc" + ] + }, + { + "input": "abandoned", + "output": [ + "null" + ] + }, + { + "input": "badges", + "output": [ + "doc" + ] + }, + { + "input": "sponsor", + "output": [ + "mentoring" + ] + }, + { + "input": "assess", + "output": [ + "test" + ] + }, + { + "input": "pr: merged", + "output": [ + "null" + ] + }, + { + "input": "vlog", + "output": [ + "video" + ] + }, + { + "input": "acceptance testing", + "output": [ + "test" + ] + }, + { + "input": "hot discussion", + "output": [ + "ideas" + ] + }, + { + "input": "tv", + "output": [ + "video" + ] + }, + { + "input": "soundtrack", + "output": [ + "audio" + ] + }, + { + "input": "design (category)", + "output": [ + "design" + ] + }, + { + "input": "ci/cd", + "output": [ + "infra" + ] + }, + { + "input": "multi-cloud", + "output": [ + "infra" + ] + }, + { + "input": "funding finder", + "output": [ + "fundingFinding" + ] + }, + { + "input": "difficulty: hard", + "output": [ + "null" + ] + }, + { + "input": "documentation :book:", + "output": [ + "doc" + ] + }, + { + "input": "diary", + "output": [ + "blog" + ] + }, + { + "input": "standard", + "output": [ + "doc" + ] + }, + { + "input": "colour", + "output": [ + "design" + ] + }, + { + "input": ":computer: desktop", + "output": [ + "platform" + ] + }, + { + "input": "flaw", + "output": [ + "bug" + ] + }, + { + "input": "reliability", + "output": [ + "maintenance" + ] + }, + { + "input": "feat: cli-service build", + "output": [ + "code" + ] + }, + { + "input": "blocked", + "output": [ + "null" + ] + }, + { + "input": "type: maintenance :construction:", + "output": [ + "maintenance" + ] + }, + { + "input": "ios", + "output": [ + "platform" + ] + }, + { + "input": "planned feature", + "output": [ + "ideas" + ] + }, + { + "input": "kind/feature-request", + "output": [ + "ideas" + ] + }, + { + "input": "rfc", + "output": [ + "ideas" + ] + }, + { + "input": "image", + "output": [ + "design" + ] + }, + { + "input": "stock", + "output": [ + "infra" + ] + }, + { + "input": "reminder", + "output": [ + "null" + ] + }, + { + "input": "status: review needed", + "output": [ + "null" + ] + }, + { + "input": "in review", + "output": [ + "null" + ] + }, + { + "input": "lang-crystal", + "output": [ + "code" + ] + }, + { + "input": "pr: breaking change", + "output": [ + "code" + ] + }, + { + "input": "phone", + "output": [ + "platform" + ] + }, + { + "input": "refactor", + "output": [ + "code" + ] + }, + { + "input": "monologue", + "output": [ + "talk" + ] + }, + { + "input": "pr: reviewed-approved", + "output": [ + "null" + ] + }, + { + "input": "new best practice", + "output": [ + "ideas" + ] + }, + { + "input": "lecture", + "output": [ + "tutorial" + ] + }, + { + "input": "backing", + "output": [ + "financial" + ] + }, + { + "input": "website", + "output": [ + "code" + ] + }, + { + "input": "browser issue", + "output": [ + "bug" + ] + }, + { + "input": "aws", + "output": [ + "infra" + ] + }, + { + "input": "pr: polish :nail_care:", + "output": [ + "maintenance" + ] + }, + { + "input": "article", + "output": [ + "content" + ] + }, + { + "input": "peer-review", + "output": [ + "review" + ] + }, + { + "input": "writer-needed", + "output": [ + "null" + ] + }, + { + "input": "eventstorming", + "output": [ + "ideas" + ] + }, + { + "input": "freemasonry icons", + "output": [ + "design" + ] + }, + { + "input": "lean", + "output": [ + "projectManagement" + ] + }, + { + "input": "cannot reproduce", + "output": [ + "null" + ] + }, + { + "input": "paas", + "output": [ + "platform" + ] + }, + { + "input": ".net core", + "output": [ + "code" + ] + }, + { + "input": "wiretap", + "output": [ + "security" + ] + }, + { + "input": "feat: unit-jest", + "output": [ + "test" + ] + }, + { + "input": "instruction", + "output": [ + "doc" + ] + }, + { + "input": "infrastructure", + "output": [ + "infra" + ] + }, + { + "input": "rgb", + "output": [ + "design" + ] + }, + { + "input": "ideas", + "output": [ + "ideas" + ] + }, + { + "input": "target:windows", + "output": [ + "platform" + ] + }, + { + "input": "funding call", + "output": [ + "fundingFinding" + ] + }, + { + "input": "iconography", + "output": [ + "design" + ] + }, + { + "input": "promote", + "output": [ + "promotion" + ] + }, + { + "input": "template", + "output": [ + "example" + ] + }, + { + "input": "support", + "output": [ + "null" + ] + }, + { + "input": "first-timers-only", + "output": [ + "null" + ] + }, + { + "input": "java", + "output": [ + "code" + ] + }, + { + "input": "cdn", + "output": [ + "platform" + ] + }, + { + "input": "pr: new dependency", + "output": [ + "ideas" + ] + }, + { + "input": "status: ready for deploy", + "output": [ + "null" + ] + }, + { + "input": "computer", + "output": [ + "platform" + ] + }, + { + "input": "troubleshooting", + "output": [ + "bug" + ] + }, + { + "input": "spec: bigint", + "output": [ + "doc" + ] + }, + { + "input": "spec: async generators", + "output": [ + "doc" + ] + }, + { + "input": "feature proposal", + "output": [ + "ideas" + ] + }, + { + "input": "e2e test", + "output": [ + "test" + ] + }, + { + "input": "approachability", + "output": [ + "a11y" + ] + }, + { + "input": "investment", + "output": [ + "financial" + ] + }, + { + "input": "conflicts", + "output": [ + "null" + ] + }, + { + "input": "optimisation", + "output": [ + "code" + ] + }, + { + "input": "kotlin", + "output": [ + "code" + ] + }, + { + "input": "planned for next release", + "output": [ + "null" + ] + }, + { + "input": "unconfirmed", + "output": [ + "null" + ] + }, + { + "input": "type: duplicate :repeat:", + "output": [ + "null" + ] + }, + { + "input": "devops: defend", + "output": [ + "infra" + ] + }, + { + "input": "blogging", + "output": [ + "blog" + ] + }, + { + "input": "friendliness", + "output": [ + "a11y" + ] + }, + { + "input": "i18n", + "output": [ + "translation" + ] + }, + { + "input": "cla signed", + "output": [ + "null" + ] + }, + { + "input": "icebox", + "output": [ + "platform" + ] + }, + { + "input": "meetup", + "output": [ + "eventOrganizing" + ] + }, + { + "input": "examination", + "output": [ + "test" + ] + }, + { + "input": "mobile device support", + "output": [ + "platform" + ] + }, + { + "input": "component: component api", + "output": [ + "code" + ] + }, + { + "input": "spec: decorators", + "output": [ + "doc" + ] + }, + { + "input": "addon", + "output": [ + "plugin" + ] + }, + { + "input": "cracking", + "output": [ + "security" + ] + }, + { + "input": ":sparkles: enhancement", + "output": [ + "maintenance" + ] + }, + { + "input": "component: hooks", + "output": [ + "code" + ] + }, + { + "input": "improved error handling", + "output": [ + "code" + ] + }, + { + "input": "needs repro", + "output": [ + "null" + ] + }, + { + "input": "upkeep", + "output": [ + "maintenance" + ] + }, + { + "input": "component: reactis", + "output": [ + "code" + ] + }, + { + "input": "pr: ready to be merged", + "output": [ + "null" + ] + }, + { + "input": "sample", + "output": [ + "example" + ] + }, + { + "input": ":white_check_mark: testing", + "output": [ + "test" + ] + }, + { + "input": "maintenance", + "output": [ + "maintenance" + ] + }, + { + "input": "external", + "output": [ + "plugin" + ] + }, + { + "input": "desktop", + "output": [ + "platform" + ] + }, + { + "input": "hacktoberfest", + "output": [ + "code" + ] + }, + { + "input": "data", + "output": [ + "data" + ] + }, + { + "input": "lang-dart", + "output": [ + "code" + ] + }, + { + "input": ".net framework", + "output": [ + "code" + ] + }, + { + "input": "icon", + "output": [ + "design" + ] + }, + { + "input": "grant finder", + "output": [ + "fundingFinding" + ] + }, + { + "input": "needs-research", + "output": [ + "null" + ] + }, + { + "input": "cybersec", + "output": [ + "security" + ] + }, + { + "input": "biz", + "output": [ + "business" + ] + }, + { + "input": "internationalization", + "output": [ + "translation" + ] + }, + { + "input": "utility-lib", + "output": [ + "plugin" + ] + }, + { + "input": "qa", + "output": [ + "test" + ] + }, + { + "input": "do not merge", + "output": [ + "null" + ] + }, + { + "input": "hacked", + "output": [ + "security" + ] + }, + { + "input": "how-to", + "output": [ + "tutorial" + ] + }, + { + "input": "beginner-friendly", + "output": [ + "null" + ] + }, + { + "input": "trello", + "output": [ + "projectManagement" + ] + }, + { + "input": "os", + "output": [ + "platform" + ] + }, + { + "input": "sound", + "output": [ + "audio" + ] + }, + { + "input": "docs improvement", + "output": [ + "doc" + ] + }, + { + "input": ":heavy_plus_sign: feature request", + "output": [ + "ideas" + ] + }, + { + "input": "glitch", + "output": [ + "bug" + ] + }, + { + "input": "cx", + "output": [ + "design" + ] + }, + { + "input": "dependencies", + "output": [ + "maintenance" + ] + }, + { + "input": "inquiry", + "output": [ + "question" + ] + }, + { + "input": "deno", + "output": [ + "platform" + ] + }, + { + "input": "area: crash", + "output": [ + "bug" + ] + }, + { + "input": "camera", + "output": [ + "video" + ] + }, + { + "input": "pr: wip", + "output": [ + "null" + ] + }, + { + "input": "devops: configure", + "output": [ + "infra" + ] + }, + { + "input": "component: dom", + "output": [ + "code" + ] + }, + { + "input": "programming", + "output": [ + "code" + ] + }, + { + "input": "test needed", + "output": [ + "null" + ] + }, + { + "input": "question :question:", + "output": [ + "question" + ] + }, + { + "input": "@font-face", + "output": [ + "design" + ] + }, + { + "input": "rgba", + "output": [ + "design" + ] + }, + { + "input": "parser-specific", + "output": [ + "tool" + ] + }, + { + "input": "pr: new feature", + "output": [ + "ideas" + ] + }, + { + "input": "wikipedia", + "output": [ + "doc" + ] + }, + { + "input": "shell", + "output": [ + "tool" + ] + }, + { + "input": "cmty:feature-request", + "output": [ + "ideas" + ] + }, + { + "input": "contributions", + "output": [ + "maintenance" + ] + }, + { + "input": "tryout", + "output": [ + "test" + ] + }, + { + "input": "needs review", + "output": [ + "null" + ] + }, + { + "input": "thought", + "output": [ + "ideas" + ] + }, + { + "input": "kind/bug", + "output": [ + "bug" + ] + }, + { + "input": "data analysis", + "output": [ + "data" + ] + }, + { + "input": "contenu", + "output": [ + "content" + ] + }, + { + "input": "feat/cli", + "output": [ + "code" + ] + }, + { + "input": "fund investigation", + "output": [ + "fundingFinding" + ] + }, + { + "input": "type: question", + "output": [ + "question" + ] + }, + { + "input": "type: enhancement", + "output": [ + "maintenance" + ] + }, + { + "input": "basecamp", + "output": [ + "projectManagement" + ] + }, + { + "input": "literature review", + "output": [ + "research" + ] + }, + { + "input": "needs docs", + "output": [ + "null" + ] + }, + { + "input": "socket.io client", + "output": [ + "tool" + ] + }, + { + "input": "fiscal", + "output": [ + "financial" + ] + }, + { + "input": "user testing", + "output": [ + "userTesting" + ] + }, + { + "input": "debug information", + "output": [ + "bug" + ] + }, + { + "input": "frontend", + "output": [ + "code" + ] + }, + { + "input": "area/cli", + "output": [ + "infra" + ] + }, + { + "input": "upstream", + "output": [ + "null" + ] + }, + { + "input": "question :raising_hand:", + "output": [ + "question" + ] + }, + { + "input": "style", + "output": [ + "design" + ] + }, + { + "input": "clean up", + "output": [ + "maintenance" + ] + }, + { + "input": "motif", + "output": [ + "design" + ] + }, + { + "input": "to merge", + "output": [ + "null" + ] + }, + { + "input": "event", + "output": [ + "eventOrganizing" + ] + }, + { + "input": "status: help wanted", + "output": [ + "null" + ] + }, + { + "input": "priority: medium", + "output": [ + "null" + ] + }, + { + "input": "financial backing", + "output": [ + "fundingFinding" + ] + }, + { + "input": "ruby", + "output": [ + "code" + ] + }, + { + "input": "es7", + "output": [ + "code" + ] + }, + { + "input": "warrant", + "output": [ + "security" + ] + }, + { + "input": "cmty:status:cancelled", + "output": [ + "null" + ] + }, + { + "input": "plan", + "output": [ + "ideas" + ] + }, + { + "input": "hackathon", + "output": [ + "code" + ] + }, + { + "input": ":beginner: documentation", + "output": [ + "doc" + ] + }, + { + "input": "typography", + "output": [ + "design" + ] + }, + { + "input": "counsel", + "output": [ + "mentoring" + ] + }, + { + "input": "recording", + "output": [ + "audio" + ] + }, + { + "input": "crowdin", + "output": [ + "translation" + ] + }, + { + "input": "component: eslint rules", + "output": [ + "maintenance" + ] + }, + { + "input": "difficulty: easy", + "output": [ + "null" + ] + }, + { + "input": "repare", + "output": [ + "maintenance" + ] + }, + { + "input": "conference", + "output": [ + "eventOrganizing" + ] + }, + { + "input": "great insight", + "output": [ + "ideas" + ] + }, + { + "input": "phd", + "output": [ + "research" + ] + }, + { + "input": "documentation :orange_book:", + "output": [ + "doc" + ] + }, + { + "input": "type: invalid :x:", + "output": [ + "null" + ] + }, + { + "input": "needs changelog", + "output": [ + "null" + ] + }, + { + "input": "feat: e2e-cypress", + "output": [ + "test" + ] + }, + { + "input": ":lipstick: ui", + "output": [ + "design" + ] + }, + { + "input": "1 - ready", + "output": [ + "null" + ] + }, + { + "input": "backdoor", + "output": [ + "security" + ] + }, + { + "input": "fund collection", + "output": [ + "fundingFinding" + ] + }, + { + "input": "approved", + "output": [ + "null" + ] + }, + { + "input": "talk", + "output": [ + "talk" + ] + }, + { + "input": "subtitle", + "output": [ + "translation" + ] + }, + { + "input": "funding research", + "output": [ + "fundingFinding" + ] + }, + { + "input": "todo :spiral_notepad:", + "output": [ + "maintenance" + ] + }, + { + "input": "review", + "output": [ + "review" + ] + }, + { + "input": "user interface", + "output": [ + "design" + ] + }, + { + "input": "critical", + "output": [ + "null" + ] + }, + { + "input": "business (category)", + "output": [ + "business" + ] + }, + { + "input": "privacy", + "output": [ + "security" + ] + }, + { + "input": "tests", + "output": [ + "test" + ] + }, + { + "input": "duplicate", + "output": [ + "null" + ] + }, + { + "input": "pr: breaking change :boom:", + "output": [ + "code" + ] + }, + { + "input": "web app", + "output": [ + "code" + ] + }, + { + "input": "test", + "output": [ + "test" + ] + }, + { + "input": "check", + "output": [ + "review" + ] + }, + { + "input": "documentation", + "output": [ + "doc" + ] + }, + { + "input": "television", + "output": [ + "video" + ] + }, + { + "input": "uat", + "output": [ + "test" + ] + }, + { + "input": "backer", + "output": [ + "financial" + ] + }, + { + "input": "exploit", + "output": [ + "security" + ] + }, + { + "input": "requires upstream change", + "output": [ + "code" + ] + }, + { + "input": "travis-yml", + "output": [ + "infra" + ] + }, + { + "input": "node", + "output": [ + "platform" + ] + }, + { + "input": "dev experience", + "output": [ + "design" + ] + }, + { + "input": "pr: bug fix", + "output": [ + "bug" + ] + }, + { + "input": "backend", + "output": [ + "code" + ] + }, + { + "input": "data cleaning", + "output": [ + "data" + ] + }, + { + "input": "pr: internal :house:", + "output": [ + "code" + ] + }, + { + "input": ":question: question", + "output": [ + "question" + ] + }, + { + "input": "technical debt", + "output": [ + "maintenance" + ] + }, + { + "input": "core", + "output": [ + "maintenance" + ] + }, + { + "input": "client test", + "output": [ + "userTesting" + ] + }, + { + "input": "weekly-digest", + "output": [ + "blog" + ] + }, + { + "input": "component: shallow renderer", + "output": [ + "code" + ] + }, + { + "input": "commerce", + "output": [ + "business" + ] + }, + { + "input": "browser: ie", + "output": [ + "platform" + ] + }, + { + "input": "hsl", + "output": [ + "design" + ] + }, + { + "input": "status: left out", + "output": [ + "null" + ] + }, + { + "input": ".net standard", + "output": [ + "code" + ] + }, + { + "input": "pr welcome", + "output": [ + "null" + ] + }, + { + "input": "opinions needed", + "output": [ + "ideas" + ] + }, + { + "input": "documents", + "output": [ + "doc" + ] + }, + { + "input": "legacy", + "output": [ + "maintenance" + ] + }, + { + "input": "grafana", + "output": [ + "infra" + ] + }, + { + "input": "react native", + "output": [ + "code" + ] + }, + { + "input": "lang-go", + "output": [ + "code" + ] + }, + { + "input": "tutorial", + "output": [ + "tutorial" + ] + }, + { + "input": "plugin", + "output": [ + "plugin" + ] + }, + { + "input": "logo", + "output": [ + "design" + ] + }, + { + "input": ":grey_question: question", + "output": [ + "question" + ] + }, + { + "input": "refactoring", + "output": [ + "code" + ] + }, + { + "input": "browser: safari", + "output": [ + "platform" + ] + }, + { + "input": "saltstack", + "output": [ + "infra" + ] + }, + { + "input": "status: available", + "output": [ + "null" + ] + }, + { + "input": "component: server rendering", + "output": [ + "code" + ] + }, + { + "input": "htmlfile", + "output": [ + "code" + ] + }, + { + "input": "theorem", + "output": [ + "ideas" + ] + }, + { + "input": "social", + "output": [ + "eventOrganizing" + ] + }, + { + "input": "internationalisation", + "output": [ + "translation" + ] + }, + { + "input": "definition:enhancement", + "output": [ + "maintenance" + ] + }, + { + "input": "enquire", + "output": [ + "question" + ] + }, + { + "input": "packaging", + "output": [ + "platform" + ] + }, + { + "input": "lang-r", + "output": [ + "code" + ] + }, + { + "input": "type: regression :boom:", + "output": [ + "bug" + ] + }, + { + "input": "regression test", + "output": [ + "test" + ] + }, + { + "input": "new api proposal", + "output": [ + "ideas" + ] + }, + { + "input": "container", + "output": [ + "infra" + ] + }, + { + "input": "opencollective", + "output": [ + "financial" + ] + }, + { + "input": "bug report", + "output": [ + "bug" + ] + }, + { + "input": "type: performance", + "output": [ + "maintenance" + ] + }, + { + "input": "new definition", + "output": [ + "code" + ] + }, + { + "input": "pr: documentation", + "output": [ + "doc" + ] + }, + { + "input": ":boom: regression", + "output": [ + "bug" + ] + }, + { + "input": "clickup", + "output": [ + "projectManagement" + ] + }, + { + "input": "docs", + "output": [ + "doc" + ] + }, + { + "input": "installer", + "output": [ + "tool" + ] + }, + { + "input": "statement", + "output": [ + "ideas" + ] + }, + { + "input": "gcp", + "output": [ + "infra" + ] + }, + { + "input": "bug", + "output": [ + "bug" + ] + }, + { + "input": "opinion", + "output": [ + "ideas" + ] + }, + { + "input": "accepted", + "output": [ + "null" + ] + }, + { + "input": "html", + "output": [ + "code" + ] + }, + { + "input": "a11y", + "output": [ + "a11y" + ] + }, + { + "input": "general js", + "output": [ + "code" + ] + }, + { + "input": "unit test", + "output": [ + "test" + ] + }, + { + "input": "speak", + "output": [ + "talk" + ] + }, + { + "input": "brainstorming", + "output": [ + "ideas" + ] + }, + { + "input": "backup", + "output": [ + "maintenance" + ] + }, + { + "input": "status: accepted", + "output": [ + "null" + ] + }, + { + "input": "language", + "output": [ + "translation" + ] + }, + { + "input": "bugfix", + "output": [ + "bug" + ] + }, + { + "input": "question", + "output": [ + "question" + ] + }, + { + "input": "k8s", + "output": [ + "infra" + ] + }, + { + "input": "scrum", + "output": [ + "projectManagement" + ] + }, + { + "input": "paper", + "output": [ + "content" + ] + }, + { + "input": "upstream bug", + "output": [ + "bug" + ] + }, + { + "input": "library", + "output": [ + "tool" + ] + }, + { + "input": "stale", + "output": [ + "null" + ] + }, + { + "input": "testing", + "output": [ + "test" + ] + }, + { + "input": "optimization", + "output": [ + "code" + ] + }, + { + "input": "tv show", + "output": [ + "video" + ] + }, + { + "input": ":apple: ios", + "output": [ + "platform" + ] + }, + { + "input": "priority: low", + "output": [ + "null" + ] + }, + { + "input": "spec: async functions", + "output": [ + "doc" + ] + }, + { + "input": "target:gnu/linux", + "output": [ + "platform" + ] + }, + { + "input": "focus groups", + "output": [ + "userTesting" + ] + }, + { + "input": "dependency-update", + "output": [ + "maintenance" + ] + }, + { + "input": "dependency related", + "output": [ + "maintenance" + ] + }, + { + "input": "wip", + "output": [ + "null" + ] + }, + { + "input": "bootstrap", + "output": [ + "tool" + ] + }, + { + "input": "developer experience", + "output": [ + "design" + ] + }, + { + "input": "breaking change", + "output": [ + "code" + ] + }, + { + "input": "usability", + "output": [ + "a11y" + ] + }, + { + "input": "*nix", + "output": [ + "platform" + ] + }, + { + "input": "externs", + "output": [ + "plugin" + ] + }, + { + "input": "critique", + "output": [ + "review" + ] + }, + { + "input": "prince2", + "output": [ + "projectManagement" + ] + }, + { + "input": "demonstration", + "output": [ + "example" + ] + }, + { + "input": "pr: dependency ⬆️", + "output": [ + "maintenance" + ] + }, + { + "input": "pr: docs :memo:", + "output": [ + "doc" + ] + }, + { + "input": "windows", + "output": [ + "platform" + ] + }, + { + "input": "revisitinfuture", + "output": [ + "ideas" + ] + }, + { + "input": "tips", + "output": [ + "ideas" + ] + }, + { + "input": "reference", + "output": [ + "example" + ] + }, + { + "input": "priority: high", + "output": [ + "null" + ] + }, + { + "input": "cmty:bug-report", + "output": [ + "bug" + ] + } + ] + } +} \ No newline at end of file