Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions wiki/Configuration-Options.md
Original file line number Diff line number Diff line change
Expand Up @@ -283,7 +283,7 @@ The `Generic.Debug.JSHint` sniff will check each JavaScript file using [JSHint](
$ phpcs --config-set jshint_path /path/to/jshint.js
```

As JSHint is just JavaScript code, you may also need to install [Rhino](http://www.mozilla.org/rhino/) to be able to execute it. Use the `rhino_path` configuration option to tell the JSHint sniff where to find the tool.
As JSHint is just JavaScript code, you may also need to install [Rhino](https://rhino.github.io/) to be able to execute it. Use the `rhino_path` configuration option to tell the JSHint sniff where to find the tool.

```bash
$ phpcs --config-set rhino_path /path/to/rhino
Expand All @@ -302,7 +302,7 @@ The `Squiz.Debug.JSLint` sniff will check each JavaScript file using [JSLint](ht
$ phpcs --config-set jslint_path /path/to/jslint.js
```

As JSLint is just JavaScript code, you may also need to install [Rhino](https://developer.mozilla.org/en-US/docs/Rhino) to be able to execute it. Use the `rhino_path` configuration option to tell the JSLint sniff where to find the tool.
As JSLint is just JavaScript code, you may also need to install [Rhino](https://rhino.github.io/) to be able to execute it. Use the `rhino_path` configuration option to tell the JSLint sniff where to find the tool.

```bash
$ phpcs --config-set rhino_path /path/to/rhino
Expand Down