aboutsummaryrefslogtreecommitdiffstats
path: root/.eslintrc.yml
blob: 0acf1290670801bea4631419177af785bbeae52e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
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
ignorePatterns:
  - 'app/static/*'
  - 'node_modules/*'