UNPKG
@itentialopensource/adapter-db_mysql
Version:
latest (0.4.0)
0.4.0
0.3.4
0.3.3
0.3.2
0.3.1
0.3.0
0.2.6
0.2.5
0.2.4
0.2.3
0.2.2
0.2.1
0.2.0
0.1.16
0.1.15
0.1.14
0.1.12
0.1.11
0.1.10
0.1.9
0.1.7
0.1.6
0.1.5
0.1.4
0.1.3
Itential adapter to connect to mysql
gitlab.com/itentialopensource/adapters/adapter-db_mysql
@itentialopensource/adapter-db_mysql
/
.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'
] } }
;