@tailor-platform/create-sdk 1.47.1 → 1.48.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (38) hide show
  1. package/CHANGELOG.md +2 -0
  2. package/package.json +5 -8
  3. package/templates/executor/.oxlintrc.json +1 -120
  4. package/templates/executor/__dot__gitignore +0 -1
  5. package/templates/executor/package.json +3 -7
  6. package/templates/generators/.oxlintrc.json +1 -120
  7. package/templates/generators/__dot__gitignore +0 -1
  8. package/templates/generators/package.json +3 -7
  9. package/templates/hello-world/.oxlintrc.json +1 -120
  10. package/templates/hello-world/__dot__gitignore +0 -1
  11. package/templates/hello-world/package.json +4 -8
  12. package/templates/inventory-management/.oxlintrc.json +1 -119
  13. package/templates/inventory-management/__dot__gitignore +0 -1
  14. package/templates/inventory-management/package.json +4 -8
  15. package/templates/multi-application/.oxlintrc.json +1 -120
  16. package/templates/multi-application/__dot__gitignore +0 -1
  17. package/templates/multi-application/package.json +4 -8
  18. package/templates/resolver/.oxlintrc.json +1 -120
  19. package/templates/resolver/__dot__gitignore +0 -1
  20. package/templates/resolver/package.json +3 -7
  21. package/templates/static-web-site/.oxlintrc.json +1 -120
  22. package/templates/static-web-site/__dot__gitignore +0 -1
  23. package/templates/static-web-site/package.json +4 -8
  24. package/templates/tailordb/.oxlintrc.json +1 -120
  25. package/templates/tailordb/__dot__gitignore +0 -1
  26. package/templates/tailordb/package.json +3 -7
  27. package/templates/workflow/.oxlintrc.json +1 -120
  28. package/templates/workflow/__dot__gitignore +0 -1
  29. package/templates/workflow/package.json +3 -7
  30. package/templates/executor/eslint.config.js +0 -24
  31. package/templates/generators/eslint.config.js +0 -24
  32. package/templates/hello-world/eslint.config.js +0 -29
  33. package/templates/inventory-management/eslint.config.js +0 -35
  34. package/templates/multi-application/eslint.config.js +0 -29
  35. package/templates/resolver/eslint.config.js +0 -24
  36. package/templates/static-web-site/eslint.config.js +0 -24
  37. package/templates/tailordb/eslint.config.js +0 -24
  38. package/templates/workflow/eslint.config.js +0 -24
@@ -2,60 +2,20 @@
2
2
  "$schema": "./node_modules/oxlint/configuration_schema.json",
3
3
  "plugins": ["typescript"],
4
4
  "categories": {
5
- "correctness": "off"
5
+ "correctness": "error"
6
6
  },
7
7
  "env": {
8
8
  "builtin": true
9
9
  },
10
10
  "ignorePatterns": [".tailor-sdk/", "src/generated/", "tailor.d.ts"],
