diff --git a/lib/rules/no-adjacent-inline-elements.js b/lib/rules/no-adjacent-inline-elements.js index bdddd79bef..76a65845b8 100644 --- a/lib/rules/no-adjacent-inline-elements.js +++ b/lib/rules/no-adjacent-inline-elements.js @@ -5,6 +5,8 @@ 'use strict'; +const docsUrl = require('../util/docsUrl'); + // ------------------------------------------------------------------------------ // Helpers // ------------------------------------------------------------------------------ @@ -76,7 +78,8 @@ module.exports = { docs: { description: 'Prevent adjacent inline elements not separated by whitespace.', category: 'Best Practices', - recommended: false + recommended: false, + url: docsUrl('no-adjacent-inline-elements') }, schema: [] },