27 lines
593 B
Plaintext
27 lines
593 B
Plaintext
|
/*
|
||
|
* @Author: early-autumn
|
||
|
* @Date: 2020-03-06 20:35:23
|
||
|
* @LastEditors: early-autumn
|
||
|
* @LastEditTime: 2020-04-17 12:39:07
|
||
|
*/
|
||
|
{
|
||
|
"parser": "@typescript-eslint/parser",
|
||
|
"extends": [
|
||
|
"plugin:@typescript-eslint/recommended",
|
||
|
"prettier/@typescript-eslint",
|
||
|
"plugin:prettier/recommended"
|
||
|
],
|
||
|
"plugins": [
|
||
|
"@typescript-eslint",
|
||
|
"prettier"
|
||
|
],
|
||
|
"env": {
|
||
|
"node": true,
|
||
|
"es6": true
|
||
|
},
|
||
|
"rules": {
|
||
|
"@typescript-eslint/no-explicit-any": "off",
|
||
|
"@typescript-eslint/explicit-function-return-type": "off",
|
||
|
"@typescript-eslint/no-namespace": "off"
|
||
|
}
|
||
|
}
|