11
11
  "rules": {
12
- "constructor-super": "error",
13
- "for-direction": "error",
14
- "no-async-promise-executor": "error",
15
12
  "no-case-declarations": "error",
16
- "no-class-assign": "error",
17
- "no-compare-neg-zero": "error",
18
- "no-cond-assign": "error",
19
- "no-const-assign": "error",
20
- "no-constant-binary-expression": "error",
21
- "no-constant-condition": "error",
22
- "no-control-regex": "error",
23
- "no-debugger": "error",
24
- "no-delete-var": "error",
25
- "no-dupe-class-members": "error",
26
- "no-dupe-else-if": "error",
27
- "no-dupe-keys": "error",
28
- "no-duplicate-case": "error",
29
13
  "no-empty": "error",
30
- "no-empty-character-class": "error",
31
- "no-empty-pattern": "error",
32
- "no-empty-static-block": "error",
33
- "no-ex-assign": "error",
34
- "no-extra-boolean-cast": "error",
35
14
  "no-fallthrough": "error",
36
- "no-func-assign": "error",
37
- "no-global-assign": "error",
38
- "no-import-assign": "error",
39
- "no-invalid-regexp": "error",
40
- "no-irregular-whitespace": "error",
41
- "no-loss-of-precision": "error",
42
- "no-new-native-nonconstructor": "error",
43
- "no-nonoctal-decimal-escape": "error",
44
- "no-obj-calls": "error",
45
15
  "no-prototype-builtins": "error",
46
16
  "no-redeclare": "error",
47
17
  "no-regex-spaces": "error",
48
- "no-self-assign": "error",
49
- "no-setter-return": "error",
50
- "no-shadow-restricted-names": "error",
51
- "no-sparse-arrays": "error",
52
- "no-this-before-super": "error",
53
18
  "no-unexpected-multiline": "error",
54
- "no-unsafe-finally": "error",
55
- "no-unsafe-negation": "error",
56
- "no-unsafe-optional-chaining": "error",
57
- "no-unused-labels": "error",
58
- "no-unused-private-class-members": "error",
59
19
  "no-unused-vars": [
60
20
  "error",
61
21
  {
@@ -63,55 +23,26 @@
63
23
  "varsIgnorePattern": "^_"
64
24
  }
65
25
  ],
66
- "no-useless-backreference": "error",
67
- "no-useless-catch": "error",
68
- "no-useless-escape": "error",
69
- "no-with": "error",
70
- "require-yield": "error",
71
- "use-isnan": "error",
72
- "valid-typeof": "error",
73
- "@typescript-eslint/await-thenable": "error",
74
26
  "@typescript-eslint/ban-ts-comment": "error",
75
27
  "no-array-constructor": "error",
76
- "@typescript-eslint/no-array-delete": "error",
77
- "@typescript-eslint/no-base-to-string": "error",
78
- "@typescript-eslint/no-duplicate-enum-values": "error",
79
- "@typescript-eslint/no-duplicate-type-constituents": "error",
80
28
  "@typescript-eslint/no-empty-object-type": "error",
81
29
  "@typescript-eslint/no-explicit-any": "error",
82
- "@typescript-eslint/no-extra-non-null-assertion": "error",
83
- "@typescript-eslint/no-floating-promises": "error",
84
- "@typescript-eslint/no-for-in-array": "error",
85
- "@typescript-eslint/no-implied-eval": "error",
86
- "@typescript-eslint/no-misused-new": "error",
87
30
  "@typescript-eslint/no-misused-promises": "error",
88
31
  "@typescript-eslint/no-namespace": "error",
89
- "@typescript-eslint/no-non-null-asserted-optional-chain": "error",
90
- "@typescript-eslint/no-redundant-type-constituents": "error",
91
32
  "@typescript-eslint/no-require-imports": "error",
92
- "@typescript-eslint/no-this-alias": "error",
93
33
  "@typescript-eslint/no-unnecessary-type-assertion": "error",
94
34
  "@typescript-eslint/no-unnecessary-type-constraint": "error",
95
35
  "@typescript-eslint/no-unsafe-argument": "error",
96
36
  "@typescript-eslint/no-unsafe-assignment": "error",
97
37
  "@typescript-eslint/no-unsafe-call": "error",
98
- "@typescript-eslint/no-unsafe-declaration-merging": "error",
99
38
  "@typescript-eslint/no-unsafe-enum-comparison": "error",
100
39
  "@typescript-eslint/no-unsafe-function-type": "error",
101
40
  "@typescript-eslint/no-unsafe-member-access": "error",
102
41
  "@typescript-eslint/no-unsafe-return": "error",
103
- "@typescript-eslint/no-unsafe-unary-minus": "error",
104
- "no-unused-expressions": "error",
105
- "@typescript-eslint/no-wrapper-object-types": "error",
106
42
  "@typescript-eslint/only-throw-error": "error",
107
- "@typescript-eslint/prefer-as-const": "error",
108
- "@typescript-eslint/prefer-namespace-keyword": "error",
109
43
  "@typescript-eslint/prefer-promise-reject-errors": "error",
110
44
  "@typescript-eslint/require-await": "error",
111
45
  "@typescript-eslint/restrict-plus-operands": "error",
112
- "@typescript-eslint/restrict-template-expressions": "error",
113
- "@typescript-eslint/triple-slash-reference": "error",
114
- "@typescript-eslint/unbound-method": "error",
115
46
  "@typescript-eslint/adjacent-overload-signatures": "error",
116
47
  "@typescript-eslint/array-type": "error",
117
48
  "@typescript-eslint/ban-tslint-comment": "error",
@@ -149,55 +80,6 @@
149
80
  "prefer-rest-params": "error",
150
81
  "prefer-spread": "error"
151
82
  }
