Added id-length rule to style guide

This commit is contained in:
Ankit Sardesai
2015-09-12 21:05:50 -04:00
parent 69b86bd8c6
commit 867bfdeace

View File

@@ -128,6 +128,10 @@ module.exports = {
'quotes': [
2, 'single', 'avoid-escape' // http://eslint.org/docs/rules/quotes
],
'id-length': [2, {
'min': 2,
'properties': 'never'
}],
'camelcase': [2, { // http://eslint.org/docs/rules/camelcase
'properties': 'never'
}],