Skip to content

Commit 1112fcc

Browse files
authored
Release v1.2.5 (#22)
- get_mx: filter out implicit MX records - dep: eslint-plugin-haraka -> @haraka/eslint-config - chore: lint: remove duplicate / stale rules from .eslintrc - chore: populate [files] in package.json. Delete .npmignore. - doc(CONTRIBUTORS): added - doc(CHANGES): renamed CHANGELOG - chore: prettier & lint
1 parent a71ac8d commit 1112fcc

19 files changed

+978
-836
lines changed

.codeclimate.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
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'

.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: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,12 @@
11
Fixes #
22

33
Changes proposed in this pull request:
4-
-
5-
-
4+
5+
-
6+
-
67

78
Checklist:
9+
810
- [ ] docs updated
911
- [ ] tests updated
1012
- [ ] 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: "weekly"
8+
interval: 'weekly'
99
allow:
1010
- dependency-type: production

.github/workflows/ci.yml

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

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

55
env:
66
CI: true
77

88
jobs:
9-
109
lint:
1110
uses: haraka/.github/.github/workflows/lint.yml@master
1211

@@ -15,9 +14,9 @@ jobs:
1514
# secrets: inherit
1615

1716
ubuntu:
18-
needs: [ lint ]
17+
needs: [lint]
1918
uses: haraka/.github/.github/workflows/ubuntu.yml@master
2019

2120
windows:
22-
needs: [ lint ]
23-
uses: haraka/.github/.github/workflows/windows.yml@master
21+
needs: [lint]
22+
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: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,4 @@ env:
1313
jobs:
1414
publish:
1515
uses: haraka/.github/.github/workflows/publish.yml@master
16-
secrets: inherit
16+
secrets: inherit

.npmignore

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

.prettierrc.yml

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)