152
- },
153
- {
154
- "files": ["eslint.config.js"],
155
- "rules": {
156
- "@typescript-eslint/await-thenable": "off",
157
- "@typescript-eslint/no-array-delete": "off",
158
- "@typescript-eslint/no-base-to-string": "off",
159
- "@typescript-eslint/no-confusing-void-expression": "off",
160
- "@typescript-eslint/no-deprecated": "off",
161
- "@typescript-eslint/no-duplicate-type-constituents": "off",
162
- "@typescript-eslint/no-floating-promises": "off",
163
- "@typescript-eslint/no-for-in-array": "off",
164
- "@typescript-eslint/no-implied-eval": "off",
165
- "@typescript-eslint/no-meaningless-void-operator": "off",
166
- "@typescript-eslint/no-misused-promises": "off",
167
- "@typescript-eslint/no-misused-spread": "off",
168
- "@typescript-eslint/no-mixed-enums": "off",
169
- "@typescript-eslint/no-redundant-type-constituents": "off",
170
- "@typescript-eslint/no-unnecessary-boolean-literal-compare": "off",
171
- "@typescript-eslint/no-unnecessary-template-expression": "off",
172
- "@typescript-eslint/no-unnecessary-type-arguments": "off",
173
- "@typescript-eslint/no-unnecessary-type-assertion": "off",
174
- "@typescript-eslint/no-unsafe-argument": "off",
175
- "@typescript-eslint/no-unsafe-assignment": "off",
176
- "@typescript-eslint/no-unsafe-call": "off",
177
- "@typescript-eslint/no-unsafe-enum-comparison": "off",
178
- "@typescript-eslint/no-unsafe-member-access": "off",
179
- "@typescript-eslint/no-unsafe-return": "off",
180
- "@typescript-eslint/no-unsafe-type-assertion": "off",
181
- "@typescript-eslint/no-unsafe-unary-minus": "off",
182
- "@typescript-eslint/non-nullable-type-assertion-style": "off",
183
- "@typescript-eslint/only-throw-error": "off",
184
- "@typescript-eslint/prefer-includes": "off",
185
- "@typescript-eslint/prefer-nullish-coalescing": "off",
186
- "@typescript-eslint/prefer-promise-reject-errors": "off",
187
- "@typescript-eslint/prefer-reduce-type-parameter": "off",
188
- "@typescript-eslint/prefer-return-this-type": "off",
189
- "@typescript-eslint/promise-function-async": "off",
190
- "@typescript-eslint/related-getter-setter-pairs": "off",
191
- "@typescript-eslint/require-array-sort-compare": "off",
192
- "@typescript-eslint/require-await": "off",
193
- "@typescript-eslint/restrict-plus-operands": "off",
194
- "@typescript-eslint/restrict-template-expressions": "off",
195
- "@typescript-eslint/return-await": "off",
196
- "@typescript-eslint/strict-boolean-expressions": "off",
197
- "@typescript-eslint/switch-exhaustiveness-check": "off",
198
- "@typescript-eslint/unbound-method": "off",
199
- "@typescript-eslint/use-unknown-in-catch-callback-variable": "off"
200
- }
201
83
  }
202
84
  ]
203
85
  }
@@ -1,3 +1,2 @@
1
1
  node_modules/
2
2
  .tailor-sdk/
3
- .eslintcache
@@ -7,20 +7,16 @@
7
7
  "generate": "tailor-sdk generate",
8
8
  "format": "oxfmt --write .",
9
9
  "format:check": "oxfmt --check .",
10
- "lint": "oxlint --type-aware . && eslint --cache .",
11
- "lint:fix": "oxlint --type-aware --fix . && eslint --cache --fix .",
10
+ "lint": "oxlint --type-aware .",
11
+ "lint:fix": "oxlint --type-aware --fix .",
12
12
  "typecheck": "tsc --noEmit"
13
13
  },
14
14
  "devDependencies": {
15
- "@eslint/js": "10.0.1",
16
- "@tailor-platform/sdk": "1.47.1",
15
+ "@tailor-platform/sdk": "1.48.0",
17
16
  "@types/node": "24.12.3",
18
- "eslint": "10.3.0",
19
- "eslint-plugin-oxlint": "1.61.0",
20
17
  "oxfmt": "0.46.0",
21
18
  "oxlint": "1.61.0",
22
19
  "oxlint-tsgolint": "0.22.1",
23
- "typescript": "5.9.3",
24
- "typescript-eslint": "8.59.2"
20
+ "typescript": "5.9.3"
25
21
  }
