UNPKG

544 BPlain TextView Raw
1{
2 "parser": "@typescript-eslint/parser",
3 "extends": ["plugin:@typescript-eslint/recommended", "airbnb", "prettier"],
4 "parserOptions": {
5 "ecmaVersion": 2018,
6 "sourceType": "module"
7 },
8 "env": {
9 "node": true,
10 "es6": true
11 },
12 "rules": {
13 "global-require": 0,
14 "comma-dangle": 0,
15 "wrap-iife": ["error", "inside"],
16 "implicit-arrow-linebreak": "warn",
17 "@typescript-eslint/no-explicit-any": 2,
18 "import/no-unresolved": 0,
19 "import/extensions": 0,
20 "@typescript-eslint/no-empty-function": 0
21 }
22}