Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add some notes to the ablist file #51

Merged
merged 8 commits into from
Oct 7, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
32 changes: 30 additions & 2 deletions script/ablist.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,8 @@
inconsiderate:
- birth defect
- type: simple
source: http://ncdj.org/style-guide/
note: Assumes that a person with a disability has a reduced quality of life.
considerate:
- person with a disability
- people with disabilities
Expand All @@ -39,6 +41,12 @@
- person with an intellectual disability
inconsiderate:
- intellectually disabled
- type: simple
source: http://ncdj.org/style-guide/
note: Assumes that a person with an intellectual disability has a reduced quality of life.
considerate:
- person with an intellectual disability
inconsiderate:
- suffers from intellectual disabilities
- suffering from intellectual disabilities
- suffering from an intellectual disability
Expand Down Expand Up @@ -72,14 +80,27 @@
- moronic
- nuts
- type: simple
source: http://ncdj.org/style-guide/
note: Only use terms describing mental illness when referring to a professionally diagnosed medical condition.
considerate:
- fluctuating
- person with schizophrenia
- person with bipolar disorder
inconsiderate:
- bipolar
- type: simple
source: http://ncdj.org/style-guide/
note: Only use terms describing mental illness when referring to a professionally diagnosed medical condition.
considerate:
- person with schizophrenia
inconsiderate:
- schizophrenic
- schizo
wooorm marked this conversation as resolved.
Show resolved Hide resolved
- type: simple
source: http://ncdj.org/style-guide/
note: Assumes a person with schizophrenia experiences a reduced quality of life.
considerate:
- person with schizophrenia
inconsiderate:
- suffers from schizophrenia
- suffering from schizophrenia
- afflicted with schizophrenia
Expand Down Expand Up @@ -162,6 +183,7 @@
- holds back
inconsiderate: retards
- type: simple
note: Only use terms describing mental illness when referring to a professionally diagnosed medical condition.
considerate:
- person with a psychotic condition
- person with psychosis
Expand Down Expand Up @@ -206,27 +228,30 @@
- special olympic athletes
- type: simple
source: http://ncdj.org/style-guide/
note: Sometimes `typical` can be used.
note: Can imply that people with disabilities lack the ability to use their bodies well. Sometimes `typical` can be used.
considerate:
- non-disabled
inconsiderate:
- ablebodied
- type: simple
source: http://ncdj.org/style-guide/
note: Addiction is a neurobiological disease.
considerate:
- person with a drug addiction
- person recovering from a drug addiction
inconsiderate:
- addict
- type: simple
source: http://ncdj.org/style-guide/
note: Addiction is a neurobiological disease.
considerate:
- people with a drug addiction
- people recovering from a drug addiction
inconsiderate:
- addicts
- type: simple
source: http://ncdj.org/style-guide/
note: Alcoholism is a neurobiological disease.
considerate:
- someone with an alcohol problem
inconsiderate:
Expand Down Expand Up @@ -392,13 +417,15 @@
- detox
- type: simple
source: http://ncdj.org/style-guide/
note: Only use terms describing mental illness when referring to a professionally diagnosed medical condition.
considerate:
- person with a personality disorder
- person with psychopathic personality
inconsiderate:
- sociopath
- type: simple
source: http://ncdj.org/style-guide/
note: Only use terms describing mental illness when referring to a professionally diagnosed medical condition.
considerate:
- people with psychopathic personalities
- people with a personality disorder
Expand Down Expand Up @@ -438,6 +465,7 @@
- anorexic
- type: simple
source: http://english.stackexchange.com/questions/247550/
note: Only use terms describing mental illness when referring to a professionally diagnosed medical condition.
considerate:
- obsessive
- pedantic
Expand Down
4 changes: 2 additions & 2 deletions test.js
Original file line number Diff line number Diff line change
Expand Up @@ -97,15 +97,15 @@ test('retext-equality', function(t) {
t.same(
process('Two bipolar magnets.'),
[
'1:5-1:12: `bipolar` may be insensitive, use `fluctuating`, `person with schizophrenia`, `person with bipolar disorder` instead'
'1:5-1:12: `bipolar` may be insensitive, use `fluctuating`, `person with bipolar disorder` instead'
],
'`bipolar` (without dash)'
)

t.same(
process('Two bi-polar magnets.'),
[
'1:5-1:13: `bi-polar` may be insensitive, use `fluctuating`, `person with schizophrenia`, `person with bipolar disorder` instead'
'1:5-1:13: `bi-polar` may be insensitive, use `fluctuating`, `person with bipolar disorder` instead'
],
'`bi-polar` (with dash)'
)
Expand Down