Remove module function wrapper and add matching configurations for dprint and eslint (#7596)

* remove blks first try

* dprint.json seems to be OK, some forgotten functions

* add some more space-after-keyword settings

* server remove blks

* add **/files to dprint exclude

* dprint.js fixes a typo

* add boot.js and bootprefix.js to dprint exclude

* dprint change dprint.json

* add dprint fmt as script

* remove jslint comments

* fix whitespace

* fix whitespace

* remove function-wrapper from geospatial plugin

* fix whitespace

* add function wrapper to dyannotate-startup

* remove dpring.json
This commit is contained in:
Mario Pietsch
2025-03-21 17:22:57 +00:00
committed by GitHub
parent 819d84ecab
commit 8aa558eb2c
511 changed files with 385 additions and 2505 deletions
@@ -6,10 +6,7 @@ module-type: authenticator
Authenticator for WWW basic authentication
\*/
(function(){
/*jslint node: true, browser: true */
/*global $tw: false */
"use strict";
if($tw.node) {
@@ -90,5 +87,3 @@ BasicAuthenticator.prototype.authenticateRequest = function(request,response,sta
};
exports.AuthenticatorClass = BasicAuthenticator;
})();
@@ -6,10 +6,7 @@ module-type: authenticator
Authenticator for trusted header authentication
\*/
(function(){
/*jslint node: true, browser: true */
/*global $tw: false */
"use strict";
function HeaderAuthenticator(server) {
@@ -46,4 +43,3 @@ HeaderAuthenticator.prototype.authenticateRequest = function(request,response,st
exports.AuthenticatorClass = HeaderAuthenticator;
})();
@@ -6,10 +6,6 @@ module-type: route
DELETE /recipes/default/tiddlers/:title
\*/
(function() {
/*jslint node: true, browser: true */
/*global $tw: false */
"use strict";
exports.method = "DELETE";
@@ -24,5 +20,3 @@ exports.handler = function(request,response,state) {
});
response.end();
};
}());
@@ -6,10 +6,6 @@ module-type: route
GET /favicon.ico
\*/
(function() {
/*jslint node: true, browser: true */
/*global $tw: false */
"use strict";
exports.method = "GET";
@@ -20,5 +16,3 @@ exports.handler = function(request,response,state) {
var buffer = state.wiki.getTiddlerText("$:/favicon.ico","");
state.sendResponse(200,{"Content-Type": "image/x-icon"},buffer,"base64");
};
}());
-6
View File
@@ -6,10 +6,6 @@ module-type: route
GET /files/:filepath
\*/
(function() {
/*jslint node: true, browser: true */
/*global $tw: false */
"use strict";
exports.method = "GET";
@@ -44,5 +40,3 @@ exports.handler = function(request,response,state) {
state.sendResponse(404,{"Content-Type": "text/plain"},"File '" + suppliedFilename + "' not found");
}
};
}());
-6
View File
@@ -6,10 +6,6 @@ module-type: route
GET /
\*/
(function() {
/*jslint node: true, browser: true */
/*global $tw: false */
"use strict";
exports.method = "GET";
@@ -23,5 +19,3 @@ exports.handler = function(request,response,state) {
};
state.sendResponse(200,responseHeaders,text);
};
}());
@@ -6,10 +6,6 @@ module-type: route
GET /login-basic -- force a Basic Authentication challenge
\*/
(function() {
/*jslint node: true, browser: true */
/*global $tw: false */
"use strict";
exports.method = "GET";
@@ -32,5 +28,3 @@ exports.handler = function(request,response,state) {
response.end();
}
};
}());
-6
View File
@@ -6,10 +6,6 @@ module-type: route
GET /status
\*/
(function() {
/*jslint node: true, browser: true */
/*global $tw: false */
"use strict";
exports.method = "GET";
@@ -29,5 +25,3 @@ exports.handler = function(request,response,state) {
});
state.sendResponse(200,{"Content-Type": "application/json"},text,"utf8");
};
}());
@@ -6,10 +6,6 @@ module-type: route
GET /:title
\*/
(function() {
/*jslint node: true, browser: true */
/*global $tw: false */
"use strict";
exports.method = "GET";
@@ -40,5 +36,3 @@ exports.handler = function(request,response,state) {
response.end();
}
};
}());
@@ -6,10 +6,6 @@ module-type: route
GET /recipes/default/tiddlers/:title
\*/
(function() {
/*jslint node: true, browser: true */
/*global $tw: false */
"use strict";
exports.method = "GET";
@@ -42,5 +38,3 @@ exports.handler = function(request,response,state) {
response.end();
}
};
}());
@@ -6,10 +6,6 @@ module-type: route
GET /recipes/default/tiddlers.json?filter=<filter>
\*/
(function() {
/*jslint node: true, browser: true */
/*global $tw: false */
"use strict";
var DEFAULT_FILTER = "[all[tiddlers]!is[system]sort[title]]";
@@ -46,5 +42,3 @@ exports.handler = function(request,response,state) {
var text = JSON.stringify(tiddlers);
state.sendResponse(200,{"Content-Type": "application/json"},text,"utf8");
};
}());
@@ -6,10 +6,6 @@ module-type: route
PUT /recipes/default/tiddlers/:title
\*/
(function() {
/*jslint node: true, browser: true */
/*global $tw: false */
"use strict";
exports.method = "PUT";
@@ -48,5 +44,3 @@ exports.handler = function(request,response,state) {
});
response.end();
};
}());
-5
View File
@@ -6,10 +6,7 @@ module-type: library
Serve tiddlers over http
\*/
(function(){
/*jslint node: true, browser: true */
/*global $tw: false */
"use strict";
if($tw.node) {
@@ -374,5 +371,3 @@ Server.prototype.listen = function(port,host,prefix) {
};
exports.Server = Server;
})();