Spaces:
Sleeping
Sleeping
File size: 1,337 Bytes
4c209d0 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 | {
"name": "@hackmaster/hf_test",
"version": "0.0.1",
"description": "HF test",
"homepage": "https://huggingface.co/spaces/codename-mute/test",
"bugs": {
"url": "https://huggingface.co/spaces/codename-mute/test",
"email": "codename.mute@proton.me"
},
"license": "SEE LICENSE IN LICENSE",
"author": "Mute <codename.mute@proton.me> ()",
"repository": {
"type": "git",
"url": "git+https://huggingface.co/spaces/codename-mute/test"
},
"config": {},
"devDependencies": {
"typescript": "^5.5.4",
"xo": "^0.59.3"
},
"type": "module",
"eslintConfig": {
"root": true,
"extends": [
"xo",
"xo-typescript",
"plugin:unicorn/recommended"
],
"parser": "@typescript-eslint/parser",
"parserOptions": {
"project": [
"./jsconfig.json"
]
},
"plugins": [
"@typescript-eslint",
"unicorn"
],
"rules": {
"@typescript-eslint/brace-style": "off",
"@typescript-eslint/naming-convention": "off",
"@typescript-eslint/no-confusing-void-expression": ["error", {"ignoreVoidOperator": true}],
"@typescript-eslint/no-meaningless-void-operator": "off",
"@typescript-eslint/no-unused-expressions": "off",
"@typescript-eslint/semi": "off",
"max-statements-per-line": "off",
"no-void": "off",
"fake/fuck-commas": "off"
}
}
}
|