standard 0.0.25

Sign up to get free protection for your applications and to get access to all the features.

Potentially problematic release.


This version of standard might be problematic. Click here for more details.

checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: 7909e3c0a16cf5b806759e4cc2a0b53d1fcc051995d0d9b8ba9beef43d1ebf37
4
+ data.tar.gz: c11f847efceb45d336c68bec6b493065be2a35c1cfd2d7c1dd0d57348a979748
5
+ SHA512:
6
+ metadata.gz: fc1fc4b4695dc5c3058a1e3eccb1d148746901bcfdbf66b42ee148e6b0cc652bf6c13ea5f2a7f4c484276ebb82809e409f5da082cd56496f11b91521292f6466
7
+ data.tar.gz: 3489d32172f51641edfd61f97aa7f3ad51b3585de7e816cb4bcd5783769115d84602f7819f1ba62dfb037007625aeb726b6fe367568115d6fa25ff4ba35f6c84
@@ -0,0 +1,35 @@
1
+ # Ruby CircleCI 2.0 configuration file
2
+ #
3
+ # Check https://circleci.com/docs/2.0/language-ruby/ for more details
4
+ #
5
+ version: 2
6
+ jobs:
7
+ build:
8
+ docker:
9
+ - image: circleci/ruby:2.4.1-node-browsers
10
+ working_directory: ~/repo
11
+
12
+ steps:
13
+ - checkout
14
+ - restore_cache:
15
+ keys:
16
+ - v1-dependencies-{{ checksum "Gemfile.lock" }}
17
+ - v1-dependencies-
18
+
19
+ - run:
20
+ name: install dependencies
21
+ command: |
22
+ bundle install --jobs=4 --retry=3 --path vendor/bundle
23
+
24
+ - save_cache:
25
+ paths:
26
+ - ./vendor/bundle
27
+ key: v1-dependencies-{{ checksum "Gemfile.lock" }}
28
+
29
+ - run:
30
+ name: test
31
+ command: bundle exec rake test
32
+
33
+ - run:
34
+ name: lint
35
+ command: bundle exec rake standard:fix
data/.gitignore ADDED
@@ -0,0 +1,8 @@
1
+ /.bundle/
2
+ /.yardoc
3
+ /_yardoc/
4
+ /coverage/
5
+ /doc/
6
+ /pkg/
7
+ /spec/reports/
8
+ /tmp/
data/.standard.yml ADDED
@@ -0,0 +1,4 @@
1
+ ruby_version: 2.2.0
2
+ ignore:
3
+ - tmp/**/*
4
+ - test/fixture/**/*
data/Gemfile ADDED
@@ -0,0 +1,3 @@
1
+ source "https://rubygems.org"
2
+
3
+ gemspec
data/Gemfile.lock ADDED
@@ -0,0 +1,56 @@
1
+ PATH
2
+ remote: .
3
+ specs:
4
+ standard (0.0.25)
5
+ rubocop (>= 0.63)
6
+
7
+ GEM
8
+ remote: https://rubygems.org/
9
+ specs:
10
+ ast (2.4.0)
11
+ coderay (1.1.2)
12
+ docile (1.3.1)
13
+ gimme (0.5.0)
14
+ jaro_winkler (1.5.2)
15
+ json (2.1.0)
16
+ method_source (0.9.2)
17
+ minitest (5.11.3)
18
+ parallel (1.13.0)
19
+ parser (2.6.0.0)
20
+ ast (~> 2.4.0)
21
+ powerpack (0.1.2)
22
+ pry (0.12.2)
23
+ coderay (~> 1.1.0)
24
+ method_source (~> 0.9.0)
25
+ rainbow (3.0.0)
26
+ rake (12.3.2)
27
+ rubocop (0.63.1)
28
+ jaro_winkler (~> 1.5.1)
29
+ parallel (~> 1.10)
30
+ parser (>= 2.5, != 2.5.1.1)
31
+ powerpack (~> 0.1)
32
+ rainbow (>= 2.2.2, < 4.0)
33
+ ruby-progressbar (~> 1.7)
34
+ unicode-display_width (~> 1.4.0)
35
+ ruby-progressbar (1.10.0)
36
+ simplecov (0.16.1)
37
+ docile (~> 1.1)
38
+ json (>= 1.8, < 3)
39
+ simplecov-html (~> 0.10.0)
40
+ simplecov-html (0.10.2)
41
+ unicode-display_width (1.4.1)
42
+
43
+ PLATFORMS
44
+ ruby
45
+
46
+ DEPENDENCIES
47
+ bundler (~> 1.17)
48
+ gimme
49
+ minitest (~> 5.0)
50
+ pry
51
+ rake (~> 12.0)
52
+ simplecov
53
+ standard!
54
+
55
+ BUNDLED WITH
56
+ 1.17.2
data/LICENSE.txt ADDED
@@ -0,0 +1,24 @@
1
+ Copyright (c) 2018 Test Double, LLC
2
+
3
+ Portions of these files Copyright (c) 2012-18 Bozhidar Batsov:
4
+ - config/base.yml
5
+ - lib/standard/cop/semantic_blocks.rb
6
+
7
+ Permission is hereby granted, free of charge, to any person obtaining
8
+ a copy of this software and associated documentation files (the
9
+ "Software"), to deal in the Software without restriction, including
10
+ without limitation the rights to use, copy, modify, merge, publish,
11
+ distribute, sublicense, and/or sell copies of the Software, and to
12
+ permit persons to whom the Software is furnished to do so, subject to
13
+ the following conditions:
14
+
15
+ The above copyright notice and this permission notice shall be
16
+ included in all copies or substantial portions of the Software.
17
+
18
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
19
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
20
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
21
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
22
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
23
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
24
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
data/README.md ADDED
@@ -0,0 +1,349 @@
1
+ ## Standard - Ruby style guide, linter, and formatter
2
+
3
+ [![CircleCI](https://circleci.com/gh/testdouble/standard.svg?style=svg)](https://circleci.com/gh/testdouble/standard)
4
+
5
+ This gem is a spiritual port of [StandardJS](https://standardjs.com) and aims
6
+ to save you (and others!) time in the same three ways:
7
+
8
+ * **No configuration.** The easiest way to enforce consistent style in your
9
+ project. Just drop it in.
10
+ * **Automatically format code.** Just run `standardrb --fix` and say goodbye to
11
+ messy or inconsistent code.
12
+ * **Catch style issues & programmer errors early.** Save precious code review
13
+ time by eliminating back-and-forth between reviewer & contributor.
14
+
15
+ No decisions to make. It just works. Here's a [⚡ lightning talk ⚡](https://www.youtube.com/watch?v=uLyV5hOqGQ8) about it.
16
+
17
+ Install by adding it to your Gemfile:
18
+
19
+ ```ruby
20
+ gem "standard", group: [:development, :test]
21
+ ```
22
+
23
+ And running `bundle install`.
24
+
25
+ Run Standard from the command line with:
26
+
27
+ ```ruby
28
+ $ bundle exec standardrb
29
+ ```
30
+
31
+ And if you'd like, Standard can autocorrect your code by tacking on a `--fix`
32
+ flag.
33
+
34
+ ## StandardRB — The Rules
35
+
36
+ - **2 spaces** – for indentation
37
+ - **Double quotes for string literals** - because pre-committing to whether
38
+ you'll need interpolation in a string slows people down
39
+ - **1.9 hash syntax** - When all the keys in a hash literal are symbols,
40
+ Standard enforces Ruby 1.9's `{hash: syntax}`
41
+ - **Semantic blocks** - `{`/`}` for functional blocks that return a value, and
42
+ `do`/`end` for procedural blocks that have side effects. More
43
+ [here](http://www.virtuouscode.com/2011/07/26/the-procedurefunction-block-convention-in-ruby/)
44
+ and [here](https://github.com/rubocop-hq/ruby-style-guide/issues/162)
45
+ - **Trailing dots on multi-line method chains** - chosen because it makes
46
+ copying lines into a REPL easier
47
+ - **And a good deal more**
48
+
49
+ If you're familiar with [RuboCop](https://github.com/rubocop-hq/rubocop), you
50
+ can look at Standard's current base configuration in
51
+ [config/base.yml](/config/base.yml).
52
+
53
+ **[NOTE: until StandardRB hits 1.0.0, we consider this configuration to be a
54
+ non-final work in progress and we encourage you to submit your opinions (and
55
+ reasoned arguments) for the addition, removal, or change to a rule by [opening
56
+ an issue](https://github.com/testdouble/standard/issues/new). If you start using
57
+ Standard, don't be shocked if things change a bit!]**
58
+
59
+ ## Usage
60
+
61
+ Once you've installed Standard, you should be able to use the `standardrb`
62
+ program. The simplest use case would be checking the style of all Ruby
63
+ files in the current working directory:
64
+
65
+ ```bash
66
+ $ bundle exec standardrb
67
+ standard: Use Ruby Standard Style (https://github.com/testdouble/standard)
68
+ standard: Run `standardrb --fix` to automatically fix some problems.
69
+ /Users/code/cli.rb:31:23: Style/Semicolon: Do not use semicolons to terminate expressions.
70
+ ```
71
+
72
+ You can optionally pass in a directory (or directories) using the glob pattern. Be
73
+ sure to quote paths containing glob patterns so that they are expanded by
74
+ `standardrb` instead of your shell:
75
+
76
+ ```bash
77
+ $ bundle exec standardrb "lib/**/*.rb" test
78
+ ```
79
+
80
+ **Note:** by default, StandardRB will look for all `*.rb` files (and some other
81
+ files typically associated with Ruby like `*.gemspec` and `Gemfile`)
82
+
83
+ ### Using with Rake
84
+
85
+ Standard also ships with Rake tasks. If you're using Rails, these should
86
+ autoload and be available after installing Standard. Otherwise, just require the
87
+ tasks in your `Rakefile`:
88
+
89
+ ```ruby
90
+ require "standard/rake"
91
+ ```
92
+
93
+ Here are the tasks bundled with Standard:
94
+
95
+ ```
96
+ $ rake standard # equivalent to running `standardrb`
97
+ $ rake standard:fix # equivalent to running `standardrb --fix`
98
+ ```
99
+
100
+ You may also pass command line options to Standard's Rake tasks by embedding
101
+ them in a `STANDARDOPTS` environment variable (similar to how the Minitest Rake
102
+ task accepts CLI options in `TESTOPTS`).
103
+
104
+ ```
105
+ # equivalent to `standardrb --format progress`:
106
+ $ rake standard STANDARDOPTS="--format progress"
107
+
108
+ # equivalent to `standardrb lib "app/**/*"`, to lint just certain paths:
109
+ $ rake standard STANDARDOPTS="lib \"app/**/*\""
110
+ ```
111
+
112
+ ## What you might do if you're clever
113
+
114
+ If you want or need to configure Standard, there are a _handful_ of options
115
+ are available creating a `.standard.yml` file in the root of your project.
116
+
117
+ Here's an example yaml file with every option set:
118
+
119
+ ```yaml
120
+ fix: true # default: false
121
+ parallel: true # default: false
122
+ format: progress # default: Standard::Formatter
123
+ ruby_version: 2.3.3 # default: RUBY_VERSION
124
+ default_ignores: false # default: true
125
+
126
+ ignore: # default: []
127
+ - 'db/schema.rb'
128
+ - 'vendor/**/*'
129
+ - 'test/**/*':
130
+ - Layout/AlignHash
131
+ ```
132
+
133
+ Note: If you're running Standard in a context where your `.standard.yml` file
134
+ cannot be found by ascending the current working directory (i.e. against a
135
+ temporary file buffer in your editor), you can specify the config location with
136
+ `--config path/to/.standard.yml`.
137
+
138
+ ## What you might do if you're REALLY clever
139
+
140
+ Because StandardRB is essentially a wrapper on top of
141
+ [RuboCop](https://github.com/rubocop-hq/rubocop), it will actually forward the
142
+ vast majority of CLI and ENV arguments forward to RuboCop.
143
+
144
+ You can see a list of
145
+ [RuboCop](https://docs.rubocop.org/en/latest/basic_usage/#other-useful-command-line-flags)'s
146
+ CLI flags here.
147
+
148
+ ## Why should I use Ruby Standard Style?
149
+
150
+ (This section will [look
151
+ familiar](https://github.com/standard/standard#why-should-i-use-javascript-standard-style)
152
+ if you've used StandardJS.)
153
+
154
+ The beauty of Ruby Standard Style is that it's simple. No one wants to
155
+ maintain multiple hundred-line style configuration files for every module/project
156
+ they work on. Enough of this madness!
157
+
158
+ This gem saves you (and others!) time in three ways:
159
+
160
+ - **No configuration.** The easiest way to enforce consistent style in your
161
+ project. Just drop it in.
162
+ - **Automatically format code.** Just run `standardrb --fix` and say goodbye to
163
+ messy or inconsistent code.
164
+ - **Catch style issues & programmer errors early.** Save precious code review
165
+ time by eliminating back-and-forth between reviewer & contributor.
166
+
167
+ Adopting Standard style means ranking the importance of code clarity and
168
+ community conventions higher than personal style. This might not make sense for
169
+ 100% of projects and development cultures, however open source can be a hostile
170
+ place for newbies. Setting up clear, automated contributor expectations makes a
171
+ project healthier.
172
+
173
+ ## Who uses Ruby Standard Style?
174
+
175
+ (This section will not [look very
176
+ familiar](https://github.com/standard/standard#who-uses-javascript-standard-style)
177
+ if you've used StandardJS.)
178
+
179
+ * [Test Double](https://testdouble.com/agency)
180
+ * And that's about it so far!
181
+
182
+ If your team starts using Standard, [send a pull
183
+ request](https://github.com/testdouble/standard/edit/master/README.md) to let us
184
+ know!
185
+
186
+ ## Is there a readme badge?
187
+
188
+ Yes! If you use Standard in your project, you can include one of these
189
+ badges in your readme to let people know that your code is using the StandardRB
190
+ style.
191
+
192
+ [![Ruby Style Guide](https://img.shields.io/badge/code_style-standard-brightgreen.svg)](https://github.com/testdouble/standard)
193
+
194
+ ```md
195
+ [![Ruby Style Guide](https://img.shields.io/badge/code_style-standard-brightgreen.svg)](https://github.com/testdouble/standard)
196
+ ```
197
+
198
+ ## I disagree with rule X, can you change it?
199
+
200
+ **[NOTE: until StandardRB hits 1.0.0, the answer is yes! It just requires
201
+ [opening an issue](https://github.com/testdouble/standard/issues/new) and
202
+ convincing [@searls](https://twitter.com/searls) (the BDFNow) to make the
203
+ change.]**
204
+
205
+ No. The whole point of Standard is to save you time by avoiding
206
+ [bikeshedding](https://www.freebsd.org/doc/en/books/faq/misc.html#bikeshed-painting)
207
+ about code style. There are lots of debates online about tabs vs. spaces, etc.
208
+ that will never be resolved. These debates just distract from getting stuff
209
+ done. At the end of the day you have to 'just pick something', and that's the
210
+ whole philosophy of Standard -- its a bunch of sensible 'just pick something'
211
+ opinions. Hopefully, users see the value in that over defending their own
212
+ opinions.
213
+
214
+ Pro tip: Just use Standard and move on. There are actual real problems that
215
+ you could spend your time solving! :P
216
+
217
+ ## Is there an automatic formatter?
218
+
219
+ Yes! You can use `standardrb --fix` to fix most issues automatically.
220
+
221
+ `standardrb --fix` is built into `standardrb` for maximum convenience. Most
222
+ problems are fixable, but some errors must be fixed manually.
223
+
224
+ ## Can I override the `fix: true` config setting?
225
+
226
+ Also yes! You can use `standardrb --no-fix`. Not `fix`ing is the default behavior, but this flag will override the `fix: true` setting in your [`.standard.yml` config](#what-you-might-do-if-youre-clever). This is especially useful for checking your projects compliance with `standardrb` in CI environments while keeping the `fix: true` option enabled locally.
227
+
228
+ ## How do I ignore files?
229
+
230
+ Sometimes you need to ignore additional folders or specific minified files. To
231
+ do that, add a `.standard.yml` file to the root of your project and specify a
232
+ list of files and globs that should be excluded:
233
+
234
+ ```yaml
235
+ ignore:
236
+ - 'some/file/in/particular.rb'
237
+ - 'a/whole/directory/**/*'
238
+ ```
239
+
240
+ You can see the files Standard ignores by default
241
+ [here](https://github.com/testdouble/standard/blob/master/lib/standard/creates_config_store/configures_ignored_paths.rb#L3-L13)
242
+
243
+ ## How do I hide a certain warning?
244
+
245
+ In rare cases, you'll need to break a rule and hide the warning generated by
246
+ Standard.
247
+
248
+ Ruby Standard Style uses [RuboCop](https://github.com/rubocop-hq/rubocop)
249
+ under-the-hood and you can hide warnings as you normally would if you used
250
+ RuboCop directly.
251
+
252
+ To ignore only certain rules from certain globs (not recommended, but maybe your
253
+ test suite uses a non-standardable DSL, you can specify an array of RuboCop
254
+ rules to ignore for a particular glob:
255
+
256
+ ```yaml
257
+ ignore:
258
+ - 'test/**/*':
259
+ - Style/BlockDelimiters
260
+ ```
261
+
262
+ You can also use special comments to disable all or certain rules within your
263
+ source code. See [RuboCop's
264
+ docs](https://docs.rubocop.org/en/latest/configuration/#disabling-cops-within-source-code)
265
+ for details.
266
+
267
+ ## How do I specify a Ruby version? What is supported?
268
+
269
+ Because Standard wraps RuboCop, they share the same [runtime
270
+ requirements](https://github.com/rubocop-hq/rubocop#compatibility)—currently,
271
+ that's MRI 2.2 and newer. While Standard can't avoid this runtime requirement,
272
+ it does allow you to lint codebases that target Ruby versions older than 2.2 by
273
+ narrowing the ruleset somewhat.
274
+
275
+ Standard will default to telling RuboCop to target the currently running version
276
+ of Ruby (by inspecting `RUBY_VERSION` at runtime. But if you want to lock it
277
+ down, you can specify `ruby_version` in `.standard.yml`.
278
+
279
+ ```
280
+ ruby_version: 1.8.7
281
+ ```
282
+
283
+ See
284
+ [testdouble/suture](https://github.com/testdouble/suture/blob/master/.standard.yml)
285
+ for an example.
286
+
287
+ It's a little confusing to consider, but the targeted Ruby version for linting
288
+ may or may not match the version of the runtime (suppose you're on Ruby 2.5.1,
289
+ but your library supports Ruby 2.2.0). In this case, specify `ruby_version` and
290
+ you should be okay. However, note that if you target a _newer_ Ruby version than
291
+ the runtime, RuboCop may behave in surprising or inconsistent ways.
292
+
293
+ If you are targeting a Ruby older than 2.2 and run into an issue, check out
294
+ Standard's [version-specific RuboCop
295
+ configurations](https://github.com/testdouble/standard/tree/master/config) and
296
+ consider helping out by submitting a pull request if you find a rule that won't
297
+ work for older Rubies.
298
+
299
+ ## How do I change the output?
300
+
301
+ Standard's built-in formatter is intentionally minimal, printing only unfixed
302
+ failures or (when successful) printing nothing at all. If you'd like to use a
303
+ different formatter, you can specify any of RuboCop's built-in formatters or
304
+ write your own.
305
+
306
+ For example, if you'd like to see colorful progress dots, you can either run
307
+ Standard with:
308
+
309
+ ```
310
+ $ bundle exec standardrb --format progress
311
+ Inspecting 15 files
312
+ ...............
313
+
314
+ 15 files inspected, no offenses detected
315
+ ```
316
+
317
+ Or, in your project's `.standard.yml` file, specify:
318
+
319
+ ```yaml
320
+ format: progress
321
+ ```
322
+
323
+ Refer to RuboCop's [documentation on
324
+ formatters](https://rubocop.readthedocs.io/en/latest/formatters/) for more
325
+ information.
326
+
327
+ ## How do I run standard in my editor?
328
+
329
+ It can be very handy to know about failures while editing to shorten the
330
+ feedback loop. Some editors support asynchronously running linters.
331
+
332
+ ### Vim
333
+
334
+ Install [ale](https://github.com/w0rp/ale). And add these lines to your `.vimrc`
335
+ file.
336
+
337
+ ```vimscript
338
+ let g:ale_linters = {'ruby': ['standardrb']}
339
+ let g:ale_fixers = {'ruby': ['standardrb']}
340
+ ```
341
+
342
+ This sets Standard as your only linter and fixer for Ruby files and so
343
+ prevents conflicts with RuboCop. For automatic fixing on save, add
344
+ this to your `.vimrc`:
345
+
346
+ ```
347
+ let g:ale_fix_on_save = 1
348
+ ```
349
+
data/Rakefile ADDED
@@ -0,0 +1,12 @@
1
+ require "bundler/gem_tasks"
2
+ require "rake/testtask"
3
+ require_relative "lib/standard/rake"
4
+
5
+ Rake::TestTask.new(:test) do |t|
6
+ t.warning = false
7
+ t.libs << "test"
8
+ t.libs << "lib"
9
+ t.test_files = FileList["test/**/*_test.rb"]
10
+ end
11
+
12
+ task default: [:test, "standard:fix"]
data/bin/console ADDED
@@ -0,0 +1,14 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ require "bundler/setup"
4
+ require "standard"
5
+
6
+ # You can add fixtures and/or initialization code here to make experimenting
7
+ # with your gem easier. You can also use a different console, if you like.
8
+
9
+ # (If you use this, don't forget to add pry to your Gemfile!)
10
+ # require "pry"
11
+ # Pry.start
12
+
13
+ require "irb"
14
+ IRB.start(__FILE__)
data/bin/setup ADDED
@@ -0,0 +1,8 @@
1
+ #!/usr/bin/env bash
2
+ set -euo pipefail
3
+ IFS=$'\n\t'
4
+ set -vx
5
+
6
+ bundle install
7
+
8
+ # Do any other automated setup that you need to do here