26
22
  }
@@ -2,110 +2,40 @@
2
2
  "$schema": "./node_modules/oxlint/configuration_schema.json",
3
3
  "plugins": ["typescript"],
4
4
  "categories": {
5
- "correctness": "off"
5
+ "correctness": "error"
6
6
  },
7
7
  "env": {
8
8
  "builtin": true
9
9
  },
10
10
  "ignorePatterns": [".tailor-sdk/", "tailor.d.ts"],
11
11
  "rules": {
12
- "constructor-super": "error",
13
- "for-direction": "error",
14
- "no-async-promise-executor": "error",
15
12
  "no-case-declarations": "error",
16
- "no-class-assign": "error",
17
- "no-compare-neg-zero": "error",
18
- "no-cond-assign": "error",
19
- "no-const-assign": "error",
20
- "no-constant-binary-expression": "error",
21
- "no-constant-condition": "error",
22
- "no-control-regex": "error",
23
- "no-debugger": "error",
24
- "no-delete-var": "error",
25
- "no-dupe-class-members": "error",
26
- "no-dupe-else-if": "error",
27
- "no-dupe-keys": "error",
28
- "no-duplicate-case": "error",
29
13
  "no-empty": "error",
30
- "no-empty-character-class": "error",
31
- "no-empty-pattern": "error",
32
- "no-empty-static-block": "error",
33
- "no-ex-assign": "error",
34
- "no-extra-boolean-cast": "error",
35
14
  "no-fallthrough": "error",
36
- "no-func-assign": "error",
37
- "no-global-assign": "error",
38
- "no-import-assign": "error",
39
- "no-invalid-regexp": "error",
40
- "no-irregular-whitespace": "error",
41
- "no-loss-of-precision": "error",
42
- "no-new-native-nonconstructor": "error",
43
- "no-nonoctal-decimal-escape": "error",
44
- "no-obj-calls": "error",
45
15
  "no-prototype-builtins": "error",
46
16
  "no-redeclare": "error",
47
17
  "no-regex-spaces": "error",
48
- "no-self-assign": "error",
49
- "no-setter-return": "error",
50
- "no-shadow-restricted-names": "error",
51
- "no-sparse-arrays": "error",
52
- "no-this-before-super": "error",
53
18
  "no-unexpected-multiline": "error",
54
- "no-unsafe-finally": "error",
55
- "no-unsafe-negation": "error",
56
- "no-unsafe-optional-chaining": "error",
57
- "no-unused-labels": "error",
58
- "no-unused-private-class-members": "error",
59
- "no-unused-vars": "error",
60
- "no-useless-backreference": "error",
61
- "no-useless-catch": "error",
62
- "no-useless-escape": "error",
63
- "no-with": "error",
64
- "require-yield": "error",
65
- "use-isnan": "error",
66
- "valid-typeof": "error",
67
- "@typescript-eslint/await-thenable": "error",
68
19
  "@typescript-eslint/ban-ts-comment": "error",
69
20
  "no-array-constructor": "error",
70
- "@typescript-eslint/no-array-delete": "error",
71
- "@typescript-eslint/no-base-to-string": "error",
72
- "@typescript-eslint/no-duplicate-enum-values": "error",
73
- "@typescript-eslint/no-duplicate-type-constituents": "error",
74
21
  "@typescript-eslint/no-empty-object-type": "error",
75
22
  "@typescript-eslint/no-explicit-any": "error",
76
- "@typescript-eslint/no-extra-non-null-assertion": "error",
77
- "@typescript-eslint/no-floating-promises": "error",
78
- "@typescript-eslint/no-for-in-array": "error",
79
- "@typescript-eslint/no-implied-eval": "error",
80
- "@typescript-eslint/no-misused-new": "error",
81
23
  "@typescript-eslint/no-misused-promises": "error",
82
24
  "@typescript-eslint/no-namespace": "error",
83
- "@typescript-eslint/no-non-null-asserted-optional-chain": "error",
84
- "@typescript-eslint/no-redundant-type-constituents": "error",
85
25
  "@typescript-eslint/no-require-imports": "error",
86
- "@typescript-eslint/no-this-alias": "error",
87
26
  "@typescript-eslint/no-unnecessary-type-assertion": "error",
88
27
  "@typescript-eslint/no-unnecessary-type-constraint": "error",
89
28
  "@typescript-eslint/no-unsafe-argument": "error",
90
29
  "@typescript-eslint/no-unsafe-assignment": "error",
91
30
  "@typescript-eslint/no-unsafe-call": "error",
92
- "@typescript-eslint/no-unsafe-declaration-merging": "error",
93
31
  "@typescript-eslint/no-unsafe-enum-comparison": "error",
94
32
  "@typescript-eslint/no-unsafe-function-type": "error",
95
33
  "@typescript-eslint/no-unsafe-member-access": "error",
96
34
  "@typescript-eslint/no-unsafe-return": "error",
97
- "@typescript-eslint/no-unsafe-unary-minus": "error",
98
- "no-unused-expressions": "error",
99
- "@typescript-eslint/no-wrapper-object-types": "error",
100
35
  "@typescript-eslint/only-throw-error": "error",
101
- "@typescript-eslint/prefer-as-const": "error",
102
- "@typescript-eslint/prefer-namespace-keyword": "error",
103
36
  "@typescript-eslint/prefer-promise-reject-errors": "error",
104
37
  "@typescript-eslint/require-await": "error",
105
38
  "@typescript-eslint/restrict-plus-operands": "error",
106
- "@typescript-eslint/restrict-template-expressions": "error",
107
- "@typescript-eslint/triple-slash-reference": "error",
108
- "@typescript-eslint/unbound-method": "error",
109
39
  "@typescript-eslint/adjacent-overload-signatures": "error",
110
40
  "@typescript-eslint/array-type": "error",
111
41
  "@typescript-eslint/ban-tslint-comment": "error",
@@ -143,55 +73,6 @@
143
73
  "prefer-rest-params": "error",
144
74
  "prefer-spread": "error"
145
75
  }
