Skip to content

Instantly share code, notes, and snippets.

@kemsakurai
Last active September 2, 2018 13:49
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kemsakurai/cf3a69ba4270a2268dcae0af89a16241 to your computer and use it in GitHub Desktop.
Save kemsakurai/cf3a69ba4270a2268dcae0af89a16241 to your computer and use it in GitHub Desktop.
RedPen の Json 形式の出力ファイルをCSVに変換するスクリプト
#!/usr/bin/env python
RESULT_JSON_FILE = "./check_results/redpen_results.json"
RESULT_CSV_FILE = "./check_results/redpen_results.csv"
def flatten_json(y):
results = []
document = y[0].get("document")
errors = y[0].get("errors")
for error in errors:
elems = [document, error.get("sentence"), error.get("validator")]
end_position = error.get("endPosition")
if end_position is None:
elems.append("")
elems.append("")
else:
elems.append(end_position.get("offset", ""))
elems.append(end_position.get("lineNum", ""))
elems.append(error.get("DoubledWord"))
elems.append(error.get("level"))
elems.append(error.get("sentenceStartColumnNum"))
elems.append(error.get("message"))
start_position = error.get("startPosition")
if start_position is None:
elems.append("")
elems.append("")
else:
elems.append(start_position.get("offset"))
elems.append(start_position.get("lineNum"))
results.append(elems)
return results
def get_headers():
elems = ["document", "sentence", "validator", "endPosition.offset", "endPosition.lineNum", "DoubledWord", "level",
"sentenceStartColumnNum", "message", "startPosition.offset", "startPosition.lineNum"]
return elems
def main():
import json
from io import StringIO
flat_results = [get_headers()]
# 一行ずつ読み込む、ファイルをオープンする
with open(RESULT_JSON_FILE, "r") as check_results:
for line in check_results:
io = StringIO(line)
json_dict = json.load(io)
flat_json = flatten_json(json_dict)
flat_results.extend(flat_json)
import csv
with open(RESULT_CSV_FILE, "w+") as results_csv:
csv_writer = csv.writer(results_csv, delimiter=',')
csv_writer.writerows(flat_results)
if __name__ == '__main__':
main()
document sentence validator endPosition.offset endPosition.lineNum DoubledWord level sentenceStartColumnNum message startPosition.offset startPosition.lineNum
wicketとdropwizardを連携する.md wicket guice glassfish の組み合わせでアプリ構築をしていたのですが、 glassfishだとデプロイが遅い(ような気がした)ため、 組み込みTomcatで動かしたくなり、Spring BootがDropwizardか迷ったあげく、 wicket guice dropwizard の組み合わせで動くようにしてみました。 SentenceLength Error 0 The length of the sentence (173) exceeds the maximum of 150.
wicketとdropwizardを連携する.md wicket guice glassfish の組み合わせでアプリ構築をしていたのですが、 glassfishだとデプロイが遅い(ような気がした)ため、 組み込みTomcatで動かしたくなり、Spring BootがDropwizardか迷ったあげく、 wicket guice dropwizard の組み合わせで動くようにしてみました。 CommaNumber Error 0 The number of commas (4) exceeds the maximum of 3.
wicketとdropwizardを連携する.md wicket guice glassfish の組み合わせでアプリ構築をしていたのですが、 glassfishだとデプロイが遅い(ような気がした)ため、 組み込みTomcatで動かしたくなり、Spring BootがDropwizardか迷ったあげく、 wicket guice dropwizard の組み合わせで動くようにしてみました。 SpaceBetweenAlphabeticalWord 10 6 Warn 0 Space not present after an alphabetical word. 9 6
wicketとdropwizardを連携する.md wicket guice glassfish の組み合わせでアプリ構築をしていたのですが、 glassfishだとデプロイが遅い(ような気がした)ため、 組み込みTomcatで動かしたくなり、Spring BootがDropwizardか迷ったあげく、 wicket guice dropwizard の組み合わせで動くようにしてみました。 SpaceBetweenAlphabeticalWord 5 7 Warn 0 Space not present before an alphabetical word. 4 7
wicketとdropwizardを連携する.md wicket guice glassfish の組み合わせでアプリ構築をしていたのですが、 glassfishだとデプロイが遅い(ような気がした)ため、 組み込みTomcatで動かしたくなり、Spring BootがDropwizardか迷ったあげく、 wicket guice dropwizard の組み合わせで動くようにしてみました。 SpaceBetweenAlphabeticalWord 11 7 Warn 0 Space not present after an alphabetical word. 10 7
wicketとdropwizardを連携する.md wicket guice glassfish の組み合わせでアプリ構築をしていたのですが、 glassfishだとデプロイが遅い(ような気がした)ため、 組み込みTomcatで動かしたくなり、Spring BootがDropwizardか迷ったあげく、 wicket guice dropwizard の組み合わせで動くようにしてみました。 SpaceBetweenAlphabeticalWord 31 7 Warn 0 Space not present after an alphabetical word. 30 7
wicketとdropwizardを連携する.md wicket guice glassfish の組み合わせでアプリ構築をしていたのですが、 glassfishだとデプロイが遅い(ような気がした)ため、 組み込みTomcatで動かしたくなり、Spring BootがDropwizardか迷ったあげく、 wicket guice dropwizard の組み合わせで動くようにしてみました。 SpaceBetweenAlphabeticalWord 32 7 Warn 0 Space not present before an alphabetical word. 31 7
wicketとdropwizardを連携する.md wicket guice glassfish の組み合わせでアプリ構築をしていたのですが、 glassfishだとデプロイが遅い(ような気がした)ため、 組み込みTomcatで動かしたくなり、Spring BootがDropwizardか迷ったあげく、 wicket guice dropwizard の組み合わせで動くようにしてみました。 SpaceBetweenAlphabeticalWord 42 7 Warn 0 Space not present after an alphabetical word. 41 7
wicketとdropwizardを連携する.md 作成したコード一式は、Githubに置きました。 SpaceBetweenAlphabeticalWord 18 10 Warn 0 Space not present after an alphabetical word. 17 10
wicketとdropwizardを連携する.md wicketとdropwizard,guiceを連携する SpaceBetweenAlphabeticalWord 9 3 Warn 2 Space not present after an alphabetical word. 8 3
wicketとdropwizardを連携する.md wicketとdropwizard,guiceを連携する SpaceBetweenAlphabeticalWord 10 3 Warn 2 Space not present before an alphabetical word. 9 3
wicketとdropwizardを連携する.md wicketとdropwizard,guiceを連携する SpaceBetweenAlphabeticalWord 26 3 Warn 2 Space not present after an alphabetical word. 25 3
wicketとdropwizardを連携する.md wicketとdropwizard,guiceを連携する InvalidSymbol 20 3 Error 2 Found invalid symbol ",". 19 3
wicketとdropwizardを連携する.md wicketとdropwizard,guiceを連携する InvalidSymbol 20 3 Error 2 Found invalid symbol ",". 19 3
wicketとdropwizardを連携する.md gradleでDropwizard SpaceBetweenAlphabeticalWord 11 20 Warn 4 Space not present after an alphabetical word. 10 20
wicketとdropwizardを連携する.md gradleでDropwizard SpaceBetweenAlphabeticalWord 12 20 Warn 4 Space not present before an alphabetical word. 11 20
wicketとdropwizardを連携する.md Wicketのquickstartプロジェクト(Maven)をGradleに移行する SpaceBetweenAlphabeticalWord 11 22 Warn 4 Space not present after an alphabetical word. 10 22
wicketとdropwizardを連携する.md Wicketのquickstartプロジェクト(Maven)をGradleに移行する SpaceBetweenAlphabeticalWord 12 22 Warn 4 Space not present before an alphabetical word. 11 22
wicketとdropwizardを連携する.md Wicketのquickstartプロジェクト(Maven)をGradleに移行する SpaceBetweenAlphabeticalWord 22 22 Warn 4 Space not present after an alphabetical word. 21 22
wicketとdropwizardを連携する.md Wicketのquickstartプロジェクト(Maven)をGradleに移行する SpaceBetweenAlphabeticalWord 36 22 Warn 4 Space not present before an alphabetical word. 35 22
wicketとdropwizardを連携する.md Wicketのquickstartプロジェクト(Maven)をGradleに移行する SpaceBetweenAlphabeticalWord 42 22 Warn 4 Space not present after an alphabetical word. 41 22
wicketとdropwizardを連携する.md 3. dropwizard-wicketのFolk後に実施したこと SpaceBetweenAlphabeticalWord 76 30 Warn 5 Space not present after an alphabetical word. 75 30
wicketとdropwizardを連携する.md 3. dropwizard-wicketのFolk後に実施したこと SpaceBetweenAlphabeticalWord 77 30 Warn 5 Space not present before an alphabetical word. 76 30
wicketとdropwizardを連携する.md 3. dropwizard-wicketのFolk後に実施したこと SpaceBetweenAlphabeticalWord 81 30 Warn 5 Space not present after an alphabetical word. 80 30
wicketとdropwizardを連携する.md 3.1. build.gradleの設定、編集 SpaceBetweenAlphabeticalWord 23 32 Warn 5 Space not present after an alphabetical word. 22 32
wicketとdropwizardを連携する.md Folk元のプロジェクトがMavenプロジェクトのため、Gradleプロジェクトへ変換を行いました。 SpaceBetweenAlphabeticalWord 5 36 Warn 0 Space not present after an alphabetical word. 4 36
wicketとdropwizardを連携する.md Folk元のプロジェクトがMavenプロジェクトのため、Gradleプロジェクトへ変換を行いました。 SpaceBetweenAlphabeticalWord 14 36 Warn 0 Space not present before an alphabetical word. 13 36
wicketとdropwizardを連携する.md Folk元のプロジェクトがMavenプロジェクトのため、Gradleプロジェクトへ変換を行いました。 SpaceBetweenAlphabeticalWord 19 36 Warn 0 Space not present after an alphabetical word. 18 36
wicketとdropwizardを連携する.md Folk元のプロジェクトがMavenプロジェクトのため、Gradleプロジェクトへ変換を行いました。 SpaceBetweenAlphabeticalWord 35 36 Warn 0 Space not present after an alphabetical word. 34 36
wicketとdropwizardを連携する.md 3.1.1. MavenプロジェクトをGradleプロジェクトに変換 SpaceBetweenAlphabeticalWord 19 34 Warn 6 Space not present after an alphabetical word. 18 34
wicketとdropwizardを連携する.md 3.1.1. MavenプロジェクトをGradleプロジェクトに変換 SpaceBetweenAlphabeticalWord 26 34 Warn 6 Space not present before an alphabetical word. 25 34
wicketとdropwizardを連携する.md 3.1.1. MavenプロジェクトをGradleプロジェクトに変換 SpaceBetweenAlphabeticalWord 32 34 Warn 6 Space not present after an alphabetical word. 31 34
wicketとdropwizardを連携する.md dropwizardとwicketのversionは新しいものに変更し、 guiceと、guice-servlet,wicket-guiceを依存関係に追加しました。 SpaceBetweenAlphabeticalWord 11 46 Warn 0 Space not present after an alphabetical word. 10 46
wicketとdropwizardを連携する.md dropwizardとwicketのversionは新しいものに変更し、 guiceと、guice-servlet,wicket-guiceを依存関係に追加しました。 SpaceBetweenAlphabeticalWord 12 46 Warn 0 Space not present before an alphabetical word. 11 46
wicketとdropwizardを連携する.md dropwizardとwicketのversionは新しいものに変更し、 guiceと、guice-servlet,wicket-guiceを依存関係に追加しました。 SpaceBetweenAlphabeticalWord 18 46 Warn 0 Space not present after an alphabetical word. 17 46
wicketとdropwizardを連携する.md dropwizardとwicketのversionは新しいものに変更し、 guiceと、guice-servlet,wicket-guiceを依存関係に追加しました。 SpaceBetweenAlphabeticalWord 19 46 Warn 0 Space not present before an alphabetical word. 18 46
wicketとdropwizardを連携する.md dropwizardとwicketのversionは新しいものに変更し、 guiceと、guice-servlet,wicket-guiceを依存関係に追加しました。 SpaceBetweenAlphabeticalWord 26 46 Warn 0 Space not present after an alphabetical word. 25 46
wicketとdropwizardを連携する.md dropwizardとwicketのversionは新しいものに変更し、 guiceと、guice-servlet,wicket-guiceを依存関係に追加しました。 SpaceBetweenAlphabeticalWord 6 47 Warn 0 Space not present after an alphabetical word. 5 47
wicketとdropwizardを連携する.md dropwizardとwicketのversionは新しいものに変更し、 guiceと、guice-servlet,wicket-guiceを依存関係に追加しました。 SpaceBetweenAlphabeticalWord 34 47 Warn 0 Space not present after an alphabetical word. 33 47
wicketとdropwizardを連携する.md dropwizardとwicketのversionは新しいものに変更し、 guiceと、guice-servlet,wicket-guiceを依存関係に追加しました。 InvalidSymbol 21 47 Error 0 Found invalid symbol ",". 20 47
wicketとdropwizardを連携する.md dropwizardとwicketのversionは新しいものに変更し、 guiceと、guice-servlet,wicket-guiceを依存関係に追加しました。 InvalidSymbol 21 47 Error 0 Found invalid symbol ",". 20 47
wicketとdropwizardを連携する.md 3.1.2. build.gradleのdependenciesの記述を以下の記述に変更 JapaneseAmbiguousNounConjunction Warn 6 Found ambiguous noun conjunction: "...3のdependenciesの記述..."
wicketとdropwizardを連携する.md 3.1.2. build.gradleのdependenciesの記述を以下の記述に変更 SpaceBetweenAlphabeticalWord 26 43 Warn 6 Space not present after an alphabetical word. 25 43
wicketとdropwizardを連携する.md 3.1.2. build.gradleのdependenciesの記述を以下の記述に変更 SpaceBetweenAlphabeticalWord 27 43 Warn 6 Space not present before an alphabetical word. 26 43
wicketとdropwizardを連携する.md 3.1.2. build.gradleのdependenciesの記述を以下の記述に変更 SpaceBetweenAlphabeticalWord 39 43 Warn 6 Space not present after an alphabetical word. 38 43
wicketとdropwizardを連携する.md pluginの記述 SpaceBetweenAlphabeticalWord 7 62 Warn 0 Space not present after an alphabetical word. 6 62
wicketとdropwizardを連携する.md shadowJarタスクの記述 SpaceBetweenAlphabeticalWord 10 70 Warn 0 Space not present after an alphabetical word. 9 70
wicketとdropwizardを連携する.md 3.1.3. plugin記述にshadowを追加して、shadowjarタスクを使用可能にする。 SpaceBetweenAlphabeticalWord 20 60 Warn 6 Space not present after an alphabetical word. 19 60
wicketとdropwizardを連携する.md 3.1.3. plugin記述にshadowを追加して、shadowjarタスクを使用可能にする。 SpaceBetweenAlphabeticalWord 23 60 Warn 6 Space not present before an alphabetical word. 22 60
wicketとdropwizardを連携する.md 3.1.3. plugin記述にshadowを追加して、shadowjarタスクを使用可能にする。 SpaceBetweenAlphabeticalWord 29 60 Warn 6 Space not present after an alphabetical word. 28 60
wicketとdropwizardを連携する.md 3.1.3. plugin記述にshadowを追加して、shadowjarタスクを使用可能にする。 SpaceBetweenAlphabeticalWord 44 60 Warn 6 Space not present after an alphabetical word. 43 60
wicketとdropwizardを連携する.md 3.2. Folk元のプログラムの変更点 SpaceBetweenAlphabeticalWord 15 83 Warn 5 Space not present after an alphabetical word. 14 83
wicketとdropwizardを連携する.md Folk元のクラスは、Guiceを使用しない実装だったので、 WicketBundle.javaの以下の点を修正しました。 JapaneseStyle 27 86 Warn 0 Found invalid Japanese Style "だった" 24 86
wicketとdropwizardを連携する.md Folk元のクラスは、Guiceを使用しない実装だったので、 WicketBundle.javaの以下の点を修正しました。 JapaneseAmbiguousNounConjunction Warn 0 Found ambiguous noun conjunction: "...Guiceの以下の点..."
wicketとdropwizardを連携する.md Folk元のクラスは、Guiceを使用しない実装だったので、 WicketBundle.javaの以下の点を修正しました。 SpaceBetweenAlphabeticalWord 5 86 Warn 0 Space not present after an alphabetical word. 4 86
wicketとdropwizardを連携する.md Folk元のクラスは、Guiceを使用しない実装だったので、 WicketBundle.javaの以下の点を修正しました。 SpaceBetweenAlphabeticalWord 17 86 Warn 0 Space not present after an alphabetical word. 16 86
wicketとdropwizardを連携する.md Folk元のクラスは、Guiceを使用しない実装だったので、 WicketBundle.javaの以下の点を修正しました。 SpaceBetweenAlphabeticalWord 18 87 Warn 0 Space not present after an alphabetical word. 17 87
wicketとdropwizardを連携する.md SessionHandlerは設定しないと、 SpaceBetweenAlphabeticalWord 15 94 Warn 0 Space not present after an alphabetical word. 14 94
wicketとdropwizardを連携する.md 3.2.1. WicketBundleの記述を変更 SpaceBetweenAlphabeticalWord 26 85 Warn 6 Space not present after an alphabetical word. 25 85
wicketとdropwizardを連携する.md FilterHolderに設定するFilterクラスをGuiceFilterに変更。 SpaceBetweenAlphabeticalWord 16 89 Warn 3 Space not present after an alphabetical word. 15 89
wicketとdropwizardを連携する.md FilterHolderに設定するFilterクラスをGuiceFilterに変更。 SpaceBetweenAlphabeticalWord 21 89 Warn 3 Space not present before an alphabetical word. 20 89
wicketとdropwizardを連携する.md FilterHolderに設定するFilterクラスをGuiceFilterに変更。 SpaceBetweenAlphabeticalWord 27 89 Warn 3 Space not present after an alphabetical word. 26 89
wicketとdropwizardを連携する.md FilterHolderに設定するFilterクラスをGuiceFilterに変更。 SpaceBetweenAlphabeticalWord 31 89 Warn 3 Space not present before an alphabetical word. 30 89
wicketとdropwizardを連携する.md FilterHolderに設定するFilterクラスをGuiceFilterに変更。 SpaceBetweenAlphabeticalWord 42 89 Warn 3 Space not present after an alphabetical word. 41 89
wicketとdropwizardを連携する.md contextにGuiceServletConfigの設定する処理を追加。 SpaceBetweenAlphabeticalWord 11 90 Warn 3 Space not present after an alphabetical word. 10 90
wicketとdropwizardを連携する.md contextにGuiceServletConfigの設定する処理を追加。 SpaceBetweenAlphabeticalWord 12 90 Warn 3 Space not present before an alphabetical word. 11 90
wicketとdropwizardを連携する.md contextにGuiceServletConfigの設定する処理を追加。 SpaceBetweenAlphabeticalWord 30 90 Warn 3 Space not present after an alphabetical word. 29 90
wicketとdropwizardを連携する.md SessionHandlerの設定処理を追加。 SpaceBetweenAlphabeticalWord 18 91 Warn 3 Space not present after an alphabetical word. 17 91
wicketとdropwizardを連携する.md 3.2.2. SampleApplicationの追加 SpaceBetweenAlphabeticalWord 31 103 Warn 6 Space not present after an alphabetical word. 30 103
wicketとdropwizardを連携する.md Folk元だと、WicketBundleにWicketのApplicationクラスを設定して、インスタンス生成する作りになっていましたが、そのへんをInjector経由での生成にすると、 GuiceFilter使わなくても、やりたいことは実現できそうな気がしますが、 そこは思っただけで実現していません。 SentenceLength Error 29 The length of the sentence (157) exceeds the maximum of 150.
wicketとdropwizardを連携する.md Folk元だと、WicketBundleにWicketのApplicationクラスを設定して、インスタンス生成する作りになっていましたが、そのへんをInjector経由での生成にすると、 GuiceFilter使わなくても、やりたいことは実現できそうな気がしますが、 そこは思っただけで実現していません。 CommaNumber Error 29 The number of commas (6) exceeds the maximum of 3.
wicketとdropwizardを連携する.md Folk元だと、WicketBundleにWicketのApplicationクラスを設定して、インスタンス生成する作りになっていましたが、そのへんをInjector経由での生成にすると、 GuiceFilter使わなくても、やりたいことは実現できそうな気がしますが、 そこは思っただけで実現していません。 DoubledConjunctiveParticleGa Warn 29 Found multiple conjunctive particle: "が"
wicketとdropwizardを連携する.md -----------------------------------------------------GuiceFilter経由で、WicketFilterの設定? SpaceBetweenAlphabeticalWord 12 109 Warn 0 Space not present after an alphabetical word. 11 109
wicketとdropwizardを連携する.md -----------------------------------------------------GuiceFilter経由で、WicketFilterの設定? SpaceBetweenAlphabeticalWord 28 109 Warn 0 Space not present after an alphabetical word. 27 109
wicketとdropwizardを連携する.md とInjectorの取得しているのが、 結構面倒くさく、意味がぱっと見でわかりにくい気がしました。 SpaceBetweenAlphabeticalWord 33 109 Warn 31 Space not present before an alphabetical word. 32 109
wicketとdropwizardを連携する.md とInjectorの取得しているのが、 結構面倒くさく、意味がぱっと見でわかりにくい気がしました。 SpaceBetweenAlphabeticalWord 41 109 Warn 31 Space not present after an alphabetical word. 40 109
wicketとdropwizardを連携する.md Folk元だと、WicketBundleにWicketのApplicationクラスを設定して、インスタンス生成する作りになっていましたが、そのへんをInjector経由での生成にすると、 GuiceFilter使わなくても、やりたいことは実現できそうな気がしますが、 そこは思っただけで実現していません。 SpaceBetweenAlphabeticalWord 5 111 Warn 29 Space not present after an alphabetical word. 4 111
wicketとdropwizardを連携する.md Folk元だと、WicketBundleにWicketのApplicationクラスを設定して、インスタンス生成する作りになっていましたが、そのへんをInjector経由での生成にすると、 GuiceFilter使わなくても、やりたいことは実現できそうな気がしますが、 そこは思っただけで実現していません。 SpaceBetweenAlphabeticalWord 21 111 Warn 29 Space not present after an alphabetical word. 20 111
wicketとdropwizardを連携する.md Folk元だと、WicketBundleにWicketのApplicationクラスを設定して、インスタンス生成する作りになっていましたが、そのへんをInjector経由での生成にすると、 GuiceFilter使わなくても、やりたいことは実現できそうな気がしますが、 そこは思っただけで実現していません。 SpaceBetweenAlphabeticalWord 22 111 Warn 29 Space not present before an alphabetical word. 21 111
wicketとdropwizardを連携する.md Folk元だと、WicketBundleにWicketのApplicationクラスを設定して、インスタンス生成する作りになっていましたが、そのへんをInjector経由での生成にすると、 GuiceFilter使わなくても、やりたいことは実現できそうな気がしますが、 そこは思っただけで実現していません。 SpaceBetweenAlphabeticalWord 28 111 Warn 29 Space not present after an alphabetical word. 27 111
wicketとdropwizardを連携する.md Folk元だと、WicketBundleにWicketのApplicationクラスを設定して、インスタンス生成する作りになっていましたが、そのへんをInjector経由での生成にすると、 GuiceFilter使わなくても、やりたいことは実現できそうな気がしますが、 そこは思っただけで実現していません。 SpaceBetweenAlphabeticalWord 29 111 Warn 29 Space not present before an alphabetical word. 28 111
wicketとdropwizardを連携する.md Folk元だと、WicketBundleにWicketのApplicationクラスを設定して、インスタンス生成する作りになっていましたが、そのへんをInjector経由での生成にすると、 GuiceFilter使わなくても、やりたいことは実現できそうな気がしますが、 そこは思っただけで実現していません。 SpaceBetweenAlphabeticalWord 40 111 Warn 29 Space not present after an alphabetical word. 39 111
wicketとdropwizardを連携する.md Folk元だと、WicketBundleにWicketのApplicationクラスを設定して、インスタンス生成する作りになっていましたが、そのへんをInjector経由での生成にすると、 GuiceFilter使わなくても、やりたいことは実現できそうな気がしますが、 そこは思っただけで実現していません。 SpaceBetweenAlphabeticalWord 28 112 Warn 29 Space not present before an alphabetical word. 27 112
wicketとdropwizardを連携する.md Folk元だと、WicketBundleにWicketのApplicationクラスを設定して、インスタンス生成する作りになっていましたが、そのへんをInjector経由での生成にすると、 GuiceFilter使わなくても、やりたいことは実現できそうな気がしますが、 そこは思っただけで実現していません。 SpaceBetweenAlphabeticalWord 36 112 Warn 29 Space not present after an alphabetical word. 35 112
wicketとdropwizardを連携する.md Folk元だと、WicketBundleにWicketのApplicationクラスを設定して、インスタンス生成する作りになっていましたが、そのへんをInjector経由での生成にすると、 GuiceFilter使わなくても、やりたいことは実現できそうな気がしますが、 そこは思っただけで実現していません。 SpaceBetweenAlphabeticalWord 12 113 Warn 29 Space not present after an alphabetical word. 11 113
wicketとdropwizardを連携する.md wicket guicecomponentinjectorはcustominjectionsを無視する SpaceBetweenAlphabeticalWord 31 118 Warn 1 Space not present after an alphabetical word. 30 118
wicketとdropwizardを連携する.md wicket guicecomponentinjectorはcustominjectionsを無視する SpaceBetweenAlphabeticalWord 32 118 Warn 1 Space not present before an alphabetical word. 31 118
wicketとdropwizardを連携する.md wicket guicecomponentinjectorはcustominjectionsを無視する SpaceBetweenAlphabeticalWord 48 118 Warn 1 Space not present after an alphabetical word. 47 118
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment