[eslint config] [base] [fix] Prevent trailing commas in the legacy config.

Fixes #950.
This commit is contained in:
Jordan Harband
2016-07-11 23:37:51 -07:00
parent a9bfee01cd
commit b352ec6a4a

View File

@@ -15,5 +15,7 @@ module.exports = {
},
ecmaFeatures: {},
globals: {},
rules: {}
rules: {
'comma-dangle': [2, 'never']
}
};