-
Notifications
You must be signed in to change notification settings - Fork 1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
We use a fair bit of Ruby logic here and there so until this website disappears (not soon), we might as well ensure we're hacking as one.
- Loading branch information
Showing
23 changed files
with
497 additions
and
260 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
inherit_from: .rubocop_todo.yml | ||
|
||
# The behavior of RuboCop can be controlled via the .rubocop.yml | ||
# configuration file. It makes it possible to enable/disable | ||
# certain cops (checks) and to alter their behavior if they accept | ||
# any parameters. The file can be placed either in your home | ||
# directory or in some project directory. | ||
# | ||
# RuboCop will start looking for the configuration file in the directory | ||
# where the inspected file is and continue its way up to the root directory. | ||
# | ||
# See https://docs.rubocop.org/rubocop/configuration | ||
require: | ||
- rubocop-rspec | ||
- rubocop-rake | ||
|
||
AllCops: | ||
NewCops: enable |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,176 @@ | ||
# This configuration was generated by | ||
# `rubocop --auto-gen-config` | ||
# on 2024-10-16 07:34:36 UTC using RuboCop version 1.66.1. | ||
# The point is for the user to remove these configuration records | ||
# one by one as the offenses are removed from the code base. | ||
# Note that changes in the inspected code, or installation of new | ||
# versions of RuboCop, may require this file to be generated again. | ||
|
||
# Offense count: 2 | ||
# This cop supports safe autocorrection (--autocorrect). | ||
Lint/AmbiguousOperator: | ||
Exclude: | ||
- 'spec/lib/models/member_spec.rb' | ||
|
||
# Offense count: 2 | ||
# Configuration parameters: DebuggerMethods, DebuggerRequires. | ||
Lint/Debugger: | ||
Exclude: | ||
- '_site/bin/beta-rb' | ||
- 'bin/beta-rb' | ||
|
||
# Offense count: 2 | ||
# This cop supports safe autocorrection (--autocorrect). | ||
# Configuration parameters: AllowPercentLiteralArrayArgument. | ||
Lint/RedundantSplatExpansion: | ||
Exclude: | ||
- 'spec/lib/models/member_spec.rb' | ||
|
||
# Offense count: 2 | ||
Lint/ShadowingOuterLocalVariable: | ||
Exclude: | ||
- '_site/bin/htmlproofer' | ||
- 'bin/htmlproofer' | ||
|
||
# Offense count: 6 | ||
# Configuration parameters: AllowedMethods, AllowedPatterns, CountRepeatedAttributes. | ||
Metrics/AbcSize: | ||
Max: 108 | ||
|
||
# Offense count: 1 | ||
# Configuration parameters: CountComments, CountAsOne, AllowedMethods, AllowedPatterns, inherit_mode. | ||
# AllowedMethods: refine | ||
Metrics/BlockLength: | ||
Max: 42 | ||
|
||
# Offense count: 3 | ||
# Configuration parameters: AllowedMethods, AllowedPatterns. | ||
Metrics/CyclomaticComplexity: | ||
Max: 26 | ||
|
||
# Offense count: 7 | ||
# Configuration parameters: CountComments, CountAsOne, AllowedMethods, AllowedPatterns. | ||
Metrics/MethodLength: | ||
Max: 67 | ||
|
||
# Offense count: 3 | ||
# Configuration parameters: AllowedMethods, AllowedPatterns. | ||
Metrics/PerceivedComplexity: | ||
Max: 28 | ||
|
||
# Offense count: 2 | ||
# Configuration parameters: ForbiddenDelimiters. | ||
# ForbiddenDelimiters: (?i-mx:(^|\s)(EO[A-Z]{1}|END)(\s|$)) | ||
Naming/HeredocDelimiterNaming: | ||
Exclude: | ||
- '_site/bin/beta-rb' | ||
- 'bin/beta-rb' | ||
|
||
# Offense count: 45 | ||
# Configuration parameters: EnforcedStyle, AllowedIdentifiers, AllowedPatterns. | ||
# SupportedStyles: snake_case, camelCase | ||
Naming/VariableName: | ||
Exclude: | ||
- '_plugins/community.rb' | ||
- '_plugins/incubators.rb' | ||
- '_plugins/sponsors.rb' | ||
- '_plugins/startups.rb' | ||
|
||
# Offense count: 2 | ||
# This cop supports safe autocorrection (--autocorrect). | ||
RSpec/ContainExactly: | ||
Exclude: | ||
- 'spec/lib/models/member_spec.rb' | ||
|
||
# Offense count: 4 | ||
# Configuration parameters: Prefixes, AllowedPatterns. | ||
# Prefixes: when, with, without | ||
RSpec/ContextWording: | ||
Exclude: | ||
- 'spec/plugins/startup_spec.rb' | ||
- 'spec/spec_helper.rb' | ||
|
||
# Offense count: 4 | ||
# Configuration parameters: AllowedGroups. | ||
RSpec/NestedGroups: | ||
Max: 4 | ||
|
||
# Offense count: 4 | ||
# Configuration parameters: Include, CustomTransform, IgnoreMethods, IgnoreMetadata. | ||
# Include: **/*_spec.rb | ||
RSpec/SpecFilePathFormat: | ||
Exclude: | ||
- '**/spec/routing/**/*' | ||
- 'spec/lib/models/member_spec.rb' | ||
- 'spec/plugins/community_spec.rb' | ||
- 'spec/plugins/money_spec.rb' | ||
- 'spec/plugins/startup_spec.rb' | ||
|
||
# Offense count: 1 | ||
# This cop supports safe autocorrection (--autocorrect). | ||
Rake/Desc: | ||
Exclude: | ||
- 'Rakefile' | ||
|
||
# Offense count: 1 | ||
# This cop supports safe autocorrection (--autocorrect). | ||
# Configuration parameters: AllowOnConstant, AllowOnSelfClass. | ||
Style/CaseEquality: | ||
Exclude: | ||
- '_plugins/incubators.rb' | ||
|
||
# Offense count: 17 | ||
# Configuration parameters: AllowedConstants. | ||
Style/Documentation: | ||
Exclude: | ||
- 'spec/**/*' | ||
- 'test/**/*' | ||
- '_plugins/community.rb' | ||
- '_plugins/content_url_encoded_markdown.rb' | ||
- '_plugins/dates.rb' | ||
- '_plugins/images.rb' | ||
- '_plugins/incubators.rb' | ||
- '_plugins/national_impact.rb' | ||
- '_plugins/phases.rb' | ||
- '_plugins/sponsors.rb' | ||
- '_plugins/startup.rb' | ||
- '_plugins/startups.rb' | ||
- '_site/bin/beta-rb' | ||
- 'bin/beta-rb' | ||
- 'lib/htmlproofer/check_img_http.rb' | ||
- 'lib/models/member.rb' | ||
|
||
# Offense count: 1 | ||
Style/OpenStructUse: | ||
Exclude: | ||
- 'spec/plugins/community_spec.rb' | ||
|
||
# Offense count: 1 | ||
# Configuration parameters: AllowedMethods. | ||
# AllowedMethods: respond_to_missing? | ||
Style/OptionalBooleanParameter: | ||
Exclude: | ||
- '_plugins/startup.rb' | ||
|
||
# Offense count: 32 | ||
# This cop supports safe autocorrection (--autocorrect). | ||
# Configuration parameters: EnforcedStyle, ConsistentQuotesInMultiline. | ||
# SupportedStyles: single_quotes, double_quotes | ||
Style/StringLiterals: | ||
Exclude: | ||
- 'spec/lib/models/member_spec.rb' | ||
|
||
# Offense count: 4 | ||
# This cop supports safe autocorrection (--autocorrect). | ||
# Configuration parameters: WordRegex. | ||
# SupportedStyles: percent, brackets | ||
Style/WordArray: | ||
EnforcedStyle: percent | ||
MinSize: 4 | ||
|
||
# Offense count: 4 | ||
# This cop supports safe autocorrection (--autocorrect). | ||
# Configuration parameters: AllowHeredoc, AllowURI, URISchemes, IgnoreCopDirectives, AllowedPatterns. | ||
# URISchemes: http, https | ||
Layout/LineLength: | ||
Max: 150 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
task "assets:precompile" do | ||
exec("jekyll build") | ||
end | ||
# frozen_string_literal: true | ||
|
||
task 'assets:precompile' do | ||
exec('jekyll build') | ||
end |
Oops, something went wrong.