mirror of
https://github.com/PaulRBerg/hardhat-template.git
synced 2026-01-09 14:07:58 -05:00
22 lines
536 B
YAML
22 lines
536 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-unused-vars":
|
|
- error
|
|
- argsIgnorePattern: "_"
|
|
varsIgnorePattern: "_"
|