Skip to content

Commit 1e0c272

Browse files
committed
fix eslint issues
1 parent 40a8804 commit 1e0c272

File tree

2 files changed

+1
-3
lines changed

2 files changed

+1
-3
lines changed

lib/rules/a11y-no-generic-link-text.js

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,6 @@ export default {
3232
},
3333
],
3434
},
35-
// TODO: once https://github.com/bmish/eslint-doc-generator/issues/512 is supported, remove replacedBy
36-
// eslint-disable-next-line eslint-plugin/no-meta-replaced-by
3735
replacedBy: ['jsx-a11y/anchor-ambiguous-text'],
3836
schema: [],
3937
messages: {

tests/unescaped-html-literal.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ ruleTester.run('unescaped-html-literal', rule, {
5858
],
5959
},
6060
{
61-
code: "const helloHTML = ` \n\t<div>Hello ${name}!</div>`",
61+
code: 'const helloHTML = ` \n\t<div>Hello ${name}!</div>`',
6262
parserOptions: {ecmaVersion: 2017},
6363
errors: [
6464
{

0 commit comments

Comments
 (0)