Skip to content

Commit be98b2a

Browse files
committed
Configure links to allow localization
github.com and wikipedia.org have different localization behaviors depending on the URL. If a language code is specified via the URL, then that language version of the page is loaded, regardless of the language setting of the user's browser. For example, this URL will take the user to the English version of the page even if their browser is configured for Italian: https://en.wikipedia.org/wiki/Arduino If no language code is specified via the URL, then it redirects to the version of the page localized for the user's language preference, where available. For example, if the user has selected "Italian" as their preferred language in their browser settings, then this URL: https://wikipedia.org/wiki/Arduino redirects to: https://it.wikipedia.org/wiki/Arduino
1 parent adbabd2 commit be98b2a

File tree

3 files changed

+12
-12
lines changed

3 files changed

+12
-12
lines changed

docs/CONTRIBUTING.md

+6-6
Original file line numberDiff line numberDiff line change
@@ -64,13 +64,13 @@ submitting a PR:
6464
invocations or parsing of the JSON formatted output when upgrading from an older version of Arduino Lint.
6565
- PR titles indirectly become part of the CHANGELOG so it's crucial to provide a good record of **what** change is being
6666
made in the title; **why** it was made will go in the PR description, along with
67-
[a link to a GitHub issue](https://docs.github.com/en/issues/tracking-your-work-with-issues/linking-a-pull-request-to-an-issue)
67+
[a link to a GitHub issue](https://docs.github.com/issues/tracking-your-work-with-issues/linking-a-pull-request-to-an-issue)
6868
if one exists.
6969
- Open your PR against the `main` branch.
70-
- Your PR must pass all [CI](https://en.wikipedia.org/wiki/Continuous_integration) tests before we will merge it. You
71-
can run the CI in your fork by clicking the "Actions" tab and then the "I understand my workflows..." button. If
72-
you're seeing an error and don't think it's your fault, it may not be! The reviewer will help you if there are test
73-
failures that seem not related to the change you are making.
70+
- Your PR must pass all [CI](https://wikipedia.org/wiki/Continuous_integration) tests before we will merge it. You can
71+
run the CI in your fork by clicking the "Actions" tab and then the "I understand my workflows..." button. If you're
72+
seeing an error and don't think it's your fault, it may not be! The reviewer will help you if there are test failures
73+
that seem not related to the change you are making.
7474

7575
### Development prerequisites
7676

@@ -183,7 +183,7 @@ Unfortunately, **Licensed** does not have Windows support.
183183

184184
An updated cache is also generated whenever the cache is found to be outdated by the by the "Check Go Dependencies" CI
185185
workflow and made available for download via the `dep-licenses-cache`
186-
[workflow artifact](https://docs.github.com/en/actions/managing-workflow-runs/downloading-workflow-artifacts).
186+
[workflow artifact](https://docs.github.com/actions/managing-workflow-runs/downloading-workflow-artifacts).
187187

188188
<a id="linting-and-formatting"></a> <a id="configuration-files-formatting"></a> <a id="documentation-formatting"></a>
189189

docs/index.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -76,8 +76,8 @@ Additional configuration options intended for internal use or development can be
7676
## Continuous integration
7777

7878
**Arduino Lint** would be a great addition to your
79-
[continuous integration](https://en.wikipedia.org/wiki/Continuous_integration) system. Running the tool after each
80-
change to the project can allow you to identify any problems that were introduced.
79+
[continuous integration](https://wikipedia.org/wiki/Continuous_integration) system. Running the tool after each change
80+
to the project can allow you to identify any problems that were introduced.
8181

8282
This is easily done by using the `arduino/arduino-lint-action` [GitHub Actions](https://docs.github.com/actions) action:
8383
https://github.com/arduino/arduino-lint-action

docs/installation.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,8 @@ curl -fsSL https://raw.githubusercontent.com/arduino/arduino-lint/main/etc/insta
2121
```
2222

2323
If you would like to use the `arduino-lint` command from any location, install Arduino Lint to a directory already in
24-
your [`PATH`](https://en.wikipedia.org/wiki/PATH%5F%28variable%29) or add the Arduino Lint installation path to your
25-
`PATH` environment variable.
24+
your [`PATH`](https://wikipedia.org/wiki/PATH%5F%28variable%29) or add the Arduino Lint installation path to your `PATH`
25+
environment variable.
2626

2727
If you want to download a specific Arduino Lint version, for example `0.9.0` or `nightly-latest`, pass the version
2828
number as a parameter like this:
@@ -36,8 +36,8 @@ curl -fsSL https://raw.githubusercontent.com/arduino/arduino-lint/main/etc/insta
3636
Pre-built binaries for all the supported platforms are available for download from the links below.
3737

3838
If you would like to use the `arduino-lint` command from any location, extract the downloaded file to a directory
39-
already in your [`PATH`](https://en.wikipedia.org/wiki/PATH%5F%28variable%29) or add the Arduino Lint installation path
40-
to your `PATH` environment variable.
39+
already in your [`PATH`](https://wikipedia.org/wiki/PATH%5F%28variable%29) or add the Arduino Lint installation path to
40+
your `PATH` environment variable.
4141

4242
### Latest release
4343

0 commit comments

Comments
 (0)