Clarify strict ESLint rule

This commit is contained in:
Jimmy Jia
2015-09-29 12:19:49 -04:00
parent 4268bba57c
commit 8da7adbdd4

View File

@@ -1,6 +1,6 @@
module.exports = {
'rules': {
// require that all functions are run in strict mode
// babel inserts `'use strict';` for us
'strict': [2, 'never']
}
};