auto-request
Version:
通过Yapi JSON Schema生成接口Axios或Taro接口
18 lines (16 loc) • 568 B
Plain Text
{
"parser": "@typescript-eslint/parser",
"extends": ["plugin:@typescript-eslint/recommended"],
"parserOptions": {
"ecmaVersion": 2018, // Allows for the parsing of modern ECMAScript features
"sourceType": "module" // Allows for the use of imports
},
"rules": {
"react/jsx-uses-react": "off",
"react/react-in-jsx-scope": "off",
"quotes": [2, "single"],
"@typescript-eslint/explicit-module-boundary-types": "off",
"@typescript-eslint/no-this-alias": "off",
"@typescript-eslint/no-empty-interface": "off"
}
}