Browse Source

removed ginger

Steven Fukase 4 years ago
parent
commit
390fe1a625

+ 0 - 1
packages/app/src/components/PageEditor/CodeMirrorEditor.jsx

@@ -167,7 +167,6 @@ export default class CodeMirrorEditor extends AbstractEditor {
       { name: 'common-misspellings' },
       { name: 'date-weekday-mismatch' },
       { name: 'en-capitalization' },
-      { name: 'ginger' },
       { name: 'ja-hiragana-keishikimeishi' },
       { name: 'ja-no-abusage' },
       { name: 'ja-no-inappropriate-words' },

+ 0 - 1
packages/codemirror-textlint/package.json

@@ -26,7 +26,6 @@
     "textlint-rule-common-misspellings": "^1.0.1",
     "textlint-rule-date-weekday-mismatch": "^1.0.6",
     "textlint-rule-en-capitalization": "^2.0.3",
-    "textlint-rule-ginger": "^2.2.1",
     "textlint-rule-ja-hiragana-keishikimeishi": "^1.1.0",
     "textlint-rule-ja-no-abusage": "^3.0.0",
     "textlint-rule-ja-no-inappropriate-words": "^2.0.0",

+ 0 - 2
packages/codemirror-textlint/src/index.ts

@@ -5,7 +5,6 @@ import textlintRuleNoUnmatchedPair from '@textlint-rule/textlint-rule-no-unmatch
 import textlintRuleCommonMisspellings from 'textlint-rule-common-misspellings';
 import textlintRuleDateWeekdayMismatch from 'textlint-rule-date-weekday-mismatch';
 import textlintRuleEnCapitalization from 'textlint-rule-en-capitalization';
-import textlintRuleGinger from 'textlint-rule-ginger';
 import textlintRuleJaHiraganaKeishikimeishi from 'textlint-rule-ja-hiragana-keishikimeishi';
 import textlintRuleJaNoAbusage from 'textlint-rule-ja-no-abusage';
 import textlintRuleJaNoInappropriateWords from 'textlint-rule-ja-no-inappropriate-words';
@@ -50,7 +49,6 @@ const ruleModulesList = {
   'common-misspellings': textlintRuleCommonMisspellings,
   'date-weekday-mismatch': textlintRuleDateWeekdayMismatch,
   'en-capitalization': textlintRuleEnCapitalization,
-  ginger: textlintRuleGinger,
   'ja-hiragana-keishikimeishi': textlintRuleJaHiraganaKeishikimeishi,
   'ja-no-abusage': textlintRuleJaNoAbusage,
   'ja-no-inappropriate-words': textlintRuleJaNoInappropriateWords,