Skip to content

Commit 6032a41

Browse files
authored
Merge pull request #18 from RATIU5/feat/auth-api-routes
Feat/auth api routes
2 parents 1171197 + 2315c46 commit 6032a41

433 files changed

Lines changed: 20236 additions & 20522 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.oxlintrc.json

Lines changed: 37 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,14 @@
11
{
22
"$schema": "./node_modules/oxlint/configuration_schema.json",
3-
"plugins": ["typescript", "unicorn", "oxc", "import", "promise", "node"],
3+
"plugins": [
4+
"typescript",
5+
"unicorn",
6+
"oxc",
7+
"import",
8+
"promise",
9+
"node",
10+
"eslint"
11+
],
412
"categories": {
513
"correctness": "error",
614
"suspicious": "error",
@@ -50,7 +58,34 @@
5058
"disallowTypeAnnotations": false
5159
}
5260
],
53-
"import/consistent-type-specifier-style": ["error", "prefer-inline"],
61+
"import/consistent-type-specifier-style": "off",
62+
"typescript/no-unnecessary-type-assertion": "error",
63+
"typescript/no-unnecessary-type-constraint": "error",
64+
"typescript/no-useless-empty-export": "error",
65+
"typescript/no-import-type-side-effects": "error",
66+
"import/no-duplicates": "error",
67+
"import/no-self-import": "error",
68+
"import/no-empty-named-blocks": "error",
69+
"oxc/misrefactored-assign-op": "error",
70+
"eslint/no-useless-constructor": "error",
71+
"eslint/no-unneeded-ternary": "error",
72+
"eslint/no-useless-concat": "error",
73+
"unicorn/prefer-array-flat-map": "error",
74+
"unicorn/no-abusive-eslint-disable": "error",
75+
"typescript/no-unused-vars": [
76+
"error",
77+
{
78+
"argsIgnorePattern": "^_",
79+
"varsIgnorePattern": "^_"
80+
}
81+
],
82+
"typescript/array-type": [
83+
"error",
84+
{
85+
"default": "generic",
86+
"readonly": "generic"
87+
}
88+
],
5489
"no-restricted-imports": [
5590
"error",
5691
{
Lines changed: 5 additions & 0 deletions
Lines changed: 5 additions & 0 deletions

.reference/effect-smol/.changeset/add-missing-tx-modules.md

Lines changed: 2 additions & 2 deletions
Lines changed: 5 additions & 0 deletions
Lines changed: 5 additions & 0 deletions
Lines changed: 5 additions & 0 deletions
Lines changed: 5 additions & 0 deletions
Lines changed: 5 additions & 0 deletions
Lines changed: 25 additions & 0 deletions

0 commit comments

Comments
 (0)