Skip to content

Commit 2441034

Browse files
author
Roy Sutton
committedMay 25, 2016
Removed newline after var, added testing globals
1 parent 089a827 commit 2441034

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed
 

‎.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
node_modules

‎index.js

+5-2
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,10 @@ module.exports = {
33
'require': true,
44
'window': true,
55
'document': true,
6-
'module': true
6+
'module': true,
7+
'describe': true,
8+
'it': true,
9+
'expect': true
710
},
811
extends: ['eslint:recommended', 'plugin:react/recommended'],
912
parser: 'babel-eslint',
@@ -157,7 +160,7 @@ module.exports = {
157160
'max-nested-callbacks': [1, 4],
158161
'new-cap': [2, {'newIsCap': true, 'capIsNew': false}],
159162
'new-parens': 1,
160-
'newline-after-var': [1, 'always'],
163+
'newline-after-var': [0, 'always'],
161164
'no-array-constructor': 2,
162165
'no-continue': 0,
163166
'no-inline-comments': 0,

0 commit comments

Comments
 (0)