UNPKG
promisesds
Version:
latest (1.1.0)
1.1.0
1.0.1
1.0.0
ES6 Promises data structures and utils
github.com/mmarinero/promisesDS
mmarinero/promisesDS
promisesds
/
.eslintrc
16 lines
(15 loc)
•
399 B
Plain Text
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{
"extends"
:
"eslint:recommended"
,
"ecmaFeatures"
:
{
"jsx"
:
true
}
,
"env"
:
{
"browser"
:
true
,
"node"
:
true
,
"es6"
:
true
}
,
"rules"
:
{
"no-extra-semi"
:
0
,
"no-unused-vars"
:
[
2
,
{
"args"
:
"all"
,
"argsIgnorePattern"
:
"^_"
}
]
,
"no-console"
:
0
,
"semi"
:
[
2
,
"always"
]
,
}
}