mirror of
https://github.com/danielsogl/awesome-cordova-plugins.git
synced 2025-01-19 00:12:53 +08:00
14 lines
507 B
Plaintext
14 lines
507 B
Plaintext
|
{
|
||
|
"parser": "@typescript-eslint/parser",
|
||
|
"plugins": ["@typescript-eslint", "jsdoc"],
|
||
|
"extends": ["plugin:@typescript-eslint/recommended", "prettier", "plugin:jsdoc/recommended"],
|
||
|
"rules": {
|
||
|
"@typescript-eslint/no-unused-vars": ["off"],
|
||
|
"@typescript-eslint/no-explicit-any": ["warn"],
|
||
|
"@typescript-eslint/no-empty-function": ["off"],
|
||
|
"@typescript-eslint/ban-types": ["warn"],
|
||
|
"@typescript-eslint/no-empty-interface": ["warn"],
|
||
|
"@typescript-eslint/no-namespace": ["off"]
|
||
|
}
|
||
|
}
|