UNPKG
@itentialopensource/adapter-git
Version:
latest (0.5.0)
0.5.0
0.4.5
0.4.4
0.4.3
0.4.2
0.4.1
0.4.0
0.3.10
0.3.9
0.3.8
0.3.7
0.3.6
0.3.5
0.3.4
0.3.3
0.3.2
0.3.1
0.3.0
0.2.0
0.1.1
Itential adapter to run git commands
gitlab.com/itentialopensource/adapters/adapter-git
@itentialopensource/adapter-git
/
.eslintrc.js
20 lines
(19 loc)
•
289 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
module.exports
=
{
env:
{
browser:
true
,
es6:
true
,
node:
true
},
extends:
'airbnb-base'
,
plugins:
[
'json'
],
parserOptions:
{
ecmaVersion:
2020
,
sourceType:
'module'
},
rules:
{
'max-len':
'warn'
,
'comma-dangle':
[
'error'
,
'never'
] } }
;