@ibsolution/eslint-config-ibsolution-xsjs
Version:
IBsolution's base JS ESLint config, following our styleguide
20 lines (19 loc) • 485 B
JavaScript
module.exports = {
rules: {
"no-console": "error",
curly: "off",
"space-before-function-paren": "off",
"array-bracket-spacing": "off",
"spaced-comment": "warn",
"comma-dangle": "off",
"no-var": "warn",
semi: ["error", "always"],
"wrap-iife": "off",
"object-shorthand": "off",
"arrow-parens": "off",
"template-curly-spacing": "off",
"consistent-return": "off",
"prefer-destructuring": "off",
"prefer-template": "off"
}
};