serverless/tests/.eslintrc.js
Mariusz Nowak 4944f471b1
Prettify
2019-06-26 12:43:01 +02:00

10 lines
223 B
JavaScript

module.exports = {
parserOptions: {
ecmaVersion: 2017,
},
rules: {
// console.info allowed to report on long going tasks or valuable debug information
'no-console': ['error', { allow: ['info'] }],
},
};