mirror of
https://github.com/wharfkit/transact-plugin-autocorrect.git
synced 2026-07-21 17:43:37 +00:00
28 lines
851 B
Plaintext
28 lines
851 B
Plaintext
{
|
|
"root": true,
|
|
"ignorePatterns": ["lib/*", "node_modules/**"],
|
|
"extends": [
|
|
"eslint:recommended",
|
|
"plugin:@typescript-eslint/eslint-recommended",
|
|
"plugin:@typescript-eslint/recommended",
|
|
"plugin:prettier/recommended"
|
|
],
|
|
"rules": {
|
|
"prettier/prettier": "warn",
|
|
"no-console": "warn",
|
|
"sort-imports": [
|
|
"warn",
|
|
{
|
|
"ignoreCase": true,
|
|
"ignoreDeclarationSort": true
|
|
}
|
|
],
|
|
"@typescript-eslint/explicit-module-boundary-types": "off",
|
|
"@typescript-eslint/no-explicit-any": "off",
|
|
"@typescript-eslint/no-namespace": "off",
|
|
"@typescript-eslint/no-non-null-assertion": "off",
|
|
"@typescript-eslint/no-empty-function": "warn",
|
|
"no-inner-declarations": "off"
|
|
}
|
|
}
|