mirror of
https://github.com/valitydev/control-center.git
synced 2024-11-06 10:35:18 +00:00
11 lines
257 B
JavaScript
11 lines
257 B
JavaScript
|
'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',
|
||
|
},
|
||
|
};
|