summaryrefslogtreecommitdiff
path: root/doc/.eslintrc.yaml
blob: 52e5b7eef91d9c81042053062705dd90d7a16245 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
## Docs-specific linter rules

rules:
  object-curly-spacing: [2, always]

  # ease some restrictions in doc examples
  no-restricted-properties: 0
  no-undef: 0
  no-unused-vars: 0
  strict: 0

  # add new ECMAScript features gradually
  no-var: 2
  prefer-const: 2