eslint-config-novacredit
Version:
Nova Credit's configuration for style
17 lines (16 loc) • 361 B
JavaScript
;
const path = require('path');
module.exports = {
"extends": path.join(__dirname, 'common.js'),
"rules": {
"max-len": ["warn", 150, 2, {
ignoreUrls: true,
ignoreComments: false,
ignoreRegExpLiterals: true,
ignoreStrings: true,
ignoreTemplateLiterals: true,
}],
"curly": ["error", "all"],
'no-restricted-globals': 0,
},
};