|
16 | 16 | }
|
17 | 17 | },
|
18 | 18 | {
|
19 |
| - "files": "tests/**", |
| 19 | + "files": ["tests/**", "test-utils/**"], |
20 | 20 | "env": {
|
21 | 21 | "node": true
|
22 | 22 | },
|
23 | 23 | "parserOptions": {
|
24 | 24 | "ecmaVersion": 2020
|
25 | 25 | },
|
26 | 26 | "rules": {
|
27 |
| - "no-process-env": "off" |
| 27 | + "no-process-env": "off", |
| 28 | + "no-restricted-syntax": ["error", |
| 29 | + {"selector": "Literal[bigint]", "message": "BigInts are not supported in ES2018"}, |
| 30 | + {"selector": "ChainExpression", "message": "Optional chaining is not supported in ES2018"}, |
| 31 | + {"selector": "BinaryExpression[operator='??']", "message": "Nullish coalescing is not supported in ES2018"}, |
| 32 | + {"selector": "MetaProperty[meta.name='import'][property.name='meta']", "message": "`import.meta` is not supported in ES2018"}, |
| 33 | + {"selector": "ExportAllDeclaration[exported!=null]", "message": "`export * as foo from ...` is not supported in ES2018"}, |
| 34 | + {"selector": "CatchClause[param=null]", "message": "Omitted `catch` bindings are not supported in ES2018"}, |
| 35 | + {"selector": "ForOfStatement[await=true]", "message": "Async/await is not supported in ES2018"}, |
| 36 | + {"selector": "ObjectExpression > SpreadElement", "message": "Object rest/spread is not supported in ES2018"}, |
| 37 | + {"selector": "ObjectPattern > SpreadElement", "message": "Object rest/spread is not supported in ES2018"}, |
| 38 | + {"selector": "Function[async=true][generator=true]", "message": "Async generators are not supported in ES2018"}, |
| 39 | + {"selector": "Literal[regex.flags=/s/]", "message": "`/.../s` is not supported in ES2018"}, |
| 40 | + {"selector": "Literal[regex.pattern=/\\(<=|\\(<!/]", "message": "Lookbehind assertions are not supported in ES2018"}, |
| 41 | + {"selector": "Literal[regex.pattern=/\\(?<[\\w$]+>|\\\\k<[\\w$]+>/]", "message": "Named capture groups are not supported in ES2018"}, |
| 42 | + {"selector": "Literal[regex.flags=/u/][regex.pattern=/\\\\p/i]", "message": "`\\p{...}` in regexps are not supported in ES2018"}, |
| 43 | + {"selector": "Literal[regex.flags=/v/]", "message": "`/.../v` is not supported in ES2018"}, |
| 44 | + { |
| 45 | + "selector": "TaggedTemplateExpression TemplateElement[value.raw=/\\\\(?![0'\"\\\\nrvtbf\\n\\r\\u2028\\u2029]|x[0-9a-fA-F]{2}|u[0-9a-fA-F]{4}|u\\{([0-9a-fA-F]{1,5}|10[0-9a-fA-F]{0,4})\\})/]", |
| 46 | + "message": "Tagged template strings in ES2018 have the same lexical grammar as non-tagged template strings" |
| 47 | + }, |
| 48 | + |
| 49 | + {"selector": "MemberExpression[property.name='matchAll']", "message": "`string.matchAll` is not supported in ES2018"}, |
| 50 | + {"selector": "MemberExpression[property.name='trimStart']", "message": "`string.trimStart` is not supported in ES2018"}, |
| 51 | + {"selector": "MemberExpression[property.name='finally']", "message": "`promise.finally` is not supported in ES2018"} |
| 52 | + ] |
28 | 53 | }
|
29 | 54 | }
|
30 | 55 | ],
|
|
37 | 62 | "URL": true,
|
38 | 63 | "URLSearchParams": true,
|
39 | 64 | "AbortController": true,
|
40 |
| - "setTimeout": true, |
41 |
| - "clearTimeout": true, |
42 | 65 | "console": true
|
43 | 66 | },
|
44 | 67 | "parserOptions": {
|
|
70 | 93 |
|
71 | 94 | {"selector": "MemberExpression[property.name='matchAll']", "message": "`string.matchAll` is not supported in ES2018"},
|
72 | 95 | {"selector": "MemberExpression[property.name='trimStart']", "message": "`string.trimStart` is not supported in ES2018"},
|
73 |
| - {"selector": "MemberExpression[property.name='finally']", "message": "`promise.finally` is not supported in ES2018"} |
| 96 | + {"selector": "MemberExpression[property.name='finally']", "message": "`promise.finally` is not supported in ES2018"}, |
| 97 | + |
| 98 | + {"selector": "VariableDeclaration[kind!='var']", "message": "Keep to `var` in `src/` to ensure the module compresses better"} |
74 | 99 | ],
|
75 | 100 | "no-restricted-properties": ["error",
|
76 | 101 | {"object": "Promise", "property": "allSettled", "message": "`Promise.allSettled` is not supported in ES2018"},
|
|
0 commit comments