Skip to content

Commit d5720ee

Browse files
authored
Release v1.0.2 (#4)
- dep: eslint-plugin-haraka -> @haraka/eslint-config - populate [files] in package.json. Delete .npmignore. - doc(CHANGE): renamed Changes.md -> CHANGELOG.md - doc(CONTRIBUTORS): added - prettier
1 parent a5e9ee4 commit d5720ee

File tree

18 files changed

+271
-315
lines changed

18 files changed

+271
-315
lines changed

.codeclimate.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
engines:
22
eslint:
33
enabled: true
4-
channel: "eslint-8"
4+
channel: 'eslint-8'
55
config:
6-
config: ".eslintrc.yaml"
6+
config: '.eslintrc.yaml'
77

88
ratings:
9-
paths:
10-
- "**.js"
9+
paths:
10+
- '**.js'
1111

1212
checks:
1313
return-statements:

.eslintrc.yaml

Lines changed: 2 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -2,24 +2,6 @@ env:
22
node: true
33
es6: true
44
mocha: true
5-
es2020: true
5+
es2022: true
66

7-
plugins:
8-
- haraka
9-
10-
extends:
11-
- eslint:recommended
12-
- plugin:haraka/recommended
13-
14-
rules:
15-
indent: [2, 2, {"SwitchCase": 1}]
16-
17-
root: true
18-
19-
globals:
20-
OK: true
21-
CONT: true
22-
DENY: true
23-
DENYSOFT: true
24-
DENYDISCONNECT: true
25-
DENYSOFTDISCONNECT: true
7+
extends: ['@haraka']

.github/PULL_REQUEST_TEMPLATE.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,12 @@
11
Changes proposed in this pull request:
22

3-
-
4-
-
3+
-
4+
-
55

66
Fixes #
77

88
Checklist:
9+
910
- [ ] docs updated
1011
- [ ] tests updated
1112
- [ ] Changes.md updated

.github/dependabot.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22

33
version: 2
44
updates:
5-
- package-ecosystem: "npm"
6-
directory: "/"
5+
- package-ecosystem: 'npm'
6+
directory: '/'
77
schedule:
8-
interval: "monthly"
8+
interval: 'monthly'
99
allow:
1010
- dependency-type: production

.github/workflows/ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: CI
22

3-
on: [ push, pull_request ]
3+
on: [push, pull_request]
44

55
env:
66
CI: true
@@ -14,9 +14,9 @@ jobs:
1414
# secrets: inherit
1515

1616
ubuntu:
17-
needs: [ lint ]
17+
needs: [lint]
1818
uses: haraka/.github/.github/workflows/ubuntu.yml@master
1919

2020
windows:
21-
needs: [ lint ]
21+
needs: [lint]
2222
uses: haraka/.github/.github/workflows/windows.yml@master

.github/workflows/codeql.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
name: "CodeQL"
1+
name: 'CodeQL'
22

33
on:
44
push:
5-
branches: [ master ]
5+
branches: [master]
66
pull_request:
7-
branches: [ master ]
7+
branches: [master]
88
schedule:
99
- cron: '18 7 * * 4'
1010

.github/workflows/publish.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,4 +14,3 @@ jobs:
1414
publish:
1515
uses: haraka/.github/.github/workflows/publish.yml@master
1616
secrets: inherit
17-

.npmignore

Lines changed: 0 additions & 59 deletions
This file was deleted.

.prettierrc

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
singleQuote: true
2+
semi: false

0 commit comments

Comments
 (0)