-
Notifications
You must be signed in to change notification settings - Fork 0
/
eslint.config.mjs
96 lines (95 loc) · 2.92 KB
/
eslint.config.mjs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
import globals from "globals";
import pluginJs from "@eslint/js";
import tseslint from "typescript-eslint";
export default [
pluginJs.configs.recommended,
...tseslint.configs.recommended,
...[pluginJs.configs.recommended, ...tseslint.configs.recommended].map((conf) => ({
...conf,
files: ["src/**/*.ts"]
})),
{
files: ["src/**/*.ts"],
languageOptions: {
parserOptions: {
projectService: true,
tsconfigRootDir: import.meta.dirname
},
globals: {
...globals.browser
}
},
rules: {
"no-warning-comments": ["warn", {}],
"@typescript-eslint/no-unused-vars": ["warn"]
}
},
{
languageOptions: {
globals: {
...globals.browser,
GPU: "readonly",
GPUAdapter: "readonly",
GPUAdapterInfo: "readonly",
GPUBindGroup: "readonly",
GPUBindGroupLayout: "readonly",
GPUBuffer: "readonly",
GPUCanvasContext: "readonly",
GPUCommandBuffer: "readonly",
GPUCommandEncoder: "readonly",
GPUCompilationInfo: "readonly",
GPUCompilationMessage: "readonly",
GPUComputePassEncoder: "readonly",
GPUComputePipeline: "readonly",
GPUDevice: "readonly",
GPUDeviceLostInfo: "readonly",
GPUError: "readonly",
GPUExternalTexture: "readonly",
GPUInternalError: "readonly",
GPUOutOfMemoryError: "readonly",
GPUPipelineError: "readonly",
GPUPipelineLayout: "readonly",
GPUQuerySet: "readonly",
GPUQueue: "readonly",
GPURenderBundle: "readonly",
GPURenderBundleEncoder: "readonly",
GPURenderPassEncoder: "readonly",
GPURenderPipeline: "readonly",
GPUSampler: "readonly",
GPUShaderModule: "readonly",
GPUSupportedLimits: "readonly",
GPUTexture: "readonly",
GPUTextureView: "readonly",
GPUUncapturedErrorEvent: "readonly",
GPUValidationError: "readonly",
GPUBufferUsage: "readonly",
GPUColorWrite: "readonly",
GPUMapMode: "readonly",
GPUShaderStage: "readonly",
GPUTextureUsage: "readonly",
GPUBufferBindingType: "readonly",
GPUTextureFormat: "readonly",
GPUBlendFactor: "readonly",
GPUBlendOperation: "readonly",
FrameRequestCallback: "readonly",
GPURenderPassDescriptor: "readonly",
GPUStoreOp: "readonly",
GPULoadOp: "readonly",
GPUCanvasAlphaMode: "readonly",
GPUBindGroupEntry: "readonly",
GPUBufferBinding: "readonly",
GPUIndexFormat: "readonly"
}
},
rules: {
"no-unused-vars": ["warn", { vars: "all", args: "after-used", ignoreRestSiblings: false }],
"no-warning-comments": ["warn", {}],
"no-irregular-whitespace": ["warn", {}],
"no-console": ["warn", {}],
"no-undef": ["warn", {}]
}
},
{
ignores: ["dist/", "build", ".eslintrc.mjs"]
}
];