Commit 39e7e56cf1231fa70a34b859f0cf58ff355033fb

Authored by Clark Du
1 parent 51a0f715

add specific eslint config for test cases

Showing 1 changed file with 15 additions and 0 deletions   Show diff stats
test/.eslintrc.json 0 → 100644
  1 +{
  2 + "extends": [
  3 + "../.eslintrc.json"
  4 + ],
  5 + "globals": {
  6 + "expect": true
  7 + },
  8 + "env": {
  9 + "node": true,
  10 + "mocha": true
  11 + },
  12 + "rules": {
  13 + "indent": ["error",2, { "SwitchCase": 1 }]
  14 + }
  15 +}
... ...