2020-02-05 05:34:19 +00:00
|
|
|
{
|
|
|
|
"env": {
|
|
|
|
"commonjs": true,
|
|
|
|
"es6": true,
|
|
|
|
"node": true
|
|
|
|
},
|
|
|
|
"extends": [
|
|
|
|
"eslint:recommended",
|
2020-06-02 21:48:18 +00:00
|
|
|
"plugin:@typescript-eslint/eslint-recommended",
|
2020-02-05 05:34:19 +00:00
|
|
|
"plugin:@typescript-eslint/recommended",
|
2020-05-26 12:45:48 +00:00
|
|
|
"plugin:jest/recommended",
|
2020-06-24 19:45:42 +00:00
|
|
|
"plugin:prettier/recommended",
|
2020-05-26 12:45:48 +00:00
|
|
|
"prettier/@typescript-eslint"
|
2020-02-05 05:34:19 +00:00
|
|
|
],
|
2020-05-26 12:45:48 +00:00
|
|
|
"plugins": ["@typescript-eslint"],
|
2020-02-05 05:34:19 +00:00
|
|
|
"globals": {
|
|
|
|
"Atomics": "readonly",
|
|
|
|
"SharedArrayBuffer": "readonly"
|
|
|
|
},
|
|
|
|
"parser": "@typescript-eslint/parser",
|
|
|
|
"parserOptions": {
|
|
|
|
"sourceType": "module",
|
|
|
|
"ecmaVersion": 2019
|
|
|
|
},
|
|
|
|
"rules": {
|
|
|
|
}
|
|
|
|
}
|