UNPKG

eslint-config-novacredit

Version:
17 lines (16 loc) 361 B
'use strict'; 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, }, };