aboutsummaryrefslogtreecommitdiffstats
path: root/.eslintrc.yml
blob: a1f38b0537ec00a1273e35a0938d12119825332d (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