Edit check/Configuration

Edit check offers people actionable feedback about Wikipedia policies while they are editing.

This page strives to equip experienced volunteers with the information they need to ensure Edit Check is configured in ways that will promote the nuances of each project's policies and conventions.

On-wiki configuration edit

Edit Check can be configured in some ways on-wiki by local interface administrators by editing the MediaWiki:Editcheck-config.json message. This will be null initially, signifying that it is unconfigured and the Edit Check defaults should apply completely.

The message must be valid JSON , or it will be ignored and the defaults will be applied. Any unspecified values will be filled in with the default values.

An example of a valid configuration message is:

{
    "addReference": {
        "minimumCharacters": 40,
        "beforePunctuation": true,
        "ignoreSections": ["External links", "Unsupported claims", "Discussion"],
        "ignoreLeadSection": true
    }
}

This would change the minimum number of characters required before the "Add reference" Edit Check triggers to 40, and have it insert its citations before the terminal punctuation rather than after.

Configurable values edit

As of 2023, the configurable values are in flux. The best reference right now is the $defaults array in the config-loading code.

minimumCharacters
The smallest string of consecutive characters that will prompt a recommendation to add a citation. This should generally be small enough to trigger for most additions of significant new information, but big enough not to trigger for copyediting, in the local language. As of 2023, the default is 50 characters.
beforePunctuation
Specify whether the citation should appear before a sentence's terminal punctuation (style used at the French Wikipedia: "Sentence[1].") or after it (style used at the English Wikipedia: "Sentence.[1]"). The default is false, resulting in the style used at most Wikipedias, including the English Wikipedia.
account
Specify which account state the edit check should apply to. Valid values are "loggedin", "loggedout", or false. The default is false, resulting in the edit check applying to all users.
maximumEditcount
Specify an edit-count threshold to gate the edit check behind. The default is 100, meaning that the edit check will only be shown to users with 100 edits or fewer. The number of edits is based on user edit count, edits from all namespaces are taken into account.
ignoreSections
An array of section titles, which will be compared case-insensitively to headings. If a heading matches an item in this array, all content within that section will be ignored for checks. The default is an empty array ([]).
Each section title has to be between ", separated by a ,: ["External links", "Unsupported claims", "Discussion"].
ignoreLeadSection
A boolean. If true, the content of the lead section will be ignored for checks. A lead section is defined as content in an article with at least one heading that precedes the first heading. The default is false.

Site-level configuration edit

These values can be set in the site-level configuration in LocalSettings.php.

Config Meaning Default
VisualEditorEditCheck Enables the feature false
VisualEditorEditCheckTagging Tags edits made related to edit check features false

Getting help edit

  • Any interface administrator at your wiki can configure this. You can find a list of interface admins on your wiki by searching for Special:ListUsers/interface-admin. You can find a list of other admins on your wiki by searching for Special:ListAdmins.
  • If your Wikipedia does not have any interface administrators, you can request help at m:Steward requests/Miscellaneous.
  • If your wiki is hosted by the Wikimedia Foundation but is not a Wikipedia, you will need to request that Edit Check be deployed at your wiki. Please follow the process at m:Requesting wiki configuration changes. Tag the Phabricator ticket with all the following tags: #editcheck, #wikimedia-site-requests.

Reference edit

  1. 1.0 1.1 Example

Footnotes edit