Skip to content

Commit 264346b

Browse files
committed
v6.0.0 - eslint v9 /close #1 #145
1 parent cf5992c commit 264346b

File tree

16 files changed

+5584
-1856
lines changed

16 files changed

+5584
-1856
lines changed

.gitattributes

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
# 2024 January 3
2+
# https://github.com/bevry/base
3+
4+
# never modify any line ending in any file, disregarding all nonsense from eol, autocrlf, renormalize, safecrlf, usecrlfattr, allBinary
5+
* -text
6+
7+
# =====================================
8+
# CUSTOM

.github/FUNDING.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
github: [balupton]
2-
patreon: bevry
3-
open_collective: bevry
4-
ko_fi: balupton
52
liberapay: bevry
3+
ko_fi: balupton
4+
open_collective: bevry
65
tidelift: npm/eslint-config-bevry
76
custom: ['https://bevry.me/fund']

.github/workflows/bevry.yml

Lines changed: 5 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -11,18 +11,16 @@ jobs:
1111
- macos-latest
1212
- windows-latest
1313
node:
14-
- '16'
15-
- '18'
1614
- '20'
17-
- '21'
15+
- '22'
16+
- '24'
1817
runs-on: ${{ matrix.os }}
19-
continue-on-error: ${{ contains('macos-latest windows-latest', matrix.os) }}
2018
steps:
2119
- uses: actions/checkout@v4
2220
- name: Install desired Node.js version
2321
uses: actions/setup-node@v4
2422
with:
25-
node-version: '20'
23+
node-version: '22'
2624
- name: Verify Node.js Versions
2725
run: >-
2826
printf '%s' 'node: ' && node --version && printf '%s' 'npm: ' && npm
@@ -31,7 +29,7 @@ jobs:
3129
- run: npm run our:compile
3230
- run: npm run our:verify
3331
- name: Install targeted Node.js
34-
if: ${{ matrix.node != 20 }}
32+
if: ${{ matrix.node != 22 }}
3533
uses: actions/setup-node@v4
3634
with:
3735
node-version: ${{ matrix.node }}
@@ -49,7 +47,7 @@ jobs:
4947
- name: Install desired Node.js version
5048
uses: actions/setup-node@v4
5149
with:
52-
node-version: '20'
50+
node-version: '22'
5351
- name: Verify Node.js Versions
5452
run: >-
5553
printf '%s' 'node: ' && node --version && printf '%s' 'npm: ' && npm

CONTRIBUTING.md

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,6 @@ Follow these steps in order to implement your changes/improvements into your des
4848
#### Preparation
4949

5050
1. Make sure your changes are on their own branch that is branched off from master.
51-
5251
1. You can do this by: `git checkout master; git checkout -b your-new-branch`
5352
1. And push the changes up by: `git push origin your-new-branch`
5453

@@ -87,7 +86,6 @@ To publish your changes as the project owner:
8786
1. Merge in the changes of the feature branch (if applicable)
8887

8988
1. Increment the version number in the `package.json` file according to the [semantic versioning](http://semver.org) standard, that is:
90-
9189
1. `x.0.0` MAJOR version when you make incompatible API changes (note: DocPad plugins must use v2 as the major version, as v2 corresponds to the current DocPad v6.x releases)
9290
1. `x.y.0` MINOR version when you add functionality in a backwards-compatible manner
9391
1. `x.y.z` PATCH version when you make backwards-compatible bug fixes
@@ -97,10 +95,10 @@ To publish your changes as the project owner:
9795
```markdown
9896
## v6.29.0 2013 April 1
9997
100-
- Progress on [issue #474](https://github.com/docpad/docpad/issues/474)
101-
- DocPad will now set permissions based on the process's ability
102-
- Thanks to [Avi Deitcher](https://github.com/deitch), [Stephan Lough](https://github.com/stephanlough) for [issue #165](https://github.com/docpad/docpad/issues/165)
103-
- Updated dependencies
98+
- Progress on [issue #474](https://github.com/docpad/docpad/issues/474)
99+
- DocPad will now set permissions based on the process's ability
100+
- Thanks to [Avi Deitcher](https://github.com/deitch), [Stephan Lough](https://github.com/stephanlough) for [issue #165](https://github.com/docpad/docpad/issues/165)
101+
- Updated dependencies
104102
```
105103
106104
1. Commit the changes with the commit title set to something like `v6.29.0. Bugfix. Improvement.` and commit description set to the changelog entry

HISTORY.md

Lines changed: 91 additions & 69 deletions
Large diffs are not rendered by default.

README.md

Lines changed: 164 additions & 42 deletions
Large diffs are not rendered by default.

adapt.js

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

eslint.config.js

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
// auto-generated by boundation, do not update manually
2+
import { defineConfig } from 'eslint/config'
3+
import eslintBevry from './source/index.js'
4+
export default defineConfig(eslintBevry)

index.js

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

local.js

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

0 commit comments

Comments
 (0)