2022-08-24 09:26:38 +00:00
|
|
|
module.exports = {
|
2024-05-19 11:41:35 +00:00
|
|
|
extends: ['plugin:json-schema-validator/recommended'],
|
2022-08-24 09:26:38 +00:00
|
|
|
plugins: [],
|
2024-05-19 11:41:35 +00:00
|
|
|
parserOptions: {
|
|
|
|
ecmaVersion: 'latest',
|
|
|
|
sourceType: 'module',
|
|
|
|
project: './tsconfig.json',
|
|
|
|
tsconfigRootDir: __dirname,
|
|
|
|
},
|
2022-08-24 09:26:38 +00:00
|
|
|
rules: {
|
2024-05-19 11:41:35 +00:00
|
|
|
'json-schema-validator/no-invalid': 'error',
|
2022-08-24 09:26:38 +00:00
|
|
|
},
|
|
|
|
};
|