forked from ArekSredzki/electron-release-server
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.eslintrc.js
More file actions
31 lines (29 loc) · 660 Bytes
/
.eslintrc.js
File metadata and controls
31 lines (29 loc) · 660 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
module.exports = {
'env': {
'browser': true,
'commonjs': true,
'es6': true,
'jquery': true,
'node': true
},
'extends': [
'eslint:recommended'
],
'globals': {
'angular': 'readonly',
'sails': 'readonly',
'Asset': 'readonly',
'Channel': 'readonly',
'Flavor': 'readonly',
'Version': 'readonly',
'AssetService': 'readonly',
'AuthService': 'readonly',
'AuthToken': 'readonly',
'ChannelService': 'readonly',
'FlavorService': 'readonly',
'PlatformService': 'readonly',
'UtilityService': 'readonly',
'VersionService': 'readonly',
'WindowsReleaseService': 'readonly'
}
};