summaryrefslogtreecommitdiff
path: root/qutebrowser/javascript/.eslintrc.yaml
blob: 939500aa3896122888946383958cff9a43ea9a25 (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
# qutebrowser's way of using eslint is perhaps a bit untypical: We turn on *all*
# the checks eslint has to offer, and then selectively disable/reconfigure the
# ones which got in the way below.
#
# This makes eslint much stricter (which is good). However, it means you might
# run into a case where you totally disagree with what it says, because some
# check is not useful or desired for qutebrowser, but nobody did run into it
# yet.
#
# In those cases, it's absolutely okay to modify this config as part of your PR.
# See it as a way to fine-tune eslint rather than a rigid style guide.

env:
    browser: true
    es6: true

extends:
    "eslint:all"

rules:
    strict: ["error", "global"]
    one-var: "off"
    padded-blocks: ["error", "never"]
    space-before-function-paren: ["error", "never"]
    no-underscore-dangle: "off"
    camelcase: "off"
    require-jsdoc: "off"
    func-style: ["error", "declaration"]
    init-declarations: "off"
    no-plusplus: "off"
    no-extra-parens: "off"
    id-length: ["error", {"exceptions": ["i", "k", "v", "x", "y"]}]
    object-shorthand: "off"
    max-statements: ["error", {"max": 40}]
    quotes: ["error", "double", {"avoidEscape": true}]
    object-property-newline: ["error", {"allowMultiplePropertiesPerLine": true}]
    comma-dangle: ["error", "always-multiline"]
    no-magic-numbers: "off"
    no-undefined: "off"
    wrap-iife: ["error", "inside"]
    func-names: "off"
    sort-keys: "off"
    no-warning-comments: "off"
    max-len: ["error", {"ignoreUrls": true, "code": 88}]
    capitalized-comments: "off"
    prefer-destructuring: "off"
    line-comment-position: "off"
    no-inline-comments: "off"
    array-bracket-newline: "off"
    array-element-newline: "off"
    no-multi-spaces: ["error", {"ignoreEOLComments": true}]
    function-paren-newline: "off"
    multiline-comment-style: "off"
    no-bitwise: "off"
    no-ternary: "off"
    max-lines: "off"
    multiline-ternary: ["error", "always-multiline"]
    max-lines-per-function: "off"
    require-unicode-regexp: "off"
    max-params: "off"
    prefer-named-capture-group: "off"
    function-call-argument-newline: "off"
    no-negated-condition: "off"