axios-miniprogram/.eslintrc

16 lines
385 B
Plaintext
Raw Normal View History

2023-03-23 20:09:00 +08:00
{
"env": {
"es2022": true,
"node": true
},
"extends": ["eslint:recommended", "plugin:@typescript-eslint/recommended"],
"parser": "@typescript-eslint/parser",
"plugins": ["@typescript-eslint"],
"root": true,
"rules": {
2023-03-28 20:48:02 +08:00
"@typescript-eslint/no-explicit-any": 0,
2023-04-17 19:27:44 +08:00
"@typescript-eslint/no-non-null-assertion": 0,
"@typescript-eslint/ban-ts-comment": 0
2023-03-23 20:09:00 +08:00
}
}