UNPKG
array-extensions
Version:
latest (1.0.1)
1.0.1
Extending the Array prototype in JS
github.com/islas27/array-extensions
islas27/array-extensions
array-extensions
/
.eslintrc.js
13 lines
(12 loc)
•
292 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
module
.
exports
= {
"extends"
:
"standard"
,
"plugins"
: [
"standard"
],
"rules"
: {
// enable additional rules
"no-extend-native"
:
"off"
,
"import/no-extraneous-dependencies"
: [
"error"
, {
"devDependencies"
:
true
}],
"no-undef"
:
"off"
} };