Revision 2916006477bd50d5a7513640fcb610f7fd0dddda authored by Tim Perry on 22 June 2021, 12:43:34 UTC, committed by Luigi Pinca on 28 June 2021, 19:08:28 UTC
1 parent b434b9f
Raw File
.eslintrc.yaml
env:
  browser: true
  es6: true
  mocha: true
  node: true
extends:
  - eslint:recommended
  - plugin:prettier/recommended
parserOptions:
  ecmaVersion: 9
rules:
  no-console: off
  no-var: error
  prefer-const: error
  quotes:
    - error
    - single
    - avoidEscape: true
back to top