12 lines
230 B
JavaScript
12 lines
230 B
JavaScript
import cypress from 'eslint-plugin-cypress/flat';
|
|
import baseConfig from '../../eslint.config.mjs';
|
|
|
|
export default [
|
|
cypress.configs['recommended'],
|
|
...baseConfig,
|
|
{
|
|
// Override or add rules here
|
|
rules: {},
|
|
},
|
|
];
|