@0xsequence/google-kms-signer
Version:
an ethers.js- and sequence.js-compatible signer using Google Cloud Key Management Service keys
52 lines (46 loc) • 1.26 kB
JavaScript
module.exports = {
parser: '@typescript-eslint/parser',
parserOptions: {
ecmaVersion: 2018,
sourceType: 'module'
},
extends: [
'plugin:@typescript-eslint/recommended',
'plugin:import/errors',
'plugin:import/warnings',
'plugin:import/typescript',
'prettier'
],
rules: {
'@typescript-eslint/ban-ts-comment': 'off',
'@typescript-eslint/ban-types': 'off',
'@typescript-eslint/explicit-module-boundary-types': 'off',
'@typescript-eslint/no-empty-function': 'off',
'@typescript-eslint/no-explicit-any': 'off',
'@typescript-eslint/no-inferrable-types': 'off',
'@typescript-eslint/no-non-null-assertion': 'off',
'@typescript-eslint/no-this-alias': 'off',
'@typescript-eslint/no-unused-vars': 'off',
'@typescript-eslint/no-var-requires': 'off',
'import/export': 'off',
'import/no-named-as-default-member': 'off',
'import/no-unresolved': 'off',
'import/order': [
'error',
{
alphabetize: {
order: 'asc',
orderImportKind: 'asc'
},
'newlines-between': 'always',
warnOnUnassignedImports: true
}
],
'sort-imports': [
'error',
{
ignoreDeclarationSort: true
}
]
}
}