manual lint

This commit is contained in:
Henry Jameson 2026-01-06 17:32:22 +02:00
commit 1c53ac84cc
36 changed files with 204 additions and 107 deletions

View file

@ -12,7 +12,11 @@ const applyAfterStore = (store, afterStore) => {
return store
}
const getDefaultOpts = ({ afterStore = () => {} } = {}) => ({
const getDefaultOpts = ({
afterStore = () => {
/* no-op */
},
} = {}) => ({
global: {
plugins: [
applyAfterStore(makeMockStore(), afterStore),