Files
ComfyUI_frontend/.eslintrc.js
Chenlei Hu 28382b7e45 Format all code with prettier (#197)
* Add formatter support

* Format all code

* Fix moved @ts-expect-error
2024-10-07 14:06:44 -04:00

56 lines
1.1 KiB
JavaScript
Executable File

module.exports = {
env: {
browser: true,
es2021: true,
node: true,
"jest/globals": true,
},
extends: "eslint:recommended",
overrides: [],
parserOptions: {
ecmaVersion: "latest",
sourceType: "module",
},
plugins: ["jest"],
globals: {
gl: true,
GL: true,
LS: true,
Uint8Array: true,
Uint32Array: true,
Float32Array: true,
LGraphCanvas: true,
LGraph: true,
LGraphNode: true,
LiteGraph: true,
LGraphTexture: true,
Mesh: true,
Shader: true,
enableWebGLCanvas: true,
vec2: true,
vec3: true,
vec4: true,
DEG2RAD: true,
isPowerOfTwo: true,
cloneCanvas: true,
createCanvas: true,
hex2num: true,
colorToString: true,
showElement: true,
quat: true,
AudioSynth: true,
SillyClient: true,
},
rules: {
"no-console": "off",
"no-empty": "warn",
"no-redeclare": "warn",
"no-inner-declarations": "warn",
"no-constant-condition": "warn",
"no-unused-vars": "warn",
"no-mixed-spaces-and-tabs": "warn",
"no-unreachable": "warn",
curly: ["warn", "all"],
},
};