.eslintrc.yml - Configure ESLint for this projectΒΆ

env:
  commonjs: true
  node: true
extends:
  - standard
  - prettier
parser: '@typescript-eslint/parser'
parserOptions:
  ecmaVersion: latest
plugins:
  - '@typescript-eslint'
rules:
  camelcase: off

TypeScript already enforces this; otherwise, eslint complains that NodeJS is undefined. See this GitHub issue.

  no-undef: off