serverless
Version:
Serverless Framework - Build web, mobile and IoT applications with serverless architectures using AWS Lambda, Azure Functions, Google CloudFunctions & more
53 lines (51 loc) • 1.2 kB
JavaScript
;
module.exports = {
rules: {
'body-leading-blank': [2, 'always'],
'footer-leading-blank': [2, 'always'],
'header-max-length': [2, 'always', 72],
'scope-enum': [
2,
'always',
[
'',
'AWS ALB',
'AWS API Gateway',
'AWS CloudFormation',
'AWS CloudFront',
'AWS Cognito',
'AWS Deploy',
'AWS EventBridge',
'AWS HTTP API',
'AWS IAM',
'AWS Info',
'AWS Kinesis',
'AWS Lambda',
'AWS Local Invocation',
'AWS S3',
'AWS Schedule',
'AWS SNS',
'AWS SQS',
'AWS Stream',
'AWS Websocket',
'CLI',
'Components',
'Plugins',
'Standalone',
'Templates',
'User Config',
'Variables',
],
],
'subject-case': [2, 'always', 'sentence-case'],
'subject-empty': [2, 'never'],
'subject-full-stop': [2, 'never', '.'],
'type-case': [2, 'always', 'lower-case'],
'type-empty': [2, 'never'],
'type-enum': [
2,
'always',
['build', 'chore', 'ci', 'docs', 'feat', 'fix', 'perf', 'refactor', 'style', 'test'],
],
},
};