evolve-js
Version:
EvolveJS An Elements framework built over CreateJS
34 lines (33 loc) • 890 B
Plain Text
{
"extends": ["eslint-config-airbnb"],
"rules": {
"object-curly-spacing": "off",
"max-len": "off",
"arrow-body-style": "off",
"keyword-spacing": "off",
"space-before-function-paren": "off",
"linebreak-style": "off",
"no-useless-escape": "off",
"no-underscore-dangle": "off",
"no-param-reassign": "off",
"no-extra-boolean-cast": "off",
"no-restricted-properties": "off",
"no-unused-vars": "off",
"no-plusplus": "off",
"no-unused-expressions": "off",
"class-methods-use-this": "off",
"one-var": "off",
"prefer-template": "off",
"func-names": ["error", "never"],
"no-console": "off",
"spaced-comment": "off",
"newline-per-chained-call": "off",
"no-trailing-spaces": "off",
"no-mixed-operators": "off",
"react/sort-comp": "off"
},
"globals": {
"window": true,
"document": true
}
}