UNPKG
@itentialopensource/adapter-slack
Version:
latest (3.6.0)
3.6.0
3.5.1
3.5.0
3.4.2
3.4.1
3.4.0
3.3.4
3.3.3
3.3.2
3.3.1
3.3.0
3.2.6
3.2.5
3.2.4
3.2.3
3.2.2
3.2.1
3.2.0
3.1.4
3.1.3
3.1.2
3.1.1
3.1.0
3.0.0
2.6.2
2.6.1
2.6.0
2.5.5
2.5.3
2.5.2
2.5.1
2.5.0
2.4.0
2.3.3
2.3.2
2.3.1
2.3.0
2.2.0
2.1.0
2.0.0
This adapter integrates with system Slack
gitlab.com/itentialopensource/adapters/adapter-slack
@itentialopensource/adapter-slack
/
.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'
] } }
;