UNPKG

557 BJavaScriptView Raw
1module.exports = {
2 extends: ['@1stg/eslint-config/recommended'],
3 rules: {
4 '@typescript-eslint/member-ordering': 0,
5 '@typescript-eslint/no-explicit-any': 0,
6 '@typescript-eslint/no-floating-promises': 0,
7 '@typescript-eslint/no-magic-numbers': 0,
8 '@typescript-eslint/no-type-alias': 0,
9 '@typescript-eslint/no-unnecessary-condition': 0,
10 '@typescript-eslint/restrict-plus-operands': 0,
11 '@typescript-eslint/unbound-method': 0,
12 'no-magic-numbers': 0,
13 'promise/always-return': 0,
14 'promise/catch-or-return': 0,
15 },
16}