summaryrefslogtreecommitdiffstats
path: root/dox-sequence-diagram-ui/eslintrc.json
blob: 01b65f3845a675eadc24e85cf55d018e102d4f06 (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

@media only all and (prefers-color-scheme: dark) {
.highlight .hll { background-color: #49483e }
.highlight .c { color: #75715e } /* Comment */
.highlight .err { color: #960050; background-color: #1e0010 } /* Error */
.highlight .k { color: #66d9ef } /* Keyword */
.highlight .l { color: #ae81ff } /* Literal */
.highlight .n { color: #f8f8f2 } /* Name */
.highlight .o { color: #f92672 } /* Operator */
.highlight .p { color: #f8f8f2 } /* Punctuation */
.highlight .ch { color: #75715e } /* Comment.Hashbang */
.highlight .cm { color: #75715e } /* Comment.Multiline */
.highlight .cp { color: #75715e } /* Comment.Preproc */
.highlight .cpf { color: #75715e } /* Comment.PreprocFile */
.highlight .c1 { color: #75715e } /* Comment.Single */
.highlight .cs { color: #75715e } /* Comment.Special */
.highlight .gd { color: #f92672 } /* Generic.Deleted */
.highlight .ge { font-style: italic } /* Generic.Emph */
.highlight .gi { color: #a6e22e } /* Generic.Inserted */
.highlight .gs { font-weight: bold } /* Generic.Strong */
.highlight .gu { color: #75715e } /* Generic.Subheading */
.highlight .kc { color: #66d9ef } /* Keyword.Constant */
.highlight .kd { color: #66d9ef } /* Keyword.Declaration */
.highlight .kn { color: #f92672 } /* Keyword.Namespace */
.highlight .kp { color: #66d9ef } /* Keyword.Pseudo */
.highlight .kr { color: #66d9ef } /* Keyword.Reserved */
.highlight .kt { color: #66d9ef } /* Keyword.Type */
.highlight .ld { color: #e6db74 } /* Literal.Date */
.highlight .m { color: #ae81ff } /* Literal.Number */
.highlight .s { color: #e6db74 } /* Literal.String */
.highlight .na { color: #a6e22e } /* Name.Attribute */
.highlight .nb { color: #f8f8f2 } /* Name.Builtin */
.highlight .nc { color: #a6e22e } /* Name.Class */
.highlight .no { color: #66d9ef } /* Name.Constant */
.highlight .nd { color: #a6e22e } /* Name.Decorator */
.highlight .ni { color: #f8f8f2 } /* Name.Entity */
.highlight .ne { color: #a6e22e } /* Name.Exception */
.highlight .nf { color: #a6e22e } /* Name.Function */
.highlight .nl { color: #f8f8f2 } /* Name.Label */
.highlight .nn { color: #f8f8f2 } /* Nam
{
    "parser": "babel-eslint",
    "parserOptions": {
        "ecmaVersion": 6,
        "sourceType": "module",
        "ecmaFeatures": {
            "jsx": true,
            "classes": true,
            "modules": true,
            "experimentalDecorators": true
        }
    },
    "env": {
        "es6": true,
        "jquery": true,
        "node": true,
        "jest": true
    },
    "plugins": ["react", "import", "prettier"],
    "extends": ["prettier"],
    "globals": {
        "Event": true,
        "window": true,
        "navigator": true,
        "System": true,
        "document": true,
        "localStorage": true,
        "sessionStorage": true,
        "Image": true,
        "requestAnimationFrame": true,
        "cancelAnimationFrame": true,
        "DEBUG": true,
        "SVGElement": true,
        "FormData": true,
        "DEV": true,
        "Blob": true,
        "XMLHttpRequest": true,
        "WebSocket": true,
        "URL": true,
        "PunchOutRegistry": true,
        "it": true,
        "describe": true
    },
    "rules": {
        "prettier/prettier": [
            "error",
            {
                "singleQuote": true,
                "jsxBracketSameLine": true,
                "tabWidth": 4
            }
        ],
        "linebreak-style": 0,
        "no-unused-vars": 2,
        "no-bitwise": 0,
        "no-eq-null": 2,
        "eqeqeq": 2,
        "no-unused-expressions": 2,
        "no-use-before-define": 2,
        "new-cap": [
            2,
            {
                "capIsNewExceptions": ["DataTable", "V"]
            }
        ],
        "no-caller": 2,
        "no-empty": 2,
        "no-undef": 2,
        "quotes": [2, "single", "avoid-escape"],
        "no-plusplus": 0,
        "no-cond-assign": [2, "except-parens"],
        "no-invalid-this": 0,
        "dot-notation": 0,
        "camelcase": [
            2,
            {
                "properties": "never"
            }
        ],
        "curly": 2,
        "semi": [2, "always"],
        "import/default": 0,
        "import/no-unresolved": 0,
        "import/no-named-as-default": 2,
        "import/no-duplicates": 0,
        "import/imports-first": 2,
        "import/export": 2,
        "react/display-name": 0,
        "react/forbid-prop-types": 0,
        "react/jsx-boolean-value": 0,
        "react/jsx-no-duplicate-props": 1,
        "react/jsx-no-literals": 0,
        "react/jsx-no-undef": 1,
        "react/jsx-sort-prop-types": 0,
        "react/jsx-sort-props": 0,
        "react/jsx-uses-react": 1,
        "react/jsx-uses-vars": 1,
        "react/no-danger": 1,
        "react/no-did-mount-set-state": 2,
        "react/no-did-update-set-state": 2,
        "react/no-direct-mutation-state": 1,
        "react/no-multi-comp": 0,
        "react/no-set-state": 0,
        "react/no-unknown-property": 1,
        "react/prop-types": 0,
        "react/react-in-jsx-scope": 1,
        "react/self-closing-comp": 1,
        "react/sort-comp": 0
    }
}