textlint-rule-terminology
Advanced tools
Comparing version 1.1.27 to 1.1.28
{ | ||
"name": "textlint-rule-terminology", | ||
"version": "1.1.27", | ||
"version": "1.1.28", | ||
"description": "TextLint rule to check correct terms spelling", | ||
@@ -41,3 +41,2 @@ "author": { | ||
"jest": "^21.0.1", | ||
"semantic-release-tamia": "^1.1.1", | ||
"textlint-tester": "^2.2.4" | ||
@@ -49,8 +48,3 @@ }, | ||
"textlint-rule-helper": "^2.0.0" | ||
}, | ||
"release": { | ||
"analyzeCommits": "semantic-release-tamia/analyzeCommits", | ||
"generateNotes": "semantic-release-tamia/generateNotes", | ||
"verifyRelease": "semantic-release-tamia/verifyRelease" | ||
} | ||
} | ||
} |
[ | ||
// Brands | ||
"Airbnb", | ||
"Android", | ||
"AppleScript", | ||
@@ -17,2 +18,3 @@ "AppVeyor", | ||
"GraphQL", | ||
"iOS", | ||
"JavaScript", | ||
@@ -53,9 +55,26 @@ "JetBrains", | ||
// Abbreviations | ||
"3D", | ||
["3-D", "3D"], | ||
"Ajax", | ||
"API", | ||
["API['’]?s", "APIs"], | ||
"CSS", | ||
"GIF", | ||
"HTML", | ||
"HTTPS", | ||
"IoT", | ||
"I/O", | ||
["I-O", "I/O"], | ||
"JPEG", | ||
"MIME", | ||
"OK", | ||
"PaaS", | ||
"PDF", | ||
"PNG", | ||
"SaaS", | ||
"URL", | ||
["URL['’]?s", "URLs"], | ||
["an URL", "a URL"], | ||
["wi[- ]?fi", "Wi-Fi"], | ||
// APIs | ||
["RegExp?", "RegExp"], | ||
// Names | ||
@@ -68,6 +87,11 @@ "McKenzie", | ||
["id['’]?s", "IDs"], | ||
["backwards compatible", "backward compatible"], | ||
["build system(s?)", "build tool$1"], | ||
["CLI tool(s?)", "command line tool$1"], | ||
["CLI tool(s?)", "command-line tool$1"], | ||
["he or she", "they"], | ||
["he/she", "they"], | ||
["\\(s\\)he", "they"], | ||
["repo\\b", "repository"], | ||
["smartphone(s?)", "mobile phone$1"], | ||
["web[- ]?site(s?)", "site$1"], | ||
["repo\\b", "repository"], | ||
@@ -81,7 +105,32 @@ // Single word | ||
["bug[- ]fix(es?)", "bugfix$1"], | ||
["check[- ]box(es?)", "checkbox$1"], | ||
["code[- ]base(es?)", "codebase$1"], | ||
["co[- ]locate(d?)", "colocate$1"], | ||
["end[- ]point(s?)", "endpoint$1"], | ||
["e[- ]mail(s?)", "email$1"], | ||
["file[- ]name(s?)", "filename$1"], | ||
["front[- ]end(\\w*)", "frontend$1"], | ||
["hot[- ]key", "hotkey"], | ||
["hack[- ]a[- ]thon(s?)", "hackathon$1"], | ||
["host[- ]name(s?)", "hostname$1"], | ||
["hot[- ]key(s?)", "hotkey$1"], | ||
["life[- ]cycle", "lifecycle"], | ||
["life[- ]stream(s?)", "lifestream$1"], | ||
["lock[- ]file(s?)", "lockfile$1"], | ||
["mark-up", "markup"], // “mark up” as a verb is OK | ||
["meta[- ]data", "metadata"], | ||
["name[- ]space(s?)", "namespace$1"], | ||
["pre[- ]condition(s?)", "precondition$1"], | ||
["pre[- ]defined", "predefined"], | ||
["pre[- ]release(s?)", "prerelease$1"], | ||
["run[- ]time", "runtime"], | ||
["screen[- ]shot(s?)", "screenshot$1"], | ||
["screen[- ]?snap(s?)", "screenshot$1"], | ||
["sub[- ]class((?:es|ing)?)", "subclass$1"], | ||
["sub[- ]tree(s?)", "subtree$1"], | ||
["time[- ]stamp(s?)", "timestamp$1"], | ||
["touch[- ]screen(s?)", "touchscreen$1"], | ||
["user[- ]name(s?)", "username$1"], | ||
["walk[- ]through", "walkthrough"], | ||
["white[- ]space", "whitespace"], | ||
["wild[- ]card(s?)", "wildcard$1"], | ||
@@ -91,14 +140,29 @@ // Multiple words | ||
["css-?in-?js", "CSS in JS"], | ||
["code-?review(s?)", "code review$1"], | ||
["code-?splitting", "code splitting"], | ||
["end-?user(s?)", "end user$1"], | ||
["file-?type(s?)", "file type$1"], | ||
["open-?source(ed?)", "open source$1"], | ||
["regexp?(s?)", "regular expression$1"], | ||
["style-?guide(s?)", "style guide$1"], | ||
["tree-?shaking", "tree shaking"], | ||
["source-?map(s?)", "source map$1"], | ||
["style-?sheet(s?)", "style sheet$1"], | ||
["user-?base", "user base"], | ||
["web-?page(s?)", "web page$1"], | ||
// Hyphenated | ||
["built ?in", "built-in"], | ||
["client ?side", "client-side"], | ||
["command ?line", "command-line"], | ||
["end ?to ?end", "end-to-end"], | ||
["error ?prone", "error-prone"], | ||
["higher ?order", "higher-order"], | ||
["key[/ ]?value", "key-value"], | ||
["server ?side", "server-side"], | ||
["two ?steps?", "two-step"], | ||
["2 ?steps?", "two-step"], | ||
// Starts from a lower case letter in the middle of a sentence | ||
["(\\w+[^.?!]\\)? )base64", "$1base64"], | ||
["(\\w+[^.?!]\\)? )internet", "$1internet"], | ||
@@ -111,3 +175,4 @@ ["(\\w+[^.?!]\\)? )stylelint", "$1stylelint"], | ||
["pacakge(s?)", "package$1"], | ||
["tilda", "tilde"] | ||
["tilda", "tilde"], | ||
["falsey", "falsy"] | ||
] |
13072
4
262