From aecc98255351eb85d351a4fd363912cef931ef28 Mon Sep 17 00:00:00 2001 From: Josh Goldberg Date: Mon, 5 Nov 2018 16:45:32 -0500 Subject: [PATCH] Removed ts@next-breaking unquoted "bye-bye" --- .../object-literal-key-quotes/consistent-as-needed/test.ts.fix | 1 - .../object-literal-key-quotes/consistent-as-needed/test.ts.lint | 1 - test/rules/object-literal-key-quotes/consistent/test.ts.lint | 1 - 3 files changed, 3 deletions(-) diff --git a/test/rules/object-literal-key-quotes/consistent-as-needed/test.ts.fix b/test/rules/object-literal-key-quotes/consistent-as-needed/test.ts.fix index dae2424b032..b15e40fea09 100644 --- a/test/rules/object-literal-key-quotes/consistent-as-needed/test.ts.fix +++ b/test/rules/object-literal-key-quotes/consistent-as-needed/test.ts.fix @@ -25,7 +25,6 @@ const q = { }; const t = { hello: 123, - bye-bye: 45, nested: { bird: 2, egg: 3, diff --git a/test/rules/object-literal-key-quotes/consistent-as-needed/test.ts.lint b/test/rules/object-literal-key-quotes/consistent-as-needed/test.ts.lint index b6fd76c8043..f05f6777157 100644 --- a/test/rules/object-literal-key-quotes/consistent-as-needed/test.ts.lint +++ b/test/rules/object-literal-key-quotes/consistent-as-needed/test.ts.lint @@ -31,7 +31,6 @@ const q = { }; const t = { hello: 123, - bye-bye: 45, nested: { "bird": 2, ~~~~~~ [Unnecessarily quoted property 'bird' found.] diff --git a/test/rules/object-literal-key-quotes/consistent/test.ts.lint b/test/rules/object-literal-key-quotes/consistent/test.ts.lint index a2ee53079b5..d6404cc432e 100644 --- a/test/rules/object-literal-key-quotes/consistent/test.ts.lint +++ b/test/rules/object-literal-key-quotes/consistent/test.ts.lint @@ -27,7 +27,6 @@ const q = { }; const t = { hello: 123, - bye-bye: 45, nested: { ~ [All property names in this object literal must be consistently quoted or unquoted.] "bird": 2,