ikusei_linters 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/README.md +6 -2
- data/{ikusei-linters.gemspec → ikusei_linters.gemspec} +0 -0
- data/lib/ikusei.rb +1 -0
- data/lib/ikusei/linters/railtie.rb +1 -1
- data/lib/ikusei/linters/version.rb +1 -1
- metadata +4 -5
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 9abab3a0399d1d21e4e69ab3aaac8e953ca4731b
|
|
4
|
+
data.tar.gz: d0079e78feb49bdd18af23158459e6d30cc45f51
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 5b15b92752744138496ecb39bc751fd9756c4b74cbd47bdb813497f4f65ff59e2b28970382dee459f5d37857b79303d3de606b293462a10bbaaa8cd20ad0e7a1
|
|
7
|
+
data.tar.gz: 3577f477abdd27c696d6818b94572ba3f5417adee67d4ef7a6f9f46d15948fd9e8380680796023a81e9ef220ef3c15633b8cce9501e22891eda18223ff2ce3e8
|
data/README.md
CHANGED
|
@@ -1,6 +1,8 @@
|
|
|
1
1
|
# Linters
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
[](https://codeclimate.com/repos/57d18afa46cfc50aa1000c33/feed)
|
|
4
|
+
|
|
5
|
+
This are our configuration files for [scss_lint](https://github.com/brigade/scss-lint), [Rubocop](https://github.com/bbatsov/rubocop) and [ESLint](http://eslint.org/).
|
|
4
6
|
If you want to work on project's together with ikusei, please take the time to set up your environment to use these configuration files.
|
|
5
7
|
|
|
6
8
|
If you download them, please make sure, to rename them and put a leading . in their names.
|
|
@@ -17,7 +19,7 @@ scss-lint.yml => .sccs-lint.yml
|
|
|
17
19
|
Add the gem to your Gemfile
|
|
18
20
|
|
|
19
21
|
```
|
|
20
|
-
gem "
|
|
22
|
+
gem "ikusei_linters"
|
|
21
23
|
```
|
|
22
24
|
|
|
23
25
|
Run the rake task
|
|
@@ -30,4 +32,6 @@ Each linter has a own task, so the following works, too:
|
|
|
30
32
|
|
|
31
33
|
```
|
|
32
34
|
bundle exec rake ikusei:rubocop
|
|
35
|
+
bundle exec rake ikusei:eslint
|
|
36
|
+
bundle exec rake ikusei:scss_lint
|
|
33
37
|
```
|
|
File without changes
|
data/lib/ikusei.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: ikusei_linters
|
|
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
|
- Niklas Hofer
|
|
@@ -9,7 +9,7 @@ authors:
|
|
|
9
9
|
autorequire:
|
|
10
10
|
bindir: exe
|
|
11
11
|
cert_chain: []
|
|
12
|
-
date: 2016-
|
|
12
|
+
date: 2016-10-17 00:00:00.000000000 Z
|
|
13
13
|
dependencies:
|
|
14
14
|
- !ruby/object:Gem::Dependency
|
|
15
15
|
name: bundler
|
|
@@ -99,7 +99,7 @@ files:
|
|
|
99
99
|
- bin/console
|
|
100
100
|
- bin/setup
|
|
101
101
|
- eslintrc
|
|
102
|
-
-
|
|
102
|
+
- ikusei_linters.gemspec
|
|
103
103
|
- lib/ikusei.rb
|
|
104
104
|
- lib/ikusei/linters.rb
|
|
105
105
|
- lib/ikusei/linters/railtie.rb
|
|
@@ -127,9 +127,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
127
127
|
version: '0'
|
|
128
128
|
requirements: []
|
|
129
129
|
rubyforge_project:
|
|
130
|
-
rubygems_version: 2.5
|
|
130
|
+
rubygems_version: 2.4.5
|
|
131
131
|
signing_key:
|
|
132
132
|
specification_version: 4
|
|
133
133
|
summary: Collection of all linter configuration files for the ikusei GmbH style guides.
|
|
134
134
|
test_files: []
|
|
135
|
-
has_rdoc:
|