UNPKG

eslint-config-ecliptic

Version:

Ecliptic's ESLint config, following our styleguide

9 lines (8 loc) 235 B
module.exports = { 'rules': { // disallow declaration of variables that are not used in the code 'no-unused-vars': 2, // disallow use of variables before they are defined 'no-use-before-define': [1, 'nofunc'], }, }