Skip to content

Commit 68f8107

Browse files
committed
typos
1 parent 23a8bf8 commit 68f8107

File tree

5 files changed

+30
-11
lines changed

5 files changed

+30
-11
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) 2014-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/[email protected]

.gitignore

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
1-
*.gem
2-
.DS_Store
31
.bundle/
2+
.DS_Store
43
.idea/
54
.yardoc/
6-
Gemfile.lock
5+
*.gem
76
coverage/
87
doc/
8+
Gemfile.lock
99
node_modules/
1010
rdoc/
1111
vendor/

.rubocop.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,3 +28,4 @@ Style/ClassAndModuleChildren:
2828
Enabled: false
2929
Layout/EmptyLineAfterGuardClause:
3030
Enabled: false
31+
require: []

Gemfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
source 'https://rubygems.org'
77
gemspec
88

9-
gem 'kramdown-parser-gfm', '1.1.0', require: false
9+
gem 'kramdown-parser-gfm', '~>1.1', require: false
1010
gem 'minitest', '~>5.25', require: false
1111
gem 'minitest-reporters', '~>1.7', require: false
1212
gem 'rake', '~>13.2', require: false

REUSE.toml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,18 @@
44
version = 1
55
[[annotations]]
66
path = [
7+
".DS_Store",
8+
".gitattributes",
9+
".gitignore",
10+
".pdd",
711
"**.json",
812
"**.md",
913
"**.png",
1014
"**.svg",
1115
"**.txt",
16+
"**/.DS_Store",
17+
"**/.gitignore",
18+
"**/.pdd",
1219
"**/*.csv",
1320
"**/*.jpg",
1421
"**/*.json",
@@ -18,15 +25,8 @@ path = [
1825
"**/*.svg",
1926
"**/*.txt",
2027
"**/*.vm",
21-
"**/.DS_Store",
22-
"**/.gitignore",
23-
"**/.pdd",
2428
"**/CNAME",
2529
"**/Gemfile.lock",
26-
".DS_Store",
27-
".gitattributes",
28-
".gitignore",
29-
".pdd",
3030
"Gemfile.lock",
3131
"README.md",
3232
"renovate.json",

0 commit comments

Comments
 (0)