koco-tinymce
Version:
Knockout Components handlers and utilities for the TinyMCE editor
28 lines (26 loc) • 542 B
Plain Text
{
"extends": "airbnb",
"env": {
"browser": true,
"node": true,
"mocha": true
},
"plugins": [
],
"rules": {
"func-names": 0,
"space-before-function-paren": 0,
"prefer-arrow-callback": 1,
"strict": 1,
"comma-dangle": 0, // not sure why airbnb turned this on. gross!
"indent": [1, 2, {"SwitchCase": 1}],
"max-len": [
2, 120, 2, {
"ignoreUrls": true,
"ignoreComments": true
}],
"no-param-reassign": 0,
"import/no-unresolved": 0
},
"parser": "babel-eslint"
}