project bootstrap

This commit is contained in:
2023-11-25 18:12:47 -05:00
parent 5cd875ae80
commit 6ef22d88f9
39139 changed files with 4944609 additions and 2 deletions
+49
View File
@@ -0,0 +1,49 @@
{
"root": true,
"extends": "@ljharb",
"rules": {
"array-bracket-newline": "off",
"id-length": "off",
"max-lines-per-function": "off",
"new-cap": ["error", {
"capIsNewExceptions": [
"AddValueToKeyedGroup",
"Call",
"CreateDataPropertyOrThrow",
"GetIntrinsic",
"GetIterator",
"GetMethod",
"GroupBy",
"IsCallable",
"IteratorClose",
"IteratorComplete",
"IteratorNext",
"IteratorStep",
"IteratorValue",
"OrdinaryObjectCreate",
"RequireObjectCoercible",
"ThrowCompletion",
"ToPropertyKey",
"ToString",
"Type",
],
}],
},
"overrides": [
{
"files": "aos/*.js",
"rules": {
"max-statements": "off",
},
},
{
"files": "test/tests.js",
"rules": {
"max-lines-per-function": "off",
},
},
],
}