146
- },
147
- {
148
- "files": ["eslint.config.js"],
149
- "rules": {
150
- "@typescript-eslint/await-thenable": "off",
151
- "@typescript-eslint/no-array-delete": "off",
152
- "@typescript-eslint/no-base-to-string": "off",
153
- "@typescript-eslint/no-confusing-void-expression": "off",
154
- "@typescript-eslint/no-deprecated": "off",
155
- "@typescript-eslint/no-duplicate-type-constituents": "off",
156
- "@typescript-eslint/no-floating-promises": "off",
157
- "@typescript-eslint/no-for-in-array": "off",
158
- "@typescript-eslint/no-implied-eval": "off",
159
- "@typescript-eslint/no-meaningless-void-operator": "off",
160
- "@typescript-eslint/no-misused-promises": "off",
161
- "@typescript-eslint/no-misused-spread": "off",
162
- "@typescript-eslint/no-mixed-enums": "off",
163
- "@typescript-eslint/no-redundant-type-constituents": "off",
164
- "@typescript-eslint/no-unnecessary-boolean-literal-compare": "off",
165
- "@typescript-eslint/no-unnecessary-template-expression": "off",
166
- "@typescript-eslint/no-unnecessary-type-arguments": "off",
167
- "@typescript-eslint/no-unnecessary-type-assertion": "off",
168
- "@typescript-eslint/no-unsafe-argument": "off",
169
- "@typescript-eslint/no-unsafe-assignment": "off",
170
- "@typescript-eslint/no-unsafe-call": "off",
171
- "@typescript-eslint/no-unsafe-enum-comparison": "off",
172
- "@typescript-eslint/no-unsafe-member-access": "off",
173
- "@typescript-eslint/no-unsafe-return": "off",
174
- "@typescript-eslint/no-unsafe-type-assertion": "off",
175
- "@typescript-eslint/no-unsafe-unary-minus": "off",
176
- "@typescript-eslint/non-nullable-type-assertion-style": "off",
177
- "@typescript-eslint/only-throw-error": "off",
178
- "@typescript-eslint/prefer-includes": "off",
179
- "@typescript-eslint/prefer-nullish-coalescing": "off",
180
- "@typescript-eslint/prefer-promise-reject-errors": "off",
181
- "@typescript-eslint/prefer-reduce-type-parameter": "off",
182
- "@typescript-eslint/prefer-return-this-type": "off",
183
- "@typescript-eslint/promise-function-async": "off",
184
- "@typescript-eslint/related-getter-setter-pairs": "off",
185
- "@typescript-eslint/require-array-sort-compare": "off",
186
- "@typescript-eslint/require-await": "off",
187
- "@typescript-eslint/restrict-plus-operands": "off",
188
- "@typescript-eslint/restrict-template-expressions": "off",
189
- "@typescript-eslint/return-await": "off",
190
- "@typescript-eslint/strict-boolean-expressions": "off",
191
- "@typescript-eslint/switch-exhaustiveness-check": "off",
192
- "@typescript-eslint/unbound-method": "off",
193
- "@typescript-eslint/use-unknown-in-catch-callback-variable": "off"
194
- }
195
76
  }
