Skip to content

Commit cd0ae45

Browse files
Remove references to skip* config options
1 parent 46d8ce1 commit cd0ae45

File tree

2 files changed

+2
-14
lines changed

2 files changed

+2
-14
lines changed

README.md

Lines changed: 2 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -624,14 +624,7 @@ module.exports = function (environment) {
624624
keyMap: "data-key-map",
625625
normalizer: "data-normalizer",
626626
validator: "data-validator",
627-
},
628-
skipStoreService: false,
629-
skipBucketService: false,
630-
skipCoordinatorService: false,
631-
skipSchemaService: false,
632-
skipKeyMapService: false,
633-
skipNormalizerService: false,
634-
skipValidatorService: false,
627+
}
635628
},
636629
};
637630

@@ -680,9 +673,7 @@ service that is injected into all sources.
680673
Validators are useful to ensure that your data matches its type expectations and
681674
that operations and query expressions are well formed. Of course, they also add
682675
some extra code and processing, which you may want to eliminate (or perhaps only
683-
for production environments). You can disable validators across all sources by
684-
setting Orbit's `skipValidatorService` environment flag to `false` in
685-
`config/environment`, as described above.
676+
for production environments).
686677

687678
If you want to use validators but extend them to include custom validators, you
688679
can override the standard validator service by generating your own

tests/support/store.ts

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,6 @@ import StoreFactory from '#src/-private/factories/store-factory.ts';
1212
import type { Dict } from '@orbit/utils';
1313
import ValidatorFactory from '#src/services/data-validator.ts';
1414

15-
// const dataModels = import.meta.glob('../test-app/data-models/*.{js,ts}', {
16-
// eager: true,
17-
// });
1815
const dataSources = import.meta.glob('../test-app/data-sources/*.{js,ts}', {
1916
eager: true,
2017
});

0 commit comments

Comments
 (0)