imptest
Version:
Electric Imp Test Runner
80 lines (79 loc) • 1.5 kB
Plain Text
{
"env": {
"node": true
},
"ecmaFeatures": {
"arrowFunctions": true,
"binaryLiterals": true,
"blockBindings": true,
"classes": true,
"forOf": true,
"generators": true,
"objectLiteralShorthandMethods": true,
"objectLiteralShorthandProperties": true,
"octalLiterals": true,
"templateStrings": true
},
"rules": {
"no-debugger": 2,
"no-dupe-args": 2,
"no-dupe-keys": 2,
"no-duplicate-case": 2,
"no-ex-assign": 2,
"quote-props": [2, "as-needed", { "keywords": true, "unnecessary": false }],
"no-unreachable": 2,
"valid-typeof": 2,
"no-fallthrough": 2,
"quotes": [
2,
"single",
"avoid-escape"
],
"comma-spacing": 2,
"semi": 2,
"space-infix-ops": 2,
"space-return-throw-case": 2,
"space-before-function-paren": [
2,
{"anonymous": "always", "named": "never"}
],
"space-before-blocks": [
2,
"always"
],
"new-parens": 2,
"max-len": [
2,
160,
2
],
"no-multiple-empty-lines": [
2,
{
"max": 2
}
],
"eol-last": 2,
"no-trailing-spaces": 2,
"space-after-keywords": 2,
"prefer-const": 2,
"strict": [
2,
"global"
],
"no-undef": 2,
"no-unused-vars": [
2,
{
"args": "none"
}
]
},
"globals": {
"describe": false,
"it": false,
"expect": false,
"jasmine": false,
"beforeEach": false
}
}