196
77
  ]
197
78
  }
@@ -1,3 +1,2 @@
1
1
  node_modules/
2
2
  .tailor-sdk/
3
- .eslintcache
@@ -8,20 +8,16 @@
8
8
  "deploy:admin": "tailor-sdk deploy -c apps/admin/tailor.config.ts",
9
9
  "format": "oxfmt --write .",
10
10
  "format:check": "oxfmt --check .",
11
- "lint": "oxlint --type-aware . && eslint --cache .",
12
- "lint:fix": "oxlint --type-aware --fix . && eslint --cache --fix .",
11
+ "lint": "oxlint --type-aware .",
12
+ "lint:fix": "oxlint --type-aware --fix .",
13
13
  "typecheck": "tsc --noEmit"
14
14
  },
15
15
  "devDependencies": {
16
- "@eslint/js": "10.0.1",
17
- "@tailor-platform/sdk": "1.47.1",
16
+ "@tailor-platform/sdk": "1.48.0",
18
17
  "@types/node": "24.12.3",
19
- "eslint": "10.3.0",
20
- "eslint-plugin-oxlint": "1.61.0",
21
18
  "oxfmt": "0.46.0",
22
19
  "oxlint": "1.61.0",
23
20
  "oxlint-tsgolint": "0.22.1",
24
- "typescript": "5.9.3",
25
- "typescript-eslint": "8.59.2"
21
+ "typescript": "5.9.3"
26
22
  }
27
23
  }
@@ -2,110 +2,40 @@
2
2
  "$schema": "./node_modules/oxlint/configuration_schema.json",
3
3
  "plugins": ["typescript"],
4
4
  "categories": {
5
- "correctness": "off"
5
+ "correctness": "error"
6
6
  },
7
7
  "env": {
8
8
  "builtin": true
9
9
  },
10
10
  "ignorePatterns": [".tailor-sdk/", "src/generated/", "tailor.d.ts"],
