@cluerise/tools 5.1.1 → 5.1.2
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.
|
@@ -166,6 +166,21 @@ export default defineConfig([
|
|
|
166
166
|
'import/no-default-export': 'off'
|
|
167
167
|
}
|
|
168
168
|
},
|
|
169
|
+
{
|
|
170
|
+
name: 'cluerise: eslint/import/rules/setup.js,cjs',
|
|
171
|
+
files: ['**/*.setup.{js,cjs}'],
|
|
172
|
+
rules: {
|
|
173
|
+
'@typescript-eslint/no-require-imports': 'off',
|
|
174
|
+
'import/no-commonjs': 'off'
|
|
175
|
+
}
|
|
176
|
+
},
|
|
177
|
+
{
|
|
178
|
+
name: 'cluerise: eslint/import/rules/setup.js,cjs,ts',
|
|
179
|
+
files: ['**/*.setup.{js,cjs,ts}'],
|
|
180
|
+
rules: {
|
|
181
|
+
'import/no-default-export': 'off'
|
|
182
|
+
}
|
|
183
|
+
},
|
|
169
184
|
{
|
|
170
185
|
name: 'cluerise: eslint/import/rules/routes',
|
|
171
186
|
files: ['**/*-route.tsx'],
|
|
@@ -221,6 +236,7 @@ export default defineConfig([
|
|
|
221
236
|
'unicorn/prevent-abbreviations': [
|
|
222
237
|
'error',
|
|
223
238
|
{
|
|
239
|
+
ignore: [/.*e2e.*/],
|
|
224
240
|
replacements: {
|
|
225
241
|
acc: false,
|
|
226
242
|
arg: false,
|
|
@@ -228,7 +244,6 @@ export default defineConfig([
|
|
|
228
244
|
dist: false,
|
|
229
245
|
env: false,
|
|
230
246
|
envs: false,
|
|
231
|
-
e2e: false,
|
|
232
247
|
param: false,
|
|
233
248
|
params: false,
|
|
234
249
|
prev: false,
|