Skip to content

Commit e5e3f5e

Browse files
committed
typos
1 parent 805deaf commit e5e3f5e

File tree

4 files changed

+28
-29
lines changed

4 files changed

+28
-29
lines changed

.github/workflows/typos.yml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
# SPDX-FileCopyrightText: Copyright (c) 2013-2025 Yegor Bugayenko
2+
# SPDX-License-Identifier: MIT
3+
---
4+
name: typos
5+
'on':
6+
push:
7+
branches:
8+
- master
9+
pull_request:
10+
branches:
11+
- master
12+
jobs:
13+
typos:
14+
timeout-minutes: 15
15+
runs-on: ubuntu-24.04
16+
steps:
17+
- uses: actions/checkout@v4
18+
- uses: crate-ci/typos@v1.32.0

REUSE.toml

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,15 @@
44
version = 1
55
[[annotations]]
66
path = [
7+
".DS_Store",
8+
".gitattributes",
9+
".npmignore",
10+
".gitignore",
711
"**.json",
812
"**.md",
913
"**.txt",
14+
"**/.DS_Store",
15+
"**/.gitignore",
1016
"**/*.csv",
1117
"**/*.jpg",
1218
"**/*.json",
@@ -16,12 +22,7 @@ path = [
1622
"**/*.svg",
1723
"**/*.txt",
1824
"**/*.vm",
19-
"**/.DS_Store",
20-
"**/.gitignore",
2125
"**/CNAME",
22-
".DS_Store",
23-
".gitattributes",
24-
".gitignore",
2526
"README.md",
2627
"renovate.json",
2728
]

bin/dynamo-archive.js

Lines changed: 2 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,7 @@
11
#!/usr/bin/env node
22
/**
3-
* Copyright 2013-2025 Yegor Bugayenko
4-
*
5-
* Licensed under the Apache License, Version 2.0 (the "License");
6-
* you may not use this file except in compliance with the License.
7-
* You may obtain a copy of the License at
8-
* http://www.apache.org/licenses/LICENSE-2.0
9-
*
10-
* Unless required by applicable law or agreed to in writing, software
11-
* distributed under the License is distributed on an "AS IS" BASIS,
12-
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13-
* See the License for the specific language governing permissions and
14-
* limitations under the License.
3+
* SPDX-FileCopyrightText: Copyright (c) 2013-2025 Yegor Bugayenko
4+
* SPDX-License-Identifier: MIT
155
*/
166

177
var utils = require('../lib/utils');

bin/dynamo-restore.js

Lines changed: 2 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,7 @@
11
#!/usr/bin/env node
22
/**
3-
* Copyright 2013-2025 Yegor Bugayenko
4-
*
5-
* Licensed under the Apache License, Version 2.0 (the "License");
6-
* you may not use this file except in compliance with the License.
7-
* You may obtain a copy of the License at
8-
* http://www.apache.org/licenses/LICENSE-2.0
9-
*
10-
* Unless required by applicable law or agreed to in writing, software
11-
* distributed under the License is distributed on an "AS IS" BASIS,
12-
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13-
* See the License for the specific language governing permissions and
14-
* limitations under the License.
3+
* SPDX-FileCopyrightText: Copyright (c) 2013-2025 Yegor Bugayenko
4+
* SPDX-License-Identifier: MIT
155
*/
166

177
var utils = require('../lib/utils');

0 commit comments

Comments
 (0)