Skip to content

Commit

Permalink
feat(Dictionaries): Separate demonyms from adjectives (#46)
Browse files Browse the repository at this point in the history
* feat(Dictionaries): Separate demonyms from adjectives

* fix(Dictionaries): rename demonyms to languages
  • Loading branch information
Faizaan Pervaiz authored Feb 19, 2021
1 parent 59596e9 commit d3a1275
Show file tree
Hide file tree
Showing 4 changed files with 34 additions and 30 deletions.
29 changes: 0 additions & 29 deletions src/dictionaries/adjectives.ts
Original file line number Diff line number Diff line change
Expand Up @@ -278,7 +278,6 @@ export default [
'long',
'young',
'national',
'british',
'right',
'early',
'possible',
Expand Down Expand Up @@ -315,7 +314,6 @@ export default [
'short',
'easy',
'strong',
'european',
'central',
'similar',
'human',
Expand All @@ -332,11 +330,9 @@ export default [
'simple',
'recent',
'concerned',
'american',
'various',
'close',
'fine',
'english',
'wrong',
'present',
'royal',
Expand Down Expand Up @@ -383,8 +379,6 @@ export default [
'effective',
'western',
'traditional',
'scottish',
'german',
'independent',
'deep',
'interesting',
Expand Down Expand Up @@ -470,7 +464,6 @@ export default [
'rural',
'initial',
'substantial',
'christian',
'bright',
'average',
'leading',
Expand All @@ -490,7 +483,6 @@ export default [
'eastern',
'correct',
'inc',
'irish',
'expensive',
'educational',
'mental',
Expand Down Expand Up @@ -523,12 +515,10 @@ export default [
'busy',
'bloody',
'prepared',
'russian',
'moral',
'careful',
'clean',
'attractive',
'japanese',
'vital',
'thick',
'alternative',
Expand Down Expand Up @@ -575,7 +565,6 @@ export default [
'unique',
'secondary',
'parliamentary',
'african',
'unknown',
'subsequent',
'angry',
Expand All @@ -596,12 +585,10 @@ export default [
'agricultural',
'alright',
'healthy',
'italian',
'principal',
'tired',
'efficient',
'comfortable',
'chinese',
'relative',
'friendly',
'conventional',
Expand All @@ -618,7 +605,6 @@ export default [
'keen',
'flat',
'silent',
'indian',
'worried',
'pale',
'statutory',
Expand Down Expand Up @@ -659,7 +645,6 @@ export default [
'visual',
'electric',
'cool',
'spanish',
'literary',
'continuing',
'supreme',
Expand All @@ -677,7 +662,6 @@ export default [
'widespread',
'confident',
'straight',
'catholic',
'proud',
'numerous',
'opposite',
Expand Down Expand Up @@ -777,7 +761,6 @@ export default [
'revolutionary',
'bitter',
'changing',
'australian',
'native',
'imperial',
'strict',
Expand Down Expand Up @@ -812,9 +795,7 @@ export default [
'multiple',
'ruling',
'curious',
'arab',
'sole',
'jewish',
'managing',
'pregnant',
'latin',
Expand Down Expand Up @@ -880,7 +861,6 @@ export default [
'spare',
'painful',
'abstract',
'asian',
'associated',
'legislative',
'monthly',
Expand Down Expand Up @@ -934,7 +914,6 @@ export default [
'occupational',
'excessive',
'progressive',
'iraqi',
'exceptional',
'integrated',
'striking',
Expand Down Expand Up @@ -1021,8 +1000,6 @@ export default [
'blank',
'absent',
'favourable',
'polish',
'israeli',
'developed',
'profound',
'representative',
Expand All @@ -1041,7 +1018,6 @@ export default [
'selected',
'eager',
'feminist',
'canadian',
'bold',
'relaxed',
'corresponding',
Expand All @@ -1059,7 +1035,6 @@ export default [
'charming',
'minimal',
'mobile',
'turkish',
'orange',
'rear',
'passive',
Expand Down Expand Up @@ -1119,7 +1094,6 @@ export default [
'protective',
'fortunate',
'slim',
'islamic',
'defensive',
'divine',
'stuck',
Expand Down Expand Up @@ -1176,7 +1150,6 @@ export default [
'instant',
'lengthy',
'adverse',
'korean',
'unconscious',
'anonymous',
'aesthetic',
Expand All @@ -1203,7 +1176,6 @@ export default [
'visiting',
'aggregate',
'ethical',
'protestant',
'teenage',
'dying',
'disastrous',
Expand Down Expand Up @@ -1261,7 +1233,6 @@ export default [
'governing',
'accepted',
'vocational',
'palestinian',
'mighty',
'puzzled',
'worldwide',
Expand Down
3 changes: 2 additions & 1 deletion src/dictionaries/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,9 @@ import adjectives from './adjectives';
import animals from './animals';
import colors from './colors';
import countries from './countries';
import languages from './languages';
import names from './names';
import starWars from './star-wars';
import { NumberDictionary } from './numbers';

export { adjectives, animals, colors, countries, names, starWars, NumberDictionary };
export { adjectives, animals, colors, countries, languages, names, starWars, NumberDictionary };
31 changes: 31 additions & 0 deletions src/dictionaries/languages.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
export default [
'british',
'english',
'irish',
'turkish',
'japanese',
'chinese',
'korean',
'palestinian',
'canadian',
'australian',
'asian',
'african',
'italian',
'indian',
'russian',
'american',
'german',
'christian',
'european',
'iraqi',
'israeli',
'arab',
'jewish',
'scottish',
'polish',
'protestant',
'spanish',
'islamic',
'catholic',
];
1 change: 1 addition & 0 deletions src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ export {
animals,
colors,
countries,
languages,
names,
starWars,
NumberDictionary,
Expand Down

0 comments on commit d3a1275

Please sign in to comment.