mirror of
https://github.com/serverless/serverless.git
synced 2026-02-01 16:07:28 +00:00
10 lines
223 B
JavaScript
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'] }],
|
|
},
|
|
};
|