Some Eclipse Foundation services are deprecated, or will be soon. Please ensure you've read this important communication.

Bug 456931

Summary: [eslint] avoid marking quoted keywords with no-reserved-keys rule
Product: [ECD] Orion Reporter: Michael Rennie <Michael_Rennie>
Component: JS ToolsAssignee: Michael Rennie <Michael_Rennie>
Status: RESOLVED FIXED QA Contact:
Severity: normal    
Priority: P3    
Version: 8.0   
Target Milestone: 8.0   
Hardware: PC   
OS: Mac OS X   
Whiteboard:

Description Michael Rennie CLA 2015-01-07 10:30:13 EST
Title says it all, the current state of the rule marks keywords used as object keys if they are quoted or not:

break: {} -> a potential ES3 incompatibility problem, don't do this
'break': {} -> not necessarily a problem, but hey, don't do it 

The second isn't technically a problem, more a stylistic issue, so we should avoid marking it as the same problem / severity.