33 lines
664 B
JavaScript
33 lines
664 B
JavaScript
import eslintConfigWpj from '@kupshop/eslint-config-wpj';
|
|
|
|
export default [
|
|
{
|
|
ignores: [
|
|
'**/build',
|
|
'**/*.config.ts',
|
|
'vendor',
|
|
'**/*.d.ts',
|
|
'**/wpj.blocekRuntime.ts',
|
|
'**/WpjComponentLoader.ts',
|
|
'**/WpjConfig.ts',
|
|
'**/v8feed.transform.js',
|
|
'**/vim_test.js',
|
|
'**/wpj.*.ts',
|
|
]
|
|
},
|
|
...eslintConfigWpj,
|
|
{
|
|
rules: {
|
|
"@typescript-eslint/no-explicit-any": "off" // TODO: Remove and fix typing
|
|
}
|
|
},
|
|
{
|
|
files: [
|
|
'**/views/**/*.ts',
|
|
],
|
|
rules: {
|
|
'import/no-default-export': ['off'],
|
|
}
|
|
}
|
|
];
|