2024-03-17 07:44:00 -06:00
|
|
|
env:
|
|
|
|
browser: true
|
|
|
|
es2022: true
|
|
|
|
extends: eslint:recommended
|
|
|
|
parserOptions:
|
|
|
|
sourceType: module
|
|
|
|
rules:
|
|
|
|
eqeqeq:
|
|
|
|
- warn
|
|
|
|
- always
|
|
|
|
indent:
|
2024-03-18 09:08:52 -06:00
|
|
|
- error
|
2024-03-17 07:44:00 -06:00
|
|
|
- 4
|
2024-03-19 07:55:28 -06:00
|
|
|
- ignoredNodes:
|
|
|
|
- Program > IfStatement > BlockStatement
|
|
|
|
- Program > ExpressionStatement > CallExpression > ArrowFunctionExpression > BlockStatement
|
2024-03-26 10:45:05 -06:00
|
|
|
- CallExpression > MemberExpression
|
2024-04-09 18:05:40 -06:00
|
|
|
- ArrayExpression > *
|
2024-03-18 09:08:52 -06:00
|
|
|
no-control-regex: off
|
|
|
|
no-empty: off
|
2024-03-17 07:44:00 -06:00
|
|
|
sort-imports: warn
|
|
|
|
strict: warn
|
|
|
|
globals:
|
|
|
|
browser: readonly
|
|
|
|
chrome: readonly
|
|
|
|
vAPI: readonly
|