panolint 0.1.0 → 0.1.1
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/.dependabot/config.yml +11 -0
- data/.github/workflows/main.yml +1 -1
- data/CHANGELOG.md +24 -0
- data/Gemfile.lock +1 -1
- data/README.md +6 -1
- data/lib/panolint/version.rb +1 -1
- data/{.rubocop.yml → panolint.yml} +4 -0
- metadata +5 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 154ac6670562115294b0e08dce393a20cf80242d5c82b8106a05749ead58b063
|
|
4
|
+
data.tar.gz: 19f94479b898c1f218420446303465506da9190ee47120b355ef746e8bcf1bed
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 7bfb19bb2223e6594d1822e46d928a5f1fbfcc224de8704a1964a2f1774de18381c3357c96c447bc64420bf8d726d52d1f7c03f3722d9ce57f350e4348ad54a9
|
|
7
|
+
data.tar.gz: 076f9558f8f544d35ee36450ffca761e9b96db8b31ad5ecf34e97078d64be1528d52b8df2c05277b15ee459752162f526fcf3ca8f37ac651f326dfcc8974a3e1
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
# This is a dependabot configuration file. When this file is seen on github, a
|
|
2
|
+
# dependabot configuration is created for the project. We can use this to
|
|
3
|
+
# control various aspects of the automated dependency checking, such as the
|
|
4
|
+
# frequency and the target_branch.
|
|
5
|
+
#
|
|
6
|
+
# Reference: https://dependabot.com/docs/config-file/
|
|
7
|
+
version: 1
|
|
8
|
+
update_configs:
|
|
9
|
+
- package_manager: "ruby:bundler"
|
|
10
|
+
directory: "/"
|
|
11
|
+
update_schedule: "weekly"
|
data/.github/workflows/main.yml
CHANGED
data/CHANGELOG.md
ADDED
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
# Changelog
|
|
2
|
+
|
|
3
|
+
All notable changes to this project will be documented in this file.
|
|
4
|
+
|
|
5
|
+
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
|
|
6
|
+
|
|
7
|
+
## [Unreleased]
|
|
8
|
+
|
|
9
|
+
## [0.1.1] - 2020-04-10
|
|
10
|
+
|
|
11
|
+
### Changed
|
|
12
|
+
|
|
13
|
+
- Explicitly ignore the `Naming/FileName` rule on `.overcommit/Gemfile` files.
|
|
14
|
+
- Change the config name from `.rubocop.yml` to `panolint.yml`.
|
|
15
|
+
|
|
16
|
+
## [0.1.0] - 2020-04-09
|
|
17
|
+
|
|
18
|
+
### Added
|
|
19
|
+
|
|
20
|
+
- Initial release. 🎉
|
|
21
|
+
|
|
22
|
+
[unreleased]: https://github.com/panorama-ed/panolint/compare/v0.1.1...HEAD
|
|
23
|
+
[0.1.1]: https://github.com/panorama-ed/panolint/compare/v0.1.0...v0.1.1
|
|
24
|
+
[0.1.0]: https://github.com/panorama-ed/panolint/compare/45c38b...v0.1.0
|
data/Gemfile.lock
CHANGED
data/README.md
CHANGED
|
@@ -1,5 +1,8 @@
|
|
|
1
1
|
# Panolint
|
|
2
2
|
|
|
3
|
+
[](https://github.com/panorama-ed/panolint/actions)
|
|
4
|
+
[](https://github.com/panorama-ed/panolint)
|
|
5
|
+
|
|
3
6
|
A small gem containing rules for linting code at Panorama Education.
|
|
4
7
|
|
|
5
8
|
## Installation
|
|
@@ -24,9 +27,11 @@ You can use this in your project's `.rubocop.yml` with the following at the top:
|
|
|
24
27
|
|
|
25
28
|
```
|
|
26
29
|
inherit_gem:
|
|
27
|
-
panolint: .
|
|
30
|
+
panolint: panolint.yml
|
|
28
31
|
```
|
|
29
32
|
|
|
33
|
+
Note that it for this gem in particular in needs to not be a `.rubocop.yml` file because of rubocop's [path relativity](https://github.com/rubocop-hq/rubocop/blob/master/manual/configuration.md#path-relativity).
|
|
34
|
+
|
|
30
35
|
## Development
|
|
31
36
|
|
|
32
37
|
After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake spec` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
|
data/lib/panolint/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: panolint
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Kevin Deisz
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2020-04-
|
|
11
|
+
date: 2020-04-10 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: rubocop
|
|
@@ -115,10 +115,11 @@ executables: []
|
|
|
115
115
|
extensions: []
|
|
116
116
|
extra_rdoc_files: []
|
|
117
117
|
files:
|
|
118
|
+
- ".dependabot/config.yml"
|
|
118
119
|
- ".github/workflows/main.yml"
|
|
119
120
|
- ".gitignore"
|
|
120
121
|
- ".rspec"
|
|
121
|
-
-
|
|
122
|
+
- CHANGELOG.md
|
|
122
123
|
- CODE_OF_CONDUCT.md
|
|
123
124
|
- Gemfile
|
|
124
125
|
- Gemfile.lock
|
|
@@ -130,6 +131,7 @@ files:
|
|
|
130
131
|
- lib/panolint.rb
|
|
131
132
|
- lib/panolint/version.rb
|
|
132
133
|
- panolint.gemspec
|
|
134
|
+
- panolint.yml
|
|
133
135
|
homepage: https://github.com/panorama-ed/panolint
|
|
134
136
|
licenses:
|
|
135
137
|
- MIT
|