ASHWGA, might as well make it a module.

Included is a minimal linter infrastructure
and a server script because [epic rant removed]
This commit is contained in:
2023-12-17 03:52:43 +00:00
parent ff377fb709
commit 526b51e158
5 changed files with 6285 additions and 0 deletions

32
package.json Normal file
View File

@@ -0,0 +1,32 @@
{
"name": "mbchc",
"version": "0.0.9",
"description": "Mute's Bondage Club Hacks Collection",
"type": "module",
"devDependencies": {
"xo": "^0.56.0"
},
"license": "SEE LICENSE IN LICENSE.",
"xo": {
"env": [
"browser",
"node"
],
"rules": {
"camelcase": "off",
"capitalized-comments": "off",
"curly": "off",
"max-params": "off",
"new-cap": "off",
"no-return-assign": "off",
"no-unused-vars": ["error", {
"argsIgnorePattern": "^_",
"destructuredArrayIgnorePattern": "^_"
}],
"padding-line-between-statements": "off",
"semi": "off",
"unicorn/no-array-reduce": "off",
"fake/fuck-commas": "off"
}
}
}