eslint-plugin-varspacing
Version:
A eslint rule for proper var spacing
25 lines (22 loc) • 511 B
JavaScript
/*
* This file is part of the Sententiaregum project.
*
* (c) Maximilian Bosch <maximilian.bosch.27@gmail.com>
* (c) Ben Bieler <benjaminbieler2014@gmail.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
;
module.exports = {
rules: {
'var-spacing': require('./lib/rules/var-spacing.rule')
},
configs: {
recommended: {
rules: {
'varspacing/var-spacing': 2
}
}
}
};