You've already forked joplin
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:
@ -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;
|
||||
|
||||
|
Reference in New Issue
Block a user