UNPKG
eslint-config-cobinhood
Version:
latest (0.0.1)
0.0.1
eslint config
github.com/cobinhood/eslint-config-cobinhood
cobinhood/eslint-config-cobinhood
eslint-config-cobinhood
/
browser.js
21 lines
(17 loc)
•
262 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
module
.exports = {
'extends'
: [
'./index'
,
'./rules/compat'
, ].map(
require
.resolve),
'env'
: {
'browser'
:
true
,
'node'
:
true
,
'jest'
:
true
},
'plugins'
: [
'flowtype'
],
'settings'
: {
'polyfills'
: [
'fetch'
] }, };