control-center/tools/eslint-config/jasmine.js

11 lines
257 B
JavaScript
Raw Permalink Normal View History

2022-01-11 17:07:27 +00:00
'use strict';
module.exports = {
plugins: ['jasmine', '@typescript-eslint'],
extends: ['plugin:jasmine/recommended'],
rules: {
'jasmine/new-line-before-expect': 'off',
'@typescript-eslint/no-floating-promises': 'off',
},
};