1. Add no space in paren rule 2. fix spec/eslintrc.json so it allow for inheriting from root rc. Because the spce rc specified reccomended, it "turned off" all of the rule tweaks in the root. This fixes that.
32 lines
651 B
JSON
32 lines
651 B
JSON
{
|
|
"env": {
|
|
"jasmine": true
|
|
},
|
|
"globals": {
|
|
"Parse": true,
|
|
"reconfigureServer": true,
|
|
"createTestUser": true,
|
|
"jfail": true,
|
|
"ok": true,
|
|
"strictEqual": true,
|
|
"TestObject": true,
|
|
"Item": true,
|
|
"Container": true,
|
|
"equal": true,
|
|
"notEqual": true,
|
|
"it_exclude_dbs": true,
|
|
"describe_only_db": true,
|
|
"on_db": true,
|
|
"defaultConfiguration": true,
|
|
"expectSuccess": true,
|
|
"range": true,
|
|
"expectError": true,
|
|
"jequal": true,
|
|
"create": true,
|
|
"arrayContains": true
|
|
},
|
|
"rules": {
|
|
"no-console": [0]
|
|
}
|
|
}
|