lancew/WRL_hacks

View on GitHub
.eslintrc

Summary

Maintainability
Test Coverage
env:
    browser: true
    jquery: true
globals:
    close_cvl_modal: false
rules:
    comma-dangle:              [2, always-multiline]
    comma-spacing:              2
    computed-property-spacing:  2
    dot-notation:               2
    func-style:                [2, declaration]
    indent:                     2
    key-spacing:               [2, { afterColon: true, beforeColon: false }]
    linebreak-style:            2
    max-len:                   [2, 120]
    no-catch-shadow:            2
    no-delete-var:              2
    no-dupe-args:               2
    no-dupe-keys:               2
    no-eval:                    2
    no-extend-native:           2
    no-extra-bind:              2
    no-extra-boolean-cast:      2
    no-extra-parens:            2
    no-extra-semi:              2
    no-implied-eval:            2
    no-label-var:               2
    no-lone-blocks:             2
    no-loop-func:               2
    no-native-reassign:         2
    no-new:                     2
    no-new-func:                2
    no-new-wrappers:            2
    no-obj-calls:               2
    no-octal-escape:            2
    no-param-reassign:          2
    no-proto:                   2
    no-redeclare:               2
    no-return-assign:           2
    no-script-url:              2
    no-self-compare:            2
    no-sequences:               2
    no-shadow:                  2
    no-shadow-restricted-names: 2
    no-sparse-arrays:           2
    no-throw-literal:           2
    no-undef:                   2
    no-undef-init:              2
    no-unreachable:             2
    no-unused-expressions:      2
    no-unused-vars:             2
    no-use-before-define:      [2, nofunc]
    no-void:                    2
    no-with:                    2
    object-curly-spacing:      [2, always]
    operator-assignment:       [2, always]
    quotes:                    [2, single, avoid-escape]
    semi:                       2
    sort-vars:                  2
    space-infix-ops:            2
    space-in-parens:            2
    strict:                    [2, global]
    use-isnan:                  2
    valid-typeof:               2