1
0
mirror of https://github.com/laurent22/joplin.git synced 2025-06-15 23:00:36 +02:00

Revert "Tools: Added eslint rule arrow-parens"

This reverts commit 0b6f5581f0.

It causes too many conflicts with pull requests.
This commit is contained in:
Laurent Cozic
2020-05-21 09:14:33 +01:00
parent b83eee751f
commit a96734f5be
166 changed files with 444 additions and 445 deletions

View File

@ -114,7 +114,7 @@ shim.fetchRequestCanBeRetried = function(error) {
shim.fetchMaxRetry_ = 5;
shim.fetchMaxRetrySet = (v) => {
shim.fetchMaxRetrySet = v => {
const previous = shim.fetchMaxRetry_;
shim.fetchMaxRetry_ = v;
return previous;
@ -153,7 +153,7 @@ shim.fsDriver = () => {
};
shim.FileApiDriverLocal = null;
shim.readLocalFileBase64 = (path) => {
shim.readLocalFileBase64 = path => {
throw new Error('Not implemented');
};
@ -163,7 +163,7 @@ shim.uploadBlob = () => {
shim.sjclModule = null;
shim.randomBytes = async (count) => {
shim.randomBytes = async count => {
throw new Error('Not implemented');
};
@ -204,7 +204,7 @@ shim.appVersion = () => {
throw new Error('Not implemented');
};
shim.injectedJs = (name) => '';
shim.injectedJs = name => '';
let isTestingEnv_ = false;