mirror of
https://github.com/emsesp/EMS-ESP32.git
synced 2025-12-06 15:59:52 +03:00
27 lines
822 B
Plaintext
27 lines
822 B
Plaintext
{
|
|
"root": true,
|
|
"parser": "@typescript-eslint/parser",
|
|
"plugins": [
|
|
"@typescript-eslint",
|
|
"prettier"
|
|
],
|
|
"extends": [
|
|
"eslint:recommended",
|
|
"plugin:@typescript-eslint/eslint-recommended",
|
|
"plugin:@typescript-eslint/recommended",
|
|
"prettier"
|
|
],
|
|
"rules": {
|
|
// 0 = ignore, 1 = warning, 2 = error
|
|
"no-console": 0,
|
|
"prettier/prettier": ["error", { endOfLine: "auto" }],
|
|
"explicit-function-return-type": 0,
|
|
"@typescript-eslint/explicit-module-boundary-types": 0,
|
|
"@typescript-eslint/no-var-requires": 0,
|
|
"@typescript-eslint/ban-types": 0,
|
|
"@typescript-eslint/no-non-null-asserted-optional-chain": 0,
|
|
"@typescript-eslint/no-non-null-assertion": 0,
|
|
"@typescript-eslint/no-explicit-any": 0
|
|
}
|
|
}
|
|
|