File tree 4 files changed +6
-3
lines changed
4 files changed +6
-3
lines changed Original file line number Diff line number Diff line change 4
4
"max": 3
5
5
},
6
6
"no-nfd": true,
7
+ "max-kanji-continuous-len": true,
7
8
"no-doubled-conjunctive-particle-ga": true,
8
9
"no-doubled-conjunction": true,
9
10
"no-double-negative-ja": true,
Original file line number Diff line number Diff line change 1
1
{
2
2
"rules": {
3
- // strictオプションの有効化
3
+ // strictオプションの有効化
4
4
"max-ten": {
5
5
"max": 3,
6
6
"strict": true
7
7
},
8
8
"unexpanded-acronym": true,
9
9
"no-nfd": true,
10
+ "max-kanji-continuous-len": true,
10
11
"no-doubled-conjunctive-particle-ga": true,
11
12
"no-doubled-conjunction": true,
12
13
"no-double-negative-ja": true,
Original file line number Diff line number Diff line change @@ -213,10 +213,10 @@ export function prefixStream(prefix) {
213
213
214
214
やってきたBufferの先頭に` prefix ` の文字列をBufferとして結合して返すだけの処理が行われています。
215
215
216
- この変換処理自体は、gulpに依存したものではないため 、通常のライブラリに渡して処理するということが可能です。
216
+ この変換処理はgulpに依存したものではないため 、通常のライブラリに渡して処理するということが可能です。
217
217
BufferはStringと相互変換が可能なので、多くのgulpプラグインと呼ばれるものは、` gulpPrefixer ` と` prefixBuffer ` にあたる部分だけを実装しています。
218
218
219
- つまり、prefixを付けるといった変換処理自体は 、既存のライブラリで行うことができるようになっています。
219
+ つまり、prefixを付けるといった変換処理は 、既存のライブラリで行うことができるようになっています。
220
220
221
221
gulpプラグインは[ vinyl] ( https://github.com/gulpjs/vinyl " vinyl ") オブジェクトのデータをプラグイン同士でやり取りし、
222
222
そのインタフェースとして既存のNode.js Streamを使っていると言えます。
Original file line number Diff line number Diff line change 65
65
"textlint" : " ^6.1.0" ,
66
66
"textlint-formatter-codecov" : " ^1.0.2" ,
67
67
"textlint-formatter-lcov" : " ^1.0.2" ,
68
+ "textlint-rule-max-kanji-continuous-len" : " ^1.0.1" ,
68
69
"textlint-rule-max-ten" : " ^2.0.0" ,
69
70
"textlint-rule-no-double-negative-ja" : " ^1.0.2" ,
70
71
"textlint-rule-no-doubled-conjunction" : " ^1.0.1" ,
You can’t perform that action at this time.
0 commit comments