Arthur de Jong

Open Source / Free Software developer

summaryrefslogtreecommitdiffstats
path: root/.eslintrc.yml
blob: 76b432b1f67cd11bf936306b89785fbbb2ba83d3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
env:
  browser: true
  commonjs: true
  es6: true
  jquery: true
extends:
  - standard
globals:
  Atomics: readonly
  Plotly: true
  SharedArrayBuffer: readonly
  bootstrap: true
  d3: true
  moment: true
parserOptions:
  ecmaVersion: 2018
  sourceType: module
rules:
  space-before-function-paren: ["error", {"anonymous": "always", "named": "never", "asyncArrow": "always"}]
  object-curly-spacing: ["error", "never"]