Skip to content

Wiki: fix broken links to Rhino #8

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jul 15, 2025
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