27 lines
728 B
Plaintext
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"
|
|
}
|
|
}
|