mirror of
https://github.com/stack-auth/stack.git
synced 2026-06-04 21:04:37 +08:00
22 lines
466 B
JavaScript
22 lines
466 B
JavaScript
module.exports = {
|
|
extends: ["../../configs/eslint/defaults.js", "../../configs/eslint/next.js"],
|
|
ignorePatterns: ["/*", "!/src"],
|
|
rules: {
|
|
"@typescript-eslint/no-misused-promises": [0],
|
|
"@typescript-eslint/no-floating-promises": [0],
|
|
"import/order": [
|
|
1,
|
|
{
|
|
groups: [
|
|
"external",
|
|
"builtin",
|
|
"internal",
|
|
"sibling",
|
|
"parent",
|
|
"index",
|
|
],
|
|
},
|
|
],
|
|
},
|
|
};
|