aboutsummaryrefslogtreecommitdiffstats
path: root/.eslintrc.yml
blob: 495c107beb16837c78865c028077cd8b09cc3e41 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
env:
  es2021: true
  node: true
extends: eslint:recommended
parserOptions:
  ecmaVersion: 13
  sourceType: module
rules:
  indent:
    - error
    - 4
  linebreak-style:
    - error
    - unix
  quotes:
    - error
    - single
  semi:
    - error
    - always