Nate Eagleson
Nate Eagleson
#### For new checks and feature suggestions - [X] https://www.shellcheck.net/ (i.e. the latest commit) currently gives no useful warnings about this - [X] I searched through https://github.com/koalaman/shellcheck/issues and didn't find...
As far as I'm aware, [ESLint](http://eslint.org/) provides all JSHint's functionality and then some, while being more configurable, more modular, and more extensible. I believe it is slightly slower, though I've...
I've been maintaining changelogs for a few projects at $DAYJOB using this format. I've found them helpful not just for people using our software but for developers, too. It gives...
Hey, I wanted to send some messages to Slack programmatically and this script seems to do the job nicely. Thanks! I didn't see how to store the Slack API token...
I often use [JSON Schema](https://json-schema.org/) for specifying the exact structure of responses from an API. I would love it if Hurl had a way to assert that a response validates...
Just noticed this while skimming the source and figured I'd submit a quick patch.
Consider the following set of comments: ``` // This is a test comment. If I get it to go a very long way, my autowrapping will work, but you will...
On macOS, text areas support Emacs-style Control-key keybindings. That means Ctrl-p moves the cursor to the previous line, and Ctrl-b moves the cursor back one character. In QPixel, Ctrp-p and...
I've got a project that still contains the original [alecsammons version of this library](https://github.com/alecsammon/php-raml-parser). I discovered recently that it does not support the `OPTIONS` HTTP method in RAML documents, which...
Running the following program resulted in no output: ``` javascript #! /usr/bin/env node var docopt = require('docopt'); var doc = 'Usage:\n\n' + ' test.js [options] [...]\n' + 'Options:\n' + '...