Note: After saving, you have to bypass your browser's cache to see the changes. Google Chrome, Firefox, Microsoft Edge and Safari: Hold down the ⇧ Shift key and click the Reload toolbar button. For details and instructions about other browsers, see Wikipedia:Bypass your cache.
window.hotcat_use_category_links = true;
window.popupFixDabs = true;
window.popupFixRedirs = true;
window.popupFixRedirsSummary = 'redirect bypass from [[%s]] to [[%s]] using [[:en:Wikipedia:Tools/Navigation_popups|popups]]'
window.popupRedlinkRemoval = true;

mw.hook( 'LinkClassifier' ).add( function ( linkClassifier ) {
    // Delete the "incorrect-title" code
    delete linkClassifier.cats['incorrect-title'];

    // Add the "linked-misspellings", "linked-miscapitalisations" and "linked-incorrect-names" codes, with appropriate categories.
    linkClassifier.cats['linked-misspellings'] = [
        'Category:Redirects from misspellings'
    ].sort();
    linkClassifier.cats['linked-miscapitalisations'] = [
        'Category:Redirects from miscapitalisations'
    ].sort();
    linkClassifier.cats['linked-incorrect-names'] = [
        'Category:Redirects from incorrect names'
    ].sort();
} );
importScript('User:Anomie/linkclassifier.js'); // Linkback: [[User:Anomie/linkclassifier.js]]