@autoafleveren/ui 0.12.0 → 0.12.1
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.
- package/dist/config/eslint.cjs +0 -11
- package/package.json +1 -1
package/dist/config/eslint.cjs
CHANGED
|
@@ -1,5 +1,4 @@
|
|
|
1
1
|
const typescriptOverride = require('@programic/eslint-plugin/lib/configs/typescript-override');
|
|
2
|
-
const composableNames = require('../../composable-names.json');
|
|
3
2
|
|
|
4
3
|
const tsConfigPath = 'tsconfig.vitest.json';
|
|
5
4
|
const tailwindConfigPath = 'tailwind.config.cjs';
|
|
@@ -184,16 +183,6 @@ module.exports = {
|
|
|
184
183
|
allTestPattern: '.*\\.(test|spec)\\.[tj]sx?$',
|
|
185
184
|
}],
|
|
186
185
|
'@typescript-eslint/no-floating-promises': 'off',
|
|
187
|
-
'@typescript-eslint/explicit-function-return-type': ['error', {
|
|
188
|
-
allowedNames: composableNames,
|
|
189
|
-
}],
|
|
190
|
-
'@typescript-eslint/explicit-module-boundary-types': ['error', {
|
|
191
|
-
allowDirectConstAssertionInArrowFunctions: true,
|
|
192
|
-
allowArgumentsExplicitlyTypedAsAny: false,
|
|
193
|
-
allowTypedFunctionExpressions: false,
|
|
194
|
-
allowHigherOrderFunctions: false,
|
|
195
|
-
allowedNames: composableNames,
|
|
196
|
-
}],
|
|
197
186
|
'vue/no-v-text-v-html-on-component': 'off',
|
|
198
187
|
'vue/no-ref-object-destructure': 'off',
|
|
199
188
|
'import/no-cycle': 'off',
|