UNPKG

eslint-config-dora

Version:

Eslint config of Dora's Dream, base on eslint-config-airbnb.

13 lines (12 loc) 325 B
module.exports = { rules: { 'no-use-before-define': ['error', { functions: true, classes: true, variables: true } ], 'no-catch-shadow': 'error', // 禁止 catch 块中的异常参数与外部块变量的命名相同 } };