mirror of
https://github.com/gorhill/uBlock.git
synced 2024-11-02 08:52:45 +01:00
29 lines
709 B
YAML
29 lines
709 B
YAML
env:
|
|
browser: true
|
|
es2022: true
|
|
extends: eslint:recommended
|
|
parserOptions:
|
|
sourceType: module
|
|
rules:
|
|
eqeqeq:
|
|
- warn
|
|
- always
|
|
indent:
|
|
- error
|
|
- 4
|
|
- ignoredNodes:
|
|
- Program > IfStatement > BlockStatement
|
|
- Program > ExpressionStatement > CallExpression > ArrowFunctionExpression > BlockStatement
|
|
- Program > ExpressionStatement > CallExpression > FunctionExpression > BlockStatement
|
|
- CallExpression > MemberExpression
|
|
- ArrayExpression > *
|
|
- ObjectExpression > *
|
|
no-control-regex: off
|
|
no-empty: off
|
|
sort-imports: warn
|
|
strict: warn
|
|
globals:
|
|
browser: readonly
|
|
chrome: readonly
|
|
vAPI: readonly
|