9707542b95
* feat(2fauth): a docker-compose.json config * ci(app-version): increase image automatically in docker-compose.json
14 lines
300 B
JavaScript
14 lines
300 B
JavaScript
module.exports = {
|
|
extends: ['plugin:json-schema-validator/recommended'],
|
|
plugins: [],
|
|
parserOptions: {
|
|
ecmaVersion: 'latest',
|
|
sourceType: 'module',
|
|
project: './tsconfig.json',
|
|
tsconfigRootDir: __dirname,
|
|
},
|
|
rules: {
|
|
'json-schema-validator/no-invalid': 'error',
|
|
},
|
|
};
|