mirror of
https://github.com/zama-ai/fhevm-solidity.git
synced 2026-01-09 20:47:56 -05:00
23 lines
588 B
YAML
23 lines
588 B
YAML
extends:
|
|
- "eslint:recommended"
|
|
- "plugin:@typescript-eslint/eslint-recommended"
|
|
- "plugin:@typescript-eslint/recommended"
|
|
- "prettier"
|
|
parser: "@typescript-eslint/parser"
|
|
parserOptions:
|
|
project: "tsconfig.json"
|
|
plugins:
|
|
- "@typescript-eslint"
|
|
root: true
|
|
rules:
|
|
"@typescript-eslint/no-floating-promises":
|
|
- error
|
|
- ignoreIIFE: true
|
|
ignoreVoid: true
|
|
"@typescript-eslint/no-inferrable-types": "off"
|
|
"@typescript-eslint/no-non-null-assertion": "off"
|
|
"@typescript-eslint/no-unused-vars":
|
|
- error
|
|
- argsIgnorePattern: "_"
|
|
varsIgnorePattern: "_"
|