We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c2bbf06 commit 0b1b974Copy full SHA for 0b1b974
1 file changed
src/question/config/validator/index.ts
@@ -1,7 +1,7 @@
1
-import * as Ajv from "ajv";
+import * as Ajv from 'ajv';
2
3
-import { RawConfig } from "../index";
4
-import schema from "./config-schema";
+import { RawConfig } from '../index';
+import schema from './config-schema';
5
6
const ajv = new Ajv();
7
@@ -34,5 +34,5 @@ export function validateConfig(config: RawConfig): ValidationResult {
34
* @param models
35
*/
36
export function validateModels(models: any[]): any[] {
37
- throw new Error("todo..");
+ throw new Error('todo..');
38
}
0 commit comments