serverless
Version:
Serverless Framework - Build web, mobile and IoT applications with serverless architectures using AWS Lambda, Azure Functions, Google CloudFunctions & more
26 lines (24 loc) • 495 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'] }],
},
overrides: [
{
files: ['utils/**.js'],
parserOptions: {
ecmaVersion: 2015,
},
},
{
files: ['utils/aws-cleanup.js', 'utils/integration.js'],
parserOptions: {
ecmaVersion: 2017,
},
},
],
};