-
-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy patheslint.config.js
More file actions
83 lines (81 loc) · 1.92 KB
/
Copy patheslint.config.js
File metadata and controls
83 lines (81 loc) · 1.92 KB
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
// @ts-check
import eslint from "@eslint/js";
import tseslint from "typescript-eslint";
import aseslint from "./tools/assemblyscript-eslint-local.js";
export default tseslint.config(
{
ignores: [
"bin/**",
"templates/**",
"tests/**/*.js",
"transform/lib/**",
"build/**",
".as-test/**",
"**/*.tmp.ts",
],
},
eslint.configs.recommended,
...tseslint.configs.recommended,
aseslint.config,
{
files: ["**/*.{js,mjs,cjs,ts}"],
languageOptions: {
globals: {
Buffer: "readonly",
WebAssembly: "readonly",
console: "readonly",
process: "readonly",
},
},
},
{
files: ["**/*.ts"],
rules: {
"no-useless-assignment": "off",
"@typescript-eslint/no-namespace": "off",
"@typescript-eslint/no-unused-vars": [
"error",
{ argsIgnorePattern: "^_", varsIgnorePattern: "^_" },
],
},
},
{
files: ["assembly/**/*.ts", "lib/**/*.ts"],
rules: {
"@typescript-eslint/ban-ts-comment": "off",
"@typescript-eslint/no-explicit-any": "off",
"@typescript-eslint/no-unsafe-function-type": "off",
"@typescript-eslint/no-unused-vars": "off",
"@typescript-eslint/triple-slash-reference": "off",
"no-constant-condition": "off",
"no-empty": "off",
"no-dupe-else-if": "off",
"no-loss-of-precision": "off",
"no-useless-escape": "off",
"prefer-const": "off",
},
},
{
files: ["bench/runners/assemblyscript.js"],
languageOptions: {
globals: {
arguments: "readonly",
performance: "readonly",
readbuffer: "readonly",
writeFile: "readonly",
read: "readonly",
},
},
},
{
files: ["bench/lib/bench.js"],
languageOptions: {
globals: {
performance: "readonly",
print: "readonly",
writeFile: "readonly",
read: "readonly",
},
},
},
);