ESLintで怒られたときの対応
次のような形で何もしない関数をコールバックとして渡していて怒られた
fs.writeFile('/tmp/hoge.txt', 'hoge', null, () => {})
Disallow empty functions (no-empty-function)
()
でくくって対応する
fs.writeFile('/tmp/hoge.txt', 'hoge', null, () => ({}))
出典どこだったか忘れてしまったのでメモ残しておく
ESLintで怒られたときの対応
次のような形で何もしない関数をコールバックとして渡していて怒られた
fs.writeFile('/tmp/hoge.txt', 'hoge', null, () => {})
Disallow empty functions (no-empty-function)
()
でくくって対応する
fs.writeFile('/tmp/hoge.txt', 'hoge', null, () => ({}))
出典どこだったか忘れてしまったのでメモ残しておく