.eslintrc.yml 206 B

1234567
  1. parserOptions: {
  2. ecmaVersion: 8, // 8 = ECMA2017 necessary for promises/async. The ecmaVersion isn't set in stone, for now mostly adapted for eslint.
  3. }
  4. extends: standard
  5. rules:
  6. indent: [2, 4]