2020-02-04 13:27:46 -06:00
|
|
|
parser: "@typescript-eslint/parser"
|
|
|
|
env:
|
|
|
|
browser: true
|
2020-02-14 19:46:00 -05:00
|
|
|
es6: true # Map, etc.
|
2020-02-04 13:27:46 -06:00
|
|
|
mocha: true
|
|
|
|
node: true
|
|
|
|
|
|
|
|
parserOptions:
|
|
|
|
ecmaVersion: 2018
|
|
|
|
sourceType: module
|
|
|
|
|
|
|
|
extends:
|
|
|
|
- eslint:recommended
|
|
|
|
- plugin:@typescript-eslint/recommended
|
|
|
|
- plugin:import/recommended
|
|
|
|
- plugin:import/typescript
|
|
|
|
- plugin:prettier/recommended
|
|
|
|
- prettier # Removes eslint rules that conflict with prettier.
|
|
|
|
- prettier/@typescript-eslint # Remove conflicts again.
|
|
|
|
|
|
|
|
rules:
|
|
|
|
# For overloads.
|
|
|
|
no-dupe-class-members: off
|
2020-04-27 08:41:52 -04:00
|
|
|
"@typescript-eslint/no-use-before-define": off
|
2020-05-12 19:19:37 -04:00
|
|
|
"@typescript-eslint/no-non-null-assertion": off
|
2020-05-10 02:42:34 -04:00
|
|
|
|
|
|
|
settings:
|
|
|
|
# Does not work with CommonJS unfortunately.
|
|
|
|
import/ignore:
|
|
|
|
- env-paths
|
|
|
|
- xdg-basedir
|