eslint-config-aperopyl
Version:
My shareable eslint config
28 lines (27 loc) • 563 B
JavaScript
module.exports = {
rules: {
"indent": [
"error",
4
],
"linebreak-style": [
"error",
"unix"
],
"quotes": [
"error",
"double"
],
"semi": [
"error",
"always"
],
"arrow-parens": "off",
"comma-dangle": "off",
"function-paren-newline": "off",
"no-console": "off",
"no-undef": "warn",
"no-underscore-dangle": "off",
"no-unused-vars": "warn"
}
};