app-store/.eslintrc.js
Nicolas Meienberger 9707542b95
Feat/docker compose json (#3503)
* feat(2fauth): a docker-compose.json config

* ci(app-version): increase image automatically in docker-compose.json
2024-05-19 13:41:35 +02:00

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',
},
};