2020-02-04 22:27:46 +03:00
|
|
|
parser: "@typescript-eslint/parser"
|
|
|
|
env:
|
|
|
|
browser: true
|
2020-02-15 03:46:00 +03:00
|
|
|
es6: true # Map, etc.
|
2020-02-04 22:27:46 +03: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 15:41:52 +03:00
|
|
|
"@typescript-eslint/no-use-before-define": off
|
2020-05-13 02:19:37 +03:00
|
|
|
"@typescript-eslint/no-non-null-assertion": off
|
2020-05-10 09:42:34 +03:00
|
|
|
|
|
|
|
settings:
|
|
|
|
# Does not work with CommonJS unfortunately.
|
|
|
|
import/ignore:
|
|
|
|
- env-paths
|
|
|
|
- xdg-basedir
|