shigeru.nakajima
shigeru.nakajima
# 期待する動作 Atomの編集中画面でtext-lintが実行されて、エラーが表示されて欲しいです。 # 実際の動作 ## Re:VIEW .reファイルではエラーが検出されません。 ## Markdown .mdファイルではエラーが検出されます。 ## CLI CLIからtextlintを実行した場合は、エラーが検出されます。 ```sh ~ npx textlint src/preface.re /Users/shigerunakajima/modern-web-front-end-design-pattern/src/preface.re 5:10 error "○" が連続して2回使われています。 preset-ja-technical-writing/ja-no-successive-word 7:25 error 一つの文で"、"を3つ以上使用しています preset-ja-technical-writing/max-ten 10:7...
I want to get elements by click events. I can get elements: ``` js const App = React.createClass({ handleClick(e) { const chart = this.Bar.getChart() chart.getElementAtEvent(e) }, render() { return (...
# Background There is two way to update datasets of a chart. 1. Set a new datasets by `this.setState` 2. Update the `this.state.datasets` and call `this.forceUpdate` 1 works well only...
## Background The following ruby.wasm code will cause an error. ```ruby ws = JS.global[:WebSocket].new("ws://localhost:9292") ws[:onopen] = -> (event) { ws.send("Hello") } ``` ``` Error: /bundle/gems/js-2.6.2/lib/js.rb:184:in `method_missing': undefined method `Hello' for...
The original motivation was to make it easier to call the JavaScript WebSocket#send method. To achieve this, the following three methods were considered. 1. Undefine the Object#send method 2. Override...