retext-redundant-acronyms
Version:
retext plugin to check for redundant acronyms (ATM machine)
134 lines (133 loc) • 4.55 kB
JavaScript
/** @type {Readonly<Record<string, ReadonlyArray<ReadonlyArray<string>>>>} */
export const schema = {
ABM: [['antiballistic', 'missile']],
ABS: [['antilock', 'braking', 'system']],
AC: [['alternating', 'current']],
ADD: [
['attentiondeficit', 'disorder'],
['attention', 'deficit', 'disorder']
],
ADSL: [['asymmetric', 'digital', 'subscriber', 'line']],
ACT: [['american', 'college', 'test']],
AFC: [['american', 'footbal', 'conference']],
AIDS: [['acquired', 'immune', 'deficiency', 'syndrome']],
AM: [['amplitude', 'modulation']],
APL: [['a', 'programming', 'language']],
ARM: [['adjustable', 'rate', 'mortgage']],
ATC: [['air', 'traffic', 'control']],
ATM: [['automated', 'teller', 'machine']],
BASIC: [['beginner', 'allpurpose', 'symbolic', 'instruction', 'code']],
BBS: [['bulletin', 'board', 'system']],
CAD: [
['computer', 'aided', 'design'],
['computeraided', 'design']
],
CD: [['compact', 'disc']],
CGA: [['color', 'graphic', 'adapter']],
CNN: [['cable', 'news', 'network']],
CSS: [
['cascading', 'style', 'sheet'],
['cascading', 'stylesheet']
],
COBOL: [['common', 'businessoriented', 'language']],
CPI: [['consumer', 'price', 'index']],
CPU: [['central', 'processing', 'unit']],
DAT: [['digital', 'audio', 'tape']],
DC: [['direct', 'current']],
DMZ: [['demilitarized', 'zone']],
DOS: [['disk', 'operating', 'system']],
EBCDIC: [['extended', 'binary', 'coded', 'decimal', 'interchange', 'code']],
EGA: [['enhanced', 'graphic', 'adapter']],
FM: [['frequency', 'modulation']],
GIF: [['graphic', 'interchange', 'format']],
GOB: [['george', 'oscar', 'bluth']],
GOP: [['grand', 'old', 'party']],
GPS: [['global', 'positioning', 'system']],
GRE: [
['graduate', 'record', 'examination'],
['graduate', 'record', 'exam']
],
GUI: [['graphical', 'user', 'interface']],
HIV: [
['human', 'immuno', 'deficiency', 'virus'],
['human', 'immunodeficiency', 'virus']
],
HTML: [['hypertext', 'markup', 'language']],
IBM: [
['international', 'business', 'machine', 'corporation'],
['international', 'business', 'machine']
],
IP: [
['internet', 'protocol'],
['instruction', 'pointer']
],
IRA: [['individual', 'retirement', 'account']],
IRC: [['internet', 'relay', 'chat']],
ISBN: [['international', 'standard', 'book', 'number']],
ISDN: [['integrated', 'service', 'digital', 'network']],
KFC: [['kentucky', 'fried', 'chicken']],
LAN: [['local', 'area', 'network']],
LCD: [
['liquid', 'crystal', 'display'],
['liquidcrystal', 'display']
],
LED: [
['light', 'emitting', 'diode'],
['lightemitting', 'diode']
],
LEM: [['lunar', 'excursion', 'module']],
LPG: [['liquefied', 'petroleum', 'gas']],
MASH: [['mobile', 'army', 'surgical', 'hospital']],
MIDI: [['musical', 'instrument', 'digital', 'interface']],
NATO: [
['north', 'atlantic', 'treaty', 'organization'],
['north', 'atlantic', 'treaty', 'organisation']
],
NFC: [['national', 'football', 'conference']],
NPR: [['national', 'public', 'radio']],
OPEC: [['organization', 'of', 'the', 'petroleum', 'exporting', 'country']],
PC: [
['printed', 'circuit'],
['personal', 'computer']
],
PDF: [['portable', 'document', 'format']],
PIF: [['program', 'information', 'file']],
PIN: [['personal', 'identification', 'number']],
RAM: [
['random', 'access', 'memory'],
['randomaccess', 'memory']
],
RAS: [['redundant', 'acronym', 'syndrome']],
RIP: [['rest', 'in', 'peace']],
RISC: [['reduced', 'instruction', 'set', 'computer']],
RF: [['radio', 'frequency']],
ROM: [
['read', 'only', 'memory'],
['readonly', 'memory']
],
RPN: [['reverse', 'polish', 'notation']],
SALT: [['strategic', 'arm', 'limitation', 'talk']],
SAM: [
['surface', 'to', 'air', 'missile'],
['surfacetoair', 'missile']
],
SAT: [
['scholastic', 'aptitude', 'test'],
['scholastic', 'assessment', 'test']
],
START: [['strategic', 'arm', 'reduction', 'treaty']],
TWA: [['trans', 'world', 'airline']],
UHF: [['ultra', 'high', 'frequency']],
UL: [['underwriter', 'laboratory']],
UN: [['united', 'nation']],
UNIVAC: [['universal', 'automatic', 'computer']],
UPC: [['universal', 'product', 'code']],
UPI: [['united', 'press', 'international']],
USGS: [['united', 'state', 'geological', 'survey']],
VAT: [
['value', 'added', 'tax'],
['valueadded', 'tax']
],
VHF: [['very', 'high', 'frequency']],
VIN: [['vehicle', 'identification', 'number']]
}