aboutsummaryrefslogtreecommitdiff
path: root/.config/eslint/config.yaml
blob: a030580b5f48bde42ac606ce2a4decd3667647d9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
---
env:
  browser: true
  commonjs: true
  es6: true
extends: eslint:recommended
globals:
  Atomics: readonly
  SharedArrayBuffer: readonly
parserOptions:
  ecmaVersion: 2018
  sourceType: module
  allowImportExportEverywhere: true
rules:
  semi: error
  curly: error