forked from emanuelcasco/azure-middleware
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.eslintrc
106 lines (103 loc) · 9.49 KB
/
.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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
{
"parser": "babel-eslint", // https://github.com/babel/babel-eslint
"parserOptions": {
"ecmaFeatures": {
"experimentalObjectRestSpread": true
},
"sourceType": "module"
},
"env": { // http://eslint.org/docs/user-guide/configuring.html#specifying-environments
"node": true, // node global variables
"mocha": true, // mocha keywords
"es6": true
},
"plugins": [
"prettier"
],
"extends": [
"eslint:recommended",
"airbnb-base",
"prettier"
],
"rules": {
"accessor-pairs": 0, // http://eslint.org/docs/rules/accessor-pairs
"arrow-body-style": 0, // http://eslint.org/docs/rules/arrow-body-style
"callback-return": 0, // http://eslint.org/docs/rules/callback-return
"consistent-return": 0, // http://eslint.org/docs/rules/consistent-return
"default-case": 0, // http://eslint.org/docs/rules/default-case
"func-names": 0, // http://eslint.org/docs/rules/func-names
"global-require": 0, // http://eslint.org/docs/rules/global-require
"guard-for-in": 0, // http://eslint.org/docs/rules/guard-for-in
"handle-callback-err": 0, // http://eslint.org/docs/rules/handle-callback-err
"id-length": 0, // http://eslint.org/docs/rules/id-length
"id-match": 0, // http://eslint.org/docs/rules/id-match
"import/no-dynamic-require": 0, // https://github.com/benmosher/eslint-plugin-import/blob/master/docs/rules/no-dynamic-require.md
"import/no-extraneous-dependencies": 0, // https://github.com/benmosher/eslint-plugin-import/blob/master/docs/rules/no-extraneous-dependencies.md
"init-declarations": 0, // http://eslint.org/docs/rules/init-declarations
"jsx-quotes": 0, // http://eslint.org/docs/rules/jsx-quotes
"key-spacing": 0, // http://eslint.org/docs/rules/key-spacing
"linebreak-style": 0, // http://eslint.org/docs/rules/linebreak-style
"lines-around-comment": 0, // http://eslint.org/docs/rules/lines-around-comment
"max-depth": 0, // http://eslint.org/docs/rules/max-depth
"max-nested-callbacks": 0, // http://eslint.org/docs/rules/max-nested-callbacks
"max-params": 0, // http://eslint.org/docs/rules/max-params
"max-statements": 0, // http://eslint.org/docs/rules/max-statements
"newline-after-var": 0, // http://eslint.org/docs/rules/newline-after-var
"no-array-constructor": 0, // http://eslint.org/docs/rules/no-array-constructor
"no-arrow-condition": 0, // http://eslint.org/docs/rules/no-arrow-condition
"no-caller": 0, // http://eslint.org/docs/rules/no-caller
"no-case-declarations": 0, // http://eslint.org/docs/rules/no-case-declarations
"no-control-regex": 0, // http://eslint.org/docs/rules/no-control-regex
"no-else-return": 0, // http://eslint.org/docs/rules/no-else-return
"no-empty-character-class": 0, // http://eslint.org/docs/rules/no-empty-character-class
"no-extend-native": 0, // http://eslint.org/docs/rules/no-extend-native
"no-implicit-coercion": 0, // http://eslint.org/docs/rules/no-implicit-coercion
"no-inline-comments": 0, // http://eslint.org/docs/rules/no-inline-comments
"no-inner-declarations": 0, // http://eslint.org/docs/rules/no-inner-declarations
"no-invalid-this": 0, // http://eslint.org/docs/rules/no-invalid-this
"no-iterator": 0, // http://eslint.org/docs/rules/no-iterator
"no-lonely-if": 0, // http://eslint.org/docs/rules/no-lonely-if
"no-loop-func": 0, // http://eslint.org/docs/rules/no-loop-func
"no-magic-numbers": 0, // http://eslint.org/docs/rules/no-magic-numbers
"no-mixed-requires": 0, // http://eslint.org/docs/rules/no-mixed-requires
"no-multi-str": 0, // http://eslint.org/docs/rules/no-multi-str
"no-nested-ternary": 0, // http://eslint.org/docs/rules/no-nested-ternary
"no-param-reassign": 0, // https://eslint.org/docs/rules/no-param-reassign
"no-plusplus": 0, // http://eslint.org/docs/rules/no-plusplus
"no-process-env": 0, // http://eslint.org/docs/rules/no-process-env
"no-process-exit": 0, // http://eslint.org/docs/rules/no-process-exit
"no-proto": 0, // http://eslint.org/docs/rules/no-proto
"no-regex-spaces": 0, // http://eslint.org/docs/rules/no-regex-spaces
"no-restricted-imports": 0, // http://eslint.org/docs/rules/no-restricted-imports
"no-restricted-modules": 0, // http://eslint.org/docs/rules/no-restricted-modules
"no-restricted-syntax": 0, // http://eslint.org/docs/rules/no-restricted-syntax
"no-sequences": 0, // http://eslint.org/docs/rules/no-sequences
"no-spaced-func": 0, // http://eslint.org/docs/rules/no-spaced-func
"no-sync": 0, // http://eslint.org/docs/rules/no-sync
"no-ternary": 0, // http://eslint.org/docs/rules/no-ternary
"no-throw-literal": 0, // http://eslint.org/docs/rules/no-ternary
"no-undefined": 0, // http://eslint.org/docs/rules/no-undefined
"no-underscore-dangle": 0, // http://eslint.org/docs/rules/no-underscore-dangle
"no-unexpected-multiline": 0, // http://eslint.org/docs/rules/no-unexpected-multiline
"no-unused-expressions": 0, // http://eslint.org/docs/rules/no-unused-expressions
"no-unused-vars": 0, // http://eslint.org/docs/rules/no-unused-vars
"no-useless-escape": 0, // http://eslint.org/docs/rules/no-useless-escape
"one-var": 0, // http://eslint.org/docs/rules/one-var
"operator-linebreak": 0, // http://eslint.org/docs/rules/operator-linebreak
"padded-blocks": 0, // http://eslint.org/docs/rules/padded-blocks
"prefer-arrow-callback": 0, // http://eslint.org/docs/rules/prefer-arrow-callback
"prefer-destructuring": 0, // https://eslint.org/docs/rules/prefer-destructuring
"prefer-promise-reject-errors": 0, // https://eslint.org/docs/rules/prefer-promise-reject-errors
"prefer-reflect": 0, // http://eslint.org/docs/rules/prefer-reflect
"prefer-rest-params": 0, // http://eslint.org/docs/rules/prefer-rest-params
"radix": 0, // http://eslint.org/docs/rules/radix
"require-jsdoc": 0, // http://eslint.org/docs/rules/require-jsdoc
"require-yield": 0, // http://eslint.org/docs/rules/require-yield
"sort-vars": 0, // http://eslint.org/docs/rules/sort-vars
"strict": 0, // http://eslint.org/docs/rules/strict
"valid-jsdoc": 0, // http://eslint.org/docs/rules/valid-jsdoc
"vars-on-top": 0, // http://eslint.org/docs/rules/vars-on-top
"wrap-regex": 0, // http://eslint.org/docs/rules/wrap-regex
"prettier/prettier": ["error", { "printWidth": 110, "singleQuote": true }] // https://github.com/prettier/prettier
}
}