More eslint tweaks

This commit is contained in:
David Carley
2022-09-07 17:51:16 +00:00
parent 051e712b53
commit f91dc1d756
26 changed files with 312 additions and 301 deletions

View File

@@ -1,11 +1,11 @@
{
pretty: true,
filters: {
browserify: function (text, options) {
return require('child_process').execSync(
`./node_modules/.bin/browserify - --basedir src/js`,
{input: text}
).toString()
module.exports = {
pretty: true,
filters: {
browserify: function(text, _options) {
return require("child_process").execSync(
`./node_modules/.bin/browserify - --basedir src/js`,
{ input: text }
).toString();
}
}
}
}
};