11
11
  "rules": {
12
- "constructor-super": "error",
13
- "for-direction": "error",
14
- "no-async-promise-executor": "error",
15
12
  "no-case-declarations": "error",
16
- "no-class-assign": "error",
17
- "no-compare-neg-zero": "error",
18
- "no-cond-assign": "error",
19
- "no-const-assign": "error",
20
- "no-constant-binary-expression": "error",
21
- "no-constant-condition": "error",
22
- "no-control-regex": "error",
23
- "no-debugger": "error",
24
- "no-delete-var": "error",
25
- "no-dupe-class-members": "error",
26
- "no-dupe-else-if": "error",
27
- "no-dupe-keys": "error",
28
- "no-duplicate-case": "error",
29
13
  "no-empty": "error",
30
- "no-empty-character-class": "error",
31
- "no-empty-pattern": "error",
32
- "no-empty-static-block": "error",
33
- "no-ex-assign": "error",
34
- "no-extra-boolean-cast": "error",
35
14
  "no-fallthrough": "error",
36
- "no-func-assign": "error",
37
- "no-global-assign": "error",
38
- "no-import-assign": "error",
39
- "no-invalid-regexp": "error",
40
- "no-irregular-whitespace": "error",
41
- "no-loss-of-precision": "error",
42
- "no-new-native-nonconstructor": "error",
43
- "no-nonoctal-decimal-escape": "error",
44
- "no-obj-calls": "error",
45
15
  "no-prototype-builtins": "error",
46
16
  "no-redeclare": "error",
47
17
  "no-regex-spaces": "error",
48
- "no-self-assign": "error",
49
- "no-setter-return": "error",
50
- "no-shadow-restricted-names": "error",
51
- "no-sparse-arrays": "error",
52
- "no-this-before-super": "error",
53
18
  "no-unexpected-multiline": "error",
54
- "no-unsafe-finally": "error",
55
- "no-unsafe-negation": "error",
56
- "no-unsafe-optional-chaining": "error",
57
- "no-unused-labels": "error",
58
- "no-unused-private-class-members": "error",
59
- "no-unused-vars": "error",
60
- "no-useless-backreference": "error",
61
- "no-useless-catch": "error",
62
- "no-useless-escape": "error",
63
- "no-with": "error",
64
- "require-yield": "error",
65
- "use-isnan": "error",
66
- "valid-typeof": "error",
67
- "@typescript-eslint/await-thenable": "error",
68
19
  "@typescript-eslint/ban-ts-comment": "error",
69
20
  "no-array-constructor": "error",
70
- "@typescript-eslint/no-array-delete": "error",
71
- "@typescript-eslint/no-base-to-string": "error",
72
- "@typescript-eslint/no-duplicate-enum-values": "error",
73
- "@typescript-eslint/no-duplicate-type-constituents": "error",
74
21
  "@typescript-eslint/no-empty-object-type": "error",
75
22
  "@typescript-eslint/no-explicit-any": "error",
76
- "@typescript-eslint/no-extra-non-null-assertion": "error",
77
- "@typescript-eslint/no-floating-promises": "error",
78
- "@typescript-eslint/no-for-in-array": "error",
79
- "@typescript-eslint/no-implied-eval": "error",
80
- "@typescript-eslint/no-misused-new": "error",
81
23
  "@typescript-eslint/no-misused-promises": "error",
82
24
  "@typescript-eslint/no-namespace": "error",
83
- "@typescript-eslint/no-non-null-asserted-optional-chain": "error",
84
- "@typescript-eslint/no-redundant-type-constituents": "error",
85
25
  "@typescript-eslint/no-require-imports": "error",
86
- "@typescript-eslint/no-this-alias": "error",
87
26
  "@typescript-eslint/no-unnecessary-type-assertion": "error",
88
27
  "@typescript-eslint/no-unnecessary-type-constraint": "error",
89
28
  "@typescript-eslint/no-unsafe-argument": "error",
90
29
  "@typescript-eslint/no-unsafe-assignment": "error",
91
30
  "@typescript-eslint/no-unsafe-call": "error",
92
- "@typescript-eslint/no-unsafe-declaration-merging": "error",
93
31
  "@typescript-eslint/no-unsafe-enum-comparison": "error",
94
32
  "@typescript-eslint/no-unsafe-function-type": "error",
95
33
  "@typescript-eslint/no-unsafe-member-access": "error",
96
34
  "@typescript-eslint/no-unsafe-return": "error",
97
- "@typescript-eslint/no-unsafe-unary-minus": "error",
98
- "no-unused-expressions": "error",
99
- "@typescript-eslint/no-wrapper-object-types": "error",
100
35
  "@typescript-eslint/only-throw-error": "error",
101
- "@typescript-eslint/prefer-as-const": "error",
102
- "@typescript-eslint/prefer-namespace-keyword": "error",
103
36
  "@typescript-eslint/prefer-promise-reject-errors": "error",
104
37
  "@typescript-eslint/require-await": "error",
105
38
  "@typescript-eslint/restrict-plus-operands": "error",
106
- "@typescript-eslint/restrict-template-expressions": "error",
107
- "@typescript-eslint/triple-slash-reference": "error",
108
- "@typescript-eslint/unbound-method": "error",
109
39
  "@typescript-eslint/adjacent-overload-signatures": "error",
110
40
  "@typescript-eslint/array-type": "error",
111
41
  "@typescript-eslint/ban-tslint-comment": "error",
@@ -143,55 +73,6 @@
143
73
  "prefer-rest-params": "error",
144
74
  "prefer-spread": "error"
145
75
  }
146
- },
147
- {
148
- "files": ["eslint.config.js"],
149
- "rules": {
150
- "@typescript-eslint/await-thenable": "off",
151
- "@typescript-eslint/no-array-delete": "off",
152
- "@typescript-eslint/no-base-to-string": "off",
153
- "@typescript-eslint/no-confusing-void-expression": "off",
154
- "@typescript-eslint/no-deprecated": "off",
155
- "@typescript-eslint/no-duplicate-type-constituents": "off",
156
- "@typescript-eslint/no-floating-promises": "off",
157
- "@typescript-eslint/no-for-in-array": "off",
158
- "@typescript-eslint/no-implied-eval": "off",
159
- "@typescript-eslint/no-meaningless-void-operator": "off",
160
- "@typescript-eslint/no-misused-promises": "off",
161
- "@typescript-eslint/no-misused-spread": "off",
162
- "@typescript-eslint/no-mixed-enums": "off",
163
- "@typescript-eslint/no-redundant-type-constituents": "off",
164
- "@typescript-eslint/no-unnecessary-boolean-literal-compare": "off",
165
- "@typescript-eslint/no-unnecessary-template-expression": "off",
166
- "@typescript-eslint/no-unnecessary-type-arguments": "off",
167
- "@typescript-eslint/no-unnecessary-type-assertion": "off",
168
- "@typescript-eslint/no-unsafe-argument": "off",
169
- "@typescript-eslint/no-unsafe-assignment": "off",
170
- "@typescript-eslint/no-unsafe-call": "off",
171
- "@typescript-eslint/no-unsafe-enum-comparison": "off",
172
- "@typescript-eslint/no-unsafe-member-access": "off",
173
- "@typescript-eslint/no-unsafe-return": "off",
174
- "@typescript-eslint/no-unsafe-type-assertion": "off",
175
- "@typescript-eslint/no-unsafe-unary-minus": "off",
176
- "@typescript-eslint/non-nullable-type-assertion-style": "off",
177
- "@typescript-eslint/only-throw-error": "off",
178
- "@typescript-eslint/prefer-includes": "off",
179
- "@typescript-eslint/prefer-nullish-coalescing": "off",
180
- "@typescript-eslint/prefer-promise-reject-errors": "off",
181
- "@typescript-eslint/prefer-reduce-type-parameter": "off",
182
- "@typescript-eslint/prefer-return-this-type": "off",
183
- "@typescript-eslint/promise-function-async": "off",
184
- "@typescript-eslint/related-getter-setter-pairs": "off",
185
- "@typescript-eslint/require-array-sort-compare": "off",
186
- "@typescript-eslint/require-await": "off",
187
- "@typescript-eslint/restrict-plus-operands": "off",
188
- "@typescript-eslint/restrict-template-expressions": "off",
189
- "@typescript-eslint/return-await": "off",
190
- "@typescript-eslint/strict-boolean-expressions": "off",
191
- "@typescript-eslint/switch-exhaustiveness-check": "off",
192
- "@typescript-eslint/unbound-method": "off",
193
- "@typescript-eslint/use-unknown-in-catch-callback-variable": "off"
194
- }
195
76
  }
196
77
  ]
197
78
  }
@@ -1,3 +1,2 @@
1
1
  node_modules/
2
2
  .tailor-sdk/
3
- .eslintcache
@@ -9,21 +9,17 @@
9
9
  "test:unit": "vitest --project unit",
10
10
  "format": "oxfmt --write .",
11
11
  "format:check": "oxfmt --check .",
12
- "lint": "oxlint --type-aware . && eslint --cache .",
13
- "lint:fix": "oxlint --type-aware --fix . && eslint --cache --fix .",
12
+ "lint": "oxlint --type-aware .",
13
+ "lint:fix": "oxlint --type-aware --fix .",
14
14
  "typecheck": "tsc --noEmit"
15
15
  },
16
16
  "devDependencies": {
17
- "@eslint/js": "10.0.1",
18
- "@tailor-platform/sdk": "1.47.1",
17
+ "@tailor-platform/sdk": "1.48.0",
19
18
  "@types/node": "24.12.3",
20
- "eslint": "10.3.0",
21
- "eslint-plugin-oxlint": "1.61.0",
22
19
  "oxfmt": "0.46.0",
23
20
  "oxlint": "1.61.0",
24
21
  "oxlint-tsgolint": "0.22.1",
25
22
  "typescript": "5.9.3",
26
- "typescript-eslint": "8.59.2",
27
23
  "vitest": "4.1.5"
28
24
  }
29
25
  }