You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
46 lines
1.6 KiB
46 lines
1.6 KiB
'use strict' |
|
|
|
module.exports = { |
|
rules: { |
|
'param-names': require('./rules/param-names'), |
|
'no-return-wrap': require('./rules/no-return-wrap'), |
|
'always-return': require('./rules/always-return'), |
|
'catch-or-return': require('./rules/catch-or-return'), |
|
'prefer-await-to-callbacks': require('./rules/prefer-await-to-callbacks'), |
|
'prefer-await-to-then': require('./rules/prefer-await-to-then'), |
|
'no-native': require('./rules/no-native'), |
|
'no-callback-in-promise': require('./rules/no-callback-in-promise'), |
|
'no-promise-in-callback': require('./rules/no-promise-in-callback'), |
|
'no-nesting': require('./rules/no-nesting'), |
|
'avoid-new': require('./rules/avoid-new'), |
|
'no-new-statics': require('./rules/no-new-statics'), |
|
'no-return-in-finally': require('./rules/no-return-in-finally'), |
|
'valid-params': require('./rules/valid-params') |
|
}, |
|
rulesConfig: { |
|
'param-names': 1, |
|
'always-return': 1, |
|
'no-return-wrap': 1, |
|
'no-native': 0, |
|
'catch-or-return': 1 |
|
}, |
|
configs: { |
|
recommended: { |
|
plugins: ['promise'], |
|
rules: { |
|
'promise/always-return': 'error', |
|
'promise/no-return-wrap': 'error', |
|
'promise/param-names': 'error', |
|
'promise/catch-or-return': 'error', |
|
'promise/no-native': 'off', |
|
'promise/no-nesting': 'warn', |
|
'promise/no-promise-in-callback': 'warn', |
|
'promise/no-callback-in-promise': 'warn', |
|
'promise/avoid-new': 'off', |
|
'promise/no-new-statics': 'error', |
|
'promise/no-return-in-finally': 'warn', |
|
'promise/valid-params': 'warn' |
|
} |
|
} |
|
} |
|
}
|
|
|