forked from ACloudGuru/serverless-plugin-aws-alerts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.eslintrc
38 lines (33 loc) · 748 Bytes
/
.eslintrc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
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
}