UNPKG
eslint-config-amply
Version:
latest (1.0.2)
1.0.2
1.0.1
1.0.0
A baseline eslint config for all Amply projects.
eslint-config-amply
/
rules
/
general.js
15 lines
(14 loc)
•
359 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
module
.
exports
= { rules: {
'no-new'
:
1
,
'no-plusplus'
:
0
,
'func-names'
: [
0
,
'as-needed'
], camelcase:
0
,
'no-param-reassign'
: [
2
, { props:
false
}],
'no-shadow'
:
0
,
'no-underscore-dangle'
:
0
,
'prefer-template'
:
1
,
'global-require'
:
1
,
'import/no-dynamic-require'
:
0
} };