Skip to content

Commit 313eb7d

Browse files
authored
Prefer @typescript-eslint/dot-notation to native ESLint version (#454)
1 parent 38735ed commit 313eb7d

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/rules/converters/no-string-literal.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ export const convertNoStringLiteral: RuleConverter = () => {
44
return {
55
rules: [
66
{
7-
ruleName: "dot-notation",
7+
ruleName: "@typescript-eslint/dot-notation",
88
},
99
],
1010
};

src/rules/converters/tests/no-string-literal.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ describe(convertNoStringLiteral, () => {
99
expect(result).toEqual({
1010
rules: [
1111
{
12-
ruleName: "dot-notation",
12+
ruleName: "@typescript-eslint/dot-notation",
1313
},
1414
],
1515
});

0 commit comments

Comments
 (0)