.eslintrc.json

Wed, 25 Sep 2024 15:03:13 -0500

author
Meredith Howard <mhoward@roomag.org>
date
Wed, 25 Sep 2024 15:03:13 -0500
changeset 1179
b0a0ba3240b5
parent 263
ae3ccd3bd949
permissions
-rw-r--r--

No LSP autostart when read-only

I think nvim actually threw out 'view' argc detection, I just use -R and alias
view to it.

{
  "extends": "eslint:recommended",
  "rules": {
    "semi":                        [2, "never"],
    "space-before-function-paren": [2, "never"],
    "space-in-parens":             [2],
    "brace-style":                 [2, "stroustrup", { "allowSingleLine": true }],
    "quotes":                      [2, "single", "avoid-escape"],
    "curly":                       [2, "multi-or-nest", "consistent"],
    "object-curly-spacing":        [2],
    "array-bracket-spacing":       [2],
    "keyword-spacing":             [2],
    "comma-spacing":               [2],
    "no-else-return":              [2],
    "comma-dangle":                [1, "always-multiline"],
    "eqeqeq":                      [1, "smart"],
    "no-extra-bind":               [1],
    "no-console":                  [0]
  }
}

mercurial