We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3ed8c5c commit e59b19eCopy full SHA for e59b19e
tools/update-rules.js
@@ -75,8 +75,8 @@ ${
75
.map(entry => {
76
const name = entry[0]
77
const meta = entry[1].meta
78
- const link = `[${name}](./rules/${name}.md)`
79
- const replacedBy = (meta.docs.replacedBy || []).map(id => `[${id}](./rules/${id}.md)`).join(', ') || '(no replacement)'
+ const link = `[${name}](./docs/rules/${name}.md)`
+ const replacedBy = (meta.docs.replacedBy || []).map(id => `[${id}](./docs/rules/${id}.md)`).join(', ') || '(no replacement)'
80
return `| ${link} | ${replacedBy} |`
81
})
82
.join('\n')
0 commit comments