Commit 4ff31d06296b989e6254d8b82e8f71f8715a9f86

Authored by Aresn
Committed by GitHub
2 parents 70d5a4ab 39e7e56c

Merge pull request #497 from clarkdo/2.0

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 +}
... ...