CoolFace
Apppublic

Umama-at-Bluchip/Quick-UI

sourceHugging Faceupdated 2y agoView on Hugging Face
0likes
1{2	"root": true,3 4	"extends": "@ljharb",5 6	"rules": {7		"id-length": 0,8		"max-params": 0,9		"max-statements": 0,10		"multiline-comment-style": 0,11		"new-cap": [2, {12			"capIsNewExceptions": [13				"IsSharedArrayBuffer",14				"ToIntegerOrInfinity",15				"GetIntrinsic",16				"IsDetachedBuffer",17				"SpeciesConstructor",18			],19		}],20	},21 22	"overrides": [23		{24			"files": "test/**",25			"globals": {26				"ArrayBuffer": false,27				"Uint8Array": false,28			},29			"rules": {30				"max-lines-per-function": 0,31			},32		},33	],34}35