serverless-plugin-aws-alerts
Version:
[![NPM version][npm-image]][npm-url] [![Build Status][travis-image]][travis-url] [![Dependency Status][daviddm-image]][daviddm-url] [![codecov][codecov-image]][codecov-url]
39 lines (33 loc) • 748 B
Plain Text
extends:
- airbnb-base
- prettier
- plugin:import/errors
- plugin:import/warnings
- plugin:jest/recommended
globals:
Atomics: readonly
SharedArrayBuffer: readonly
parserOptions:
ecmaVersion: 2020
sourceType: module
plugins:
- jest
- prettier
rules: {
"prettier/prettier": "error",
"import/prefer-default-export": 0,
"jest/no-focused-tests": 0,
# eventually want to remove everything below this
"class-methods-use-this": 0,
"prefer-object-spread": 0,
"prefer-destructuring": 0,
"no-return-assign": 0,
"array-callback-return": 0,
"global-require": 0,
"consistent-return": 0,
"no-param-reassign": 0,
"no-underscore-dangle": 0,
"no-plusplus": 0,
"guard-for-in": 0,
"no-restricted-syntax": 0
}