mirror of
https://github.com/wharfkit/signing-request.git
synced 2026-07-21 08:02:07 +00:00
c45de93008
- Use .m.js instead of .mjs for es bundle since react tools does not like that extension - Switch to standard rollup typescript plugin - Include tslib for lighter bundles upstream
30 lines
934 B
Plaintext
30 lines
934 B
Plaintext
{
|
|
"root": true,
|
|
"parser": "@typescript-eslint/parser",
|
|
"plugins": ["@typescript-eslint"],
|
|
"ignorePatterns": ["lib/*", "node_modules/**"],
|
|
"extends": [
|
|
"eslint:recommended",
|
|
"plugin:prettier/recommended",
|
|
"plugin:@typescript-eslint/eslint-recommended",
|
|
"plugin:@typescript-eslint/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",
|
|
}
|
|
}
|