boluo-app-main/.eslintrc
2025-03-31 22:34:22 +08:00

27 lines
728 B
Plaintext

{
"extends": ["taro/react", "prettier", "plugin:@typescript-eslint/recommended"],
"plugins": ["prettier", "import", "@typescript-eslint"],
"parser": "@typescript-eslint/parser",
"rules": {
"react/jsx-uses-react": "off",
"react/react-in-jsx-scope": "off",
"import/order": [
"error",
{
"groups": ["builtin", "external", ["internal", "parent", "sibling", "index"], "unknown"],
"pathGroups": [{
"pattern": "@/**",
"group": "external",
"position": "after"
}],
"newlines-between": "always",
"alphabetize": {
"order": "asc",
"caseInsensitive": true
}
}
],
"prettier/prettier": "error"
}
}