2024-03-17 14:44:00 +01:00
|
|
|
env:
|
|
|
|
browser: true
|
|
|
|
es2022: true
|
|
|
|
extends: eslint:recommended
|
|
|
|
parserOptions:
|
|
|
|
sourceType: module
|
|
|
|
rules:
|
|
|
|
eqeqeq:
|
|
|
|
- warn
|
|
|
|
- always
|
|
|
|
indent:
|
2024-03-18 16:08:52 +01:00
|
|
|
- error
|
2024-03-17 14:44:00 +01:00
|
|
|
- 4
|
2024-03-19 14:55:28 +01:00
|
|
|
- ignoredNodes:
|
2024-09-03 01:32:56 +02:00
|
|
|
- Program > BlockStatement
|
2024-03-19 14:55:28 +01:00
|
|
|
- Program > ExpressionStatement > CallExpression > ArrowFunctionExpression > BlockStatement
|
2024-05-20 20:00:36 +02:00
|
|
|
- Program > ExpressionStatement > CallExpression > FunctionExpression > BlockStatement
|
2024-09-18 17:32:16 +02:00
|
|
|
- Program > IfStatement > BlockStatement
|
|
|
|
- Program > VariableDeclaration > VariableDeclarator > CallExpression > ArrowFunctionExpression > BlockStatement
|
2024-03-26 17:45:05 +01:00
|
|
|
- CallExpression > MemberExpression
|
2024-04-10 02:05:40 +02:00
|
|
|
- ArrayExpression > *
|
2024-04-10 16:28:11 +02:00
|
|
|
- ObjectExpression > *
|
2024-03-18 16:08:52 +01:00
|
|
|
no-control-regex: off
|
|
|
|
no-empty: off
|
2024-03-17 14:44:00 +01:00
|
|
|
sort-imports: warn
|
|
|
|
strict: warn
|
|
|
|
globals:
|
|
|
|
browser: readonly
|
|
|
|
chrome: readonly
|
|
|
|
vAPI: readonly
|