other
/
mew-iview
Toggle navigation
Sign in
Sign in
Project
Files
Commits
Network
Graphs
Milestones
Issues
0
Merge Requests
0
Labels
Wiki
Download as
Email Patches
Plain Diff
Browse Code »
Commit
39e7e56cf1231fa70a34b859f0cf58ff355033fb
Authored by
Clark Du
2017-03-27 10:46:29 +0800
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
Inline
Side-by-side
test/.eslintrc.json
0 → 100644
Wrap text
Show/Hide comments
View file @
39e7e56
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
+}
...
...