13 lines
368 B
JavaScript
13 lines
368 B
JavaScript
module.exports = {
|
|
rules: {
|
|
'@bitrix24/bitrix24-rules/no-native-dom-methods': 'off',
|
|
'sonarjs/cognitive-complexity': 'off',
|
|
'max-lines-per-function': 'off',
|
|
'unicorn/prefer-string-replace-all': 'off',
|
|
'unicorn/newline-per-chained-call': 'off',
|
|
'newline-per-chained-call': 'off',
|
|
'no-implicit-coercion': 'off',
|
|
'unicorn/template-indent': 'off',
|
|
},
|
|
};
|