Using standard@4.5.4 in conjunction with babel-eslint@4.0.5 there is no error in the following code:
import fn from 'fn'
export default function something (args) {
return fn({
field: 'blah',
...args
})
}
However, upgrading to standard@5.0.2 an error is thrown:
app.js:6:5: Expected "[" and "]" to be on the same line (standard/computed-property-even-spacing)
Potentially a bug in https://github.com/xjamundx/eslint-plugin-standard/tree/master or is this expected behavior?
Using
standard@4.5.4in conjunction withbabel-eslint@4.0.5there is no error in the following code:However, upgrading to
standard@5.0.2an error is thrown:Potentially a bug in https://github.com/xjamundx/eslint-plugin-standard/tree/master or is this expected behavior?