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		"new-cap": [2, {8			"capIsNewExceptions": [9				"ArraySpeciesCreate",10				"Call",11				"CreateDataPropertyOrThrow",12				"FlattenIntoArray",13				"Get",14				"HasProperty",15				"IsArray",16				"Set",17				"ToIntegerOrInfinity",18				"ToLength",19				"ToObject",20				"ToString",21			],22		}],23		"no-magic-numbers": 0,24	},25 26	"overrides": [27		{28			"files": "test/**",29			"rules": {30				"func-name-matching": 0,31				"max-params": 0,32				"no-invalid-this": [1],33			},34		},35	],36}37