chore: lint

This commit is contained in:
coderaiser 2024-04-17 00:04:02 +03:00
parent 6fb2102099
commit 2428853613
4 changed files with 14 additions and 8 deletions

View file

@ -30,3 +30,4 @@ webpack.config.js
*.cdr
*.eps
*.config.*

View file

@ -4,7 +4,8 @@
"exclude": [
"**/*.spec.js",
"**/fixture",
"**/*.*.js"
"**/*.*.js",
"**/*.config.*"
],
"branches": 100,
"lines": 100,

View file

@ -23,9 +23,11 @@ test('cloudcmd: client: polyfill: scrollIntoViewIfNeaded', (t) => {
mockRequire.stop('scroll-into-view-if-neaded');
global.DOM = DOM;
const args = [el, {
block: 'nearest',
}];
const args = [
el, {
block: 'nearest',
},
];
stopAll();

View file

@ -242,8 +242,10 @@ function cryptoPass(manage, json) {
const password = criton(json.password, algo);
return [manage, {
...json,
password,
}];
return [
manage, {
...json,
password,
},
];
}