@cowtech/eslint-config
Version:
Cowtech's ESLint configuration
17 lines (15 loc) • 583 B
JavaScript
/*
* This file is part of the @cowtech/eslint-config npm package. Copyright (C) 2017 and above Shogun <shogun@cowtech.it>.
* Licensed under the MIT license, which can be found at https://choosealicense.com/licenses/mit.
*/
module.exports = {
extends: ['standard'],
rules: {
curly: [2, 'all'],
/*
This is inserted to make this compatible with prettier.
Once https://github.com/prettier/prettier/issues/3845 and https://github.com/prettier/prettier/issues/3847 are solved this might be not needed any more.
*/
'space-before-function-paren': 0
}
}