mirror of
https://github.com/toeverything/AFFiNE.git
synced 2024-11-23 01:38:17 +03:00
17 lines
298 B
JSON
17 lines
298 B
JSON
{
|
|
"rules": {
|
|
// allow
|
|
"import/named": "allow",
|
|
"no-await-in-loop": "allow",
|
|
// deny
|
|
"unicorn/prefer-array-some": "error",
|
|
"unicorn/no-useless-promise-resolve-reject": "error",
|
|
"import/no-cycle": [
|
|
"error",
|
|
{
|
|
"ignoreTypes": true
|
|
}
|
|
]
|
|
}
|
|
}
|