2019-01-30 12:06:35 +01:00
|
|
|
{
|
|
|
|
"env": {
|
2019-02-11 13:43:04 +01:00
|
|
|
"browser": true,
|
2019-02-26 17:05:30 +01:00
|
|
|
"node": true,
|
|
|
|
"jest": true
|
2019-01-30 12:06:35 +01:00
|
|
|
},
|
|
|
|
"parser": "@typescript-eslint/parser",
|
|
|
|
"plugins": ["@typescript-eslint", "prettier"],
|
|
|
|
"extends": [
|
|
|
|
"eslint:recommended",
|
2019-02-11 13:43:04 +01:00
|
|
|
"plugin:prettier/recommended",
|
|
|
|
"plugin:@typescript-eslint/recommended"
|
|
|
|
],
|
|
|
|
"rules": {
|
2019-04-12 11:38:48 +02:00
|
|
|
"no-console": "off",
|
2019-02-26 17:05:30 +01:00
|
|
|
"@typescript-eslint/indent": "off",
|
2019-04-12 11:38:48 +02:00
|
|
|
"@typescript-eslint/explicit-function-return-type": "off"
|
2019-02-11 13:43:04 +01:00
|
|
|
}
|
2019-01-30 12:06:35 +01:00
|
|
|
}
|