summaryrefslogtreecommitdiffstats
path: root/packages/markdown/marked/.eslintrc.json
blob: 1800cb721a56bffbe6eef0087b9fe85c344555ef (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
{
  "extends": "standard",
  "plugins": [
    "standard"
  ],
  "parserOptions": { "ecmaVersion": 5 },
  "rules": {
    "semi": ["error", "always"],
    "indent": ["warn", 2, {
      "VariableDeclarator": { "var": 2 },
      "SwitchCase": 1,
      "outerIIFEBody": 0
    }],
    "space-before-function-paren": "off",
    "object-curly-spacing": "off",
    "operator-linebreak": ["error", "before", { "overrides": { "=": "after" } }],
    "no-cond-assign": "off",
    "no-useless-escape": "off",
    "no-return-assign": "off",
    "one-var": "off",
    "no-control-regex": "off"
  },
  "env": {
    "node": true,
    "browser": true,
    "amd": true,
    "jasmine": true
  }
}