Skip to content

Commit 1778124

Browse files
Upgrade: npm update, lint
1 parent 094f908 commit 1778124

File tree

7 files changed

+110
-274
lines changed

7 files changed

+110
-274
lines changed

.eslintrc.js

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,21 @@ module.exports = {
22
"globals": {
33
"$shouldNotMutate": "readonly",
44
},
5+
56
"plugins": [
67
"evelyn",
78
],
9+
810
"extends": [
911
"plugin:evelyn/default",
1012
"plugin:evelyn/node",
1113
"plugin:evelyn/source",
1214
],
15+
16+
"rules": {
17+
"unicorn/prefer-module": "off", // For now
18+
},
19+
1320
"overrides": [
1421
{
1522
"files": [
@@ -35,6 +42,7 @@ module.exports = {
3542
},
3643
},
3744
],
45+
3846
"ignorePatterns": [
3947
"src/foo.js",
4048
"lib/foo.js",

.github/dependabot.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ updates:
66
interval: "daily"
77
commit-message:
88
prefix: "Upgrade(npm):"
9+
prefix-development: "Upgrade(dev):"
910
reviewers:
1011
- "evelynhathaway"
1112
assignees:

.github/workflows/nodejs.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,6 @@ jobs:
3737
run: npm test
3838

3939
release:
40-
if: github.ref == 'refs/heads/main'
4140
needs: testing
4241
runs-on: ubuntu-latest
4342
env:

0 commit comments

Comments
 (0)