axios-miniprogram/.eslintrc

27 lines
593 B
Plaintext
Raw Normal View History

2020-04-14 23:45:21 +08:00
/*
* @Author: early-autumn
* @Date: 2020-03-06 20:35:23
* @LastEditors: early-autumn
2020-04-17 15:42:38 +08:00
* @LastEditTime: 2020-04-17 12:39:07
2020-04-14 23:45:21 +08:00
*/
{
"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",
2020-07-27 11:34:01 +08:00
"@typescript-eslint/no-namespace": "off"
2020-04-14 23:45:21 +08:00
}
}