1.0.0:first commit

This commit is contained in:
2026-03-26 01:23:19 +08:00
commit f8d5b11567
23562 changed files with 2853775 additions and 0 deletions

57
server/node_modules/sql.js/eslint.config.cjs generated vendored Executable file
View File

@@ -0,0 +1,57 @@
"use strict";
const js = require("@eslint/js");
const globals = require("globals");
module.exports = [
{
ignores: [
".eslintrc.js",
"dist/**",
"examples/**",
"documentation/**",
"node_modules/**",
"out/**",
"src/shell-post.js",
"src/shell-pre.js",
"test/**"
]
},
js.configs.recommended,
{
files: ["**/*.js"],
languageOptions: {
ecmaVersion: 5,
sourceType: "script",
globals: {
...globals.browser,
...globals.node,
...globals.es2015,
Atomics: "readonly",
SharedArrayBuffer: "readonly"
}
},
rules: {
camelcase: "off",
"comma-dangle": "off",
"dot-notation": "off",
indent: ["error", 4, { SwitchCase: 1 }],
"max-len": ["error", { code: 80 }],
"no-bitwise": "off",
"no-cond-assign": ["error", "except-parens"],
"no-param-reassign": "off",
"no-throw-literal": "off",
"no-useless-assignment": "off",
"no-var": "off",
"no-unused-vars": ["error", { caughtErrors: "none" }],
"object-shorthand": "off",
"prefer-arrow-callback": "off",
"prefer-destructuring": "off",
"prefer-spread": "off",
"prefer-template": "off",
quotes: ["error", "double"],
strict: "off",
"vars-on-top": "off"
}
}
];