typocop 0.1.1 → 0.1.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/README.md +79 -17
- data/lib/typocop/cli.rb +5 -1
- data/lib/typocop/settings.rb +24 -0
- data/lib/typocop/version.rb +5 -0
- data/lib/typocop.rb +11 -36
- metadata +20 -5
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 072e1a38328ac541b281507e0cfdc838a39dc4b2df008118da6703a9b19c2962
|
4
|
+
data.tar.gz: 1a892bccf6ceaaf75c44dc7c57c78b2474ecc0e41feaca8ff77b7f1492f54fc8
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c8bb5c80daad6692b6fdbeb1fda23d4d73a4a7972427c76e3fbf8ec8536941245038eb340b0f95fc606cf54ed37886956019d8b2659bd621c7bafe626b16d13c
|
7
|
+
data.tar.gz: 9a50f63ebe484ea00b6f304803c4b74e43ed210caad0484bcddeb27a3f82dcaae080580c62e9ed2344dd1283aa3c61d8f9dc67cdaa0ffeac1d34166e7cb715b3
|
data/README.md
CHANGED
@@ -1,36 +1,98 @@
|
|
1
1
|
# Check Typos in Pull Request
|
2
|
+
[](https://badge.fury.io/rb/typocop)
|
2
3
|
|
3
|
-

|
4
5
|
|
5
6
|
This GitHub Action automatically checks for typos in the files changed in a pull request. It comments on the pull request with any detected typos and provides suggestions for corrections.
|
6
7
|
|
7
8
|
## Features
|
8
9
|
|
9
|
-
-
|
10
|
-
-
|
11
|
-
-
|
12
|
-
-
|
10
|
+
- Automatically detects typos in files changed in a pull request.
|
11
|
+
- Comments on the pull request with a list of typos found and suggested corrections.
|
12
|
+
- Approves the pull request if no typos are detected.
|
13
|
+
- Dismisses PR approvals if a new commit contains a typo.
|
14
|
+
- Removes outdated typo comments when new commits are made.
|
15
|
+
- Supports all programming languages.
|
13
16
|
|
14
17
|
## Usage
|
15
18
|
|
16
|
-
|
17
|
-
- Create new PR.
|
19
|
+
1. **Using Typocop GitHub Action:**
|
18
20
|
|
19
|
-
|
21
|
+
1. Copy the `.github/workflows/typocop.yml` file into your project repository.
|
22
|
+
|
23
|
+
```yaml
|
24
|
+
# .github/workflows/typocop.yml
|
25
|
+
name: Check Typos in Pull Request
|
26
|
+
|
27
|
+
on: [pull_request]
|
28
|
+
|
29
|
+
jobs:
|
30
|
+
typocop:
|
31
|
+
permissions: write-all
|
32
|
+
runs-on: ubuntu-latest
|
33
|
+
steps:
|
34
|
+
- name: Checkout repository
|
35
|
+
uses: actions/checkout@v3
|
36
|
+
with:
|
37
|
+
fetch-depth: 0
|
38
|
+
|
39
|
+
- name: Run Typocop Action
|
40
|
+
uses: datpmt/typocop@v1.0.2
|
41
|
+
with:
|
42
|
+
github_token: ${{ secrets.GITHUB_TOKEN }}
|
43
|
+
pull_request_id: ${{ github.event.pull_request.number }}
|
44
|
+
github_base_ref: ${{ github.base_ref }}
|
45
|
+
setting: .github/typocop/setting.yml # Optional: Path to your custom settings file
|
46
|
+
```
|
47
|
+
|
48
|
+
2. Customize settings (optional):
|
49
|
+
|
50
|
+
By default, Typocop uses predefined settings, but you can create a custom settings file in your repository. For example, create .github/typocop/setting.yml to specify exclusion rules and skip lists.
|
51
|
+
|
52
|
+
Example `.github/typocop/setting.yml`:
|
53
|
+
|
54
|
+
```yaml
|
55
|
+
excludes: # Files and directories to exclude
|
56
|
+
- excludes/exclude.rb
|
57
|
+
- excludes/test/*
|
20
58
|
|
21
|
-
|
59
|
+
skips: # Words or patterns to skip during typo detection
|
60
|
+
- rspec
|
61
|
+
- eligible
|
62
|
+
```
|
22
63
|
|
23
|
-
|
64
|
+
- **excludes**: Specifies files or directories to exclude from typo checking.
|
65
|
+
- **skips**: Specifies words or patterns to skip checking (useful for technical terms or domain-specific language).
|
66
|
+
|
67
|
+
3. Create a new Pull Request (PR) to trigger the action.
|
68
|
+
2. **Using Typocop command line**
|
69
|
+
|
70
|
+
```bash
|
71
|
+
gem install typocop # install
|
72
|
+
|
73
|
+
GITHUB_TOKEN=your_token PULL_REQUEST_ID=your_pull_request_id typocop execute # run action
|
74
|
+
```
|
75
|
+
|
76
|
+

|
77
|
+
|
78
|
+
## Contributing
|
79
|
+
|
80
|
+
We welcome contributions to this project! To contribute:
|
81
|
+
|
82
|
+
1. Fork the repository.
|
83
|
+
2. Create a new feature branch (git checkout -b your-feature).
|
84
|
+
3. Commit your changes (git commit -am 'Add some feature').
|
85
|
+
4. Push the changes to your fork (git push origin your-feature).
|
86
|
+
5. Open a pull request.
|
87
|
+
|
88
|
+
## Contributors
|
24
89
|
|
25
|
-
|
26
|
-
|
27
|
-
3. Commit your changes (`git commit -am 'Add some feature'`).
|
28
|
-
4. Push to the branch (`git push origin your-feature`).
|
29
|
-
5. Create a new pull request.
|
90
|
+
- Tran Dang Duc Dat ([datpmt](https://github.com/datpmt))
|
91
|
+
- Hoang Duc Quan ([BlazingRockStorm](https://github.com/BlazingRockStorm))
|
30
92
|
|
31
93
|
## References
|
32
|
-
|
33
|
-
|
94
|
+
- [Typo Checker](https://github.com/datpmt/typo_checker)
|
95
|
+
- [Pronto Labs](https://github.com/prontolabs/pronto)
|
34
96
|
|
35
97
|
## License
|
36
98
|
The gem is available as open source under the terms of the [MIT License](LICENSE).
|
data/lib/typocop/cli.rb
CHANGED
@@ -1,11 +1,15 @@
|
|
1
1
|
require 'thor'
|
2
|
+
require_relative 'settings'
|
2
3
|
|
3
4
|
module Typocop
|
4
5
|
class CLI < Thor
|
5
6
|
require 'typocop'
|
7
|
+
method_option :config, type: :string, default: '.github/typocop/setting.yml', aliases: '-c', desc: 'Load setting.'
|
8
|
+
|
6
9
|
desc 'execute', 'Run typocop'
|
7
10
|
def execute
|
8
|
-
|
11
|
+
settings = Settings.new(options[:config])
|
12
|
+
Typocop.execute(settings)
|
9
13
|
end
|
10
14
|
end
|
11
15
|
end
|
@@ -0,0 +1,24 @@
|
|
1
|
+
require 'yaml'
|
2
|
+
|
3
|
+
module Typocop
|
4
|
+
class Settings
|
5
|
+
attr_reader :excludes, :skips
|
6
|
+
|
7
|
+
def initialize(setting_path)
|
8
|
+
@settings = load_settings(setting_path)
|
9
|
+
@excludes = @settings['excludes'] || []
|
10
|
+
@skips = @settings['skips'] || []
|
11
|
+
end
|
12
|
+
|
13
|
+
private
|
14
|
+
|
15
|
+
def load_settings(setting_path)
|
16
|
+
begin
|
17
|
+
YAML.load_file(setting_path)
|
18
|
+
rescue StandardError => e
|
19
|
+
puts "Error loading YAML file: #{e.message}"
|
20
|
+
return {}
|
21
|
+
end
|
22
|
+
end
|
23
|
+
end
|
24
|
+
end
|
data/lib/typocop.rb
CHANGED
@@ -9,6 +9,7 @@ require 'typocop/cop'
|
|
9
9
|
require 'typocop/cops'
|
10
10
|
require 'typocop/patch'
|
11
11
|
require 'typocop/repo'
|
12
|
+
require 'typo_checker'
|
12
13
|
|
13
14
|
GITHUB_TOKEN = ENV['GITHUB_TOKEN'] || ''
|
14
15
|
PULL_ID = ENV['PULL_REQUEST_ID']
|
@@ -16,45 +17,19 @@ GITHUB_BASE_REF = ENV['GITHUB_BASE_REF'] || 'main'
|
|
16
17
|
BASE_BRANCH = GITHUB_BASE_REF.start_with?('origin/') ? GITHUB_BASE_REF : "origin/#{GITHUB_BASE_REF}"
|
17
18
|
|
18
19
|
module Typocop
|
19
|
-
def self.execute
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
20
|
+
def self.execute(settings)
|
21
|
+
excludes = settings.excludes
|
22
|
+
skips = settings.skips
|
23
|
+
typo_checker = TypoChecker::Checker.new(excludes, skips, stdoutput = false)
|
24
|
+
found_typos = typo_checker.scan_repo('.')
|
25
|
+
|
26
|
+
if found_typos.empty?
|
27
|
+
puts 'No typos.'
|
25
28
|
else
|
26
|
-
|
27
|
-
path, line, _column, typo_detail = output.split(':')
|
28
|
-
typo_match = /`(.*?)` -> `(.*?)`/.match(typo_detail)
|
29
|
-
incorrect_word, correct_word = typo_match ? typo_match.captures : []
|
30
|
-
|
31
|
-
path = path.start_with?('./') ? path[2..] : path
|
32
|
-
line = line.to_i
|
33
|
-
|
34
|
-
hash[path] ||= {}
|
35
|
-
|
36
|
-
hash[path][:typos] ||= []
|
37
|
-
|
38
|
-
existing_entry = hash[path][:typos].find { |typo| typo[:line] == line }
|
39
|
-
|
40
|
-
if existing_entry
|
41
|
-
existing_entry[:typos] << { incorrect_word: incorrect_word, correct_word: correct_word }
|
42
|
-
else
|
43
|
-
hash[path][:typos] << { line: line, typos: [{ incorrect_word: incorrect_word, correct_word: correct_word }] }
|
44
|
-
end
|
45
|
-
end
|
46
|
-
|
47
|
-
result = result.map do |path, data|
|
48
|
-
data[:typos].map do |entry|
|
49
|
-
{ path: path, line: entry[:line], typos: entry[:typos] }
|
50
|
-
end
|
51
|
-
end.flatten
|
52
|
-
|
53
|
-
cops = Cops.new(result)
|
54
|
-
cops_data = cops.cops
|
29
|
+
cops = Cops.new(found_typos)
|
55
30
|
repo = Repo.new
|
56
31
|
client = Client.new(repo)
|
57
|
-
client.execute(
|
32
|
+
client.execute(cops.cops)
|
58
33
|
end
|
59
34
|
end
|
60
35
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: typocop
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- datpmt
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-12-
|
11
|
+
date: 2024-12-31 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: octokit
|
@@ -52,9 +52,22 @@ dependencies:
|
|
52
52
|
- - "~>"
|
53
53
|
- !ruby/object:Gem::Version
|
54
54
|
version: 1.3.2
|
55
|
+
- !ruby/object:Gem::Dependency
|
56
|
+
name: typo_checker
|
57
|
+
requirement: !ruby/object:Gem::Requirement
|
58
|
+
requirements:
|
59
|
+
- - ">="
|
60
|
+
- !ruby/object:Gem::Version
|
61
|
+
version: '0'
|
62
|
+
type: :runtime
|
63
|
+
prerelease: false
|
64
|
+
version_requirements: !ruby/object:Gem::Requirement
|
65
|
+
requirements:
|
66
|
+
- - ">="
|
67
|
+
- !ruby/object:Gem::Version
|
68
|
+
version: '0'
|
55
69
|
description: Typocop integrates with GitHub Actions to automatically comment on pull
|
56
|
-
requests when typos are detected or when a PR is approved
|
57
|
-
Typos](https://github.com/crate-ci/typos).
|
70
|
+
requests when typos are detected or when a PR is approved).
|
58
71
|
email: datpmt.2k@gmail.com
|
59
72
|
executables:
|
60
73
|
- typocop
|
@@ -73,6 +86,8 @@ files:
|
|
73
86
|
- lib/typocop/cops.rb
|
74
87
|
- lib/typocop/patch.rb
|
75
88
|
- lib/typocop/repo.rb
|
89
|
+
- lib/typocop/settings.rb
|
90
|
+
- lib/typocop/version.rb
|
76
91
|
homepage: https://rubygems.org/gems/typocop
|
77
92
|
licenses:
|
78
93
|
- MIT
|
@@ -94,7 +109,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
94
109
|
- !ruby/object:Gem::Version
|
95
110
|
version: '0'
|
96
111
|
requirements: []
|
97
|
-
rubygems_version: 3.2.
|
112
|
+
rubygems_version: 3.2.3
|
98
113
|
signing_key:
|
99
114
|
specification_version: 4
|
100
115
|
summary: Comment on PRs with typos or approvals
|