Welcome to mirror list, hosted at ThFree Co, Russian Federation.

.eslintrc - github.com/twbs/mq4-hover-shim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 0d4248bd51be4df70befcc91a4a02c39ee931a8f (plain)
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
{
    "extends": "eslint:recommended",
    "ecmaFeatures": {
        "blockBindings": true
    },
    "rules": {
        "array-bracket-spacing": [2, "never"],
        "arrow-parens": 2,
        "arrow-spacing": [2, {"before": true, "after": true}],
        "block-scoped-var": 2,
        "block-spacing": [2, "always"],
        "brace-style": [2, "stroustrup"],
        "camelcase": 2,
        "constructor-super": 2,
        "comma-spacing": [2, {"before": false, "after": true}],
        "comma-style": [2, "last"],
        "computed-property-spacing": [2, "never"],
        "consistent-this": [2, "self"],
        "curly": 2,
        "dot-location": [2, "property"],
        "eol-last": 2,
        "eqeqeq": 2,
        "key-spacing": [2, {"beforeColon": false, "afterColon": true}],
        "linebreak-style": [2, "unix"],
        "new-cap": 2,
        "new-parens": 2,
        "no-array-constructor": 2,
        "no-bitwise": 2,
        "no-const-assign": 2,
        "no-constant-condition": 0,
        "no-dupe-args": 2,
        "no-dupe-class-members": 2,
        "no-duplicate-case": 2,
        "no-empty-character-class": 2,
        "no-eval": 2,
        "no-floating-decimal": 2,
        "no-implied-eval": 2,
        "no-inline-comments": 0,
        "no-irregular-whitespace": 2,
        "no-mixed-spaces-and-tabs": 2,
        "no-multi-spaces": 2,
        "no-multiple-empty-lines": 0,
        "no-new-object": 2,
        "no-param-reassign": 0,
        "no-process-env": 2,
        "no-restricted-syntax": [2, "WithStatement"],
        "no-self-compare": 2,
        "no-spaced-func": 2,
        "no-this-before-super": 2,
        "no-throw-literal": 2,
        "no-trailing-spaces": 2,
        "no-underscore-dangle": 0,
        "no-unexpected-multiline": 2,
        "no-unneeded-ternary": 2,
        "no-useless-call": 2,
        "no-void": 2,
        "one-var": [2, "never"],
        "object-curly-spacing": [2, "never"],
        "object-shorthand": [2, "always"],
        "operator-assignment": [2, "always"],
        "operator-linebreak": [2, "after"],
        "padded-blocks": 0,
        "prefer-const": 2,
        "prefer-spread": 2,
        "quote-props": [2, "as-needed", {"keywords": true}],
        "quotes": 0,
        "radix": 2,
        "require-jsdoc": 2,
        "semi": [2, "always"],
        "semi-spacing": [2, {"before": false, "after": true}],
        "space-after-keywords": [2, "always"],
        "space-before-blocks": [2, "always"],
        "space-before-function-paren": [2, {"anonymous": "always", "named": "never"}],
        "space-before-keywords": [2, "always"],
        "space-in-parens": [2, "never"],
        "space-return-throw-case": 2,
        "space-unary-ops": [2, {"words": true, "nonwords": false}],
        "spaced-comment": [2, "always", {"markers": ["!"]}],
        "strict": [2, "global"],
        "vars-on-top": 0,
        "wrap-iife": [2, "inside"],
        "yoda": [2, "never"]
    }
}