Skip to content

Commit 7e1bce5

Browse files
author
霸都丶傲天
authored
Merge branch 'master' into master
2 parents 9dcfe31 + 3e254f8 commit 7e1bce5

File tree

11 files changed

+40
-8
lines changed

11 files changed

+40
-8
lines changed

.github/main.workflow

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
workflow "test" {
22
resolves = ["CI Test Runner"]
3-
on = "push"
3+
on = "pull_request"
44
}
55

66
action "CI Test Runner" {

.rubocop.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
require: rubocop-performance
2+
13
AllCops:
24
TargetRubyVersion: 2.4
35
Exclude:

Gemfile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,6 @@ group :test do
55
gem "minitest"
66
gem "rake"
77
gem "rubocop"
8+
gem "rubocop-performance"
89
gem "safe_yaml"
910
end

Gemfile.lock

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,14 +8,12 @@ GEM
88
parallel (1.17.0)
99
parser (2.6.3.0)
1010
ast (~> 2.4.0)
11-
psych (3.1.0)
1211
rainbow (3.0.0)
1312
rake (12.3.2)
14-
rubocop (0.67.2)
13+
rubocop (0.68.1)
1514
jaro_winkler (~> 1.5.1)
1615
parallel (~> 1.10)
1716
parser (>= 2.5, != 2.5.1.1)
18-
psych (>= 3.1.0)
1917
rainbow (>= 2.2.2, < 4.0)
2018
ruby-progressbar (~> 1.7)
2119
unicode-display_width (>= 1.4.0, < 1.6)

collections/clean-code-linters/index.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,12 @@ items:
55
- jshint/jshint
66
- clutchski/coffeelint
77
- csscomb/csscomb.js
8-
- brigade/scss-lint
8+
- sds/scss-lint
99
- htmlhint/HTMLHint
1010
- CSSLint/csslint
1111
- PyCQA/pycodestyle
1212
- PyCQA/flake8
13-
- ambv/black
13+
- python/black
1414
- checkstyle/checkstyle
1515
- rubocop-hq/rubocop
1616
- oclint/oclint

test/topics_test_helper.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020

2121
def invalid_topic_message(topic)
2222
"'#{topic}' must be between 1-#{MAX_TOPIC_LENGTH} characters, start with a letter or number, " \
23-
"and may include hyphens"
23+
"include only lowercase letters, and may include hyphens"
2424
end
2525

2626
def valid_topic?(raw_topic)

topics/game-jam/index.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
---
2+
topic: game-jam
3+
aliases: gamejam
4+
display_name: Game Jam
5+
related: hackathon, ludum-dare, global-game-jam, game-off, js13k
6+
short_description: A game jam is a hackathon for creating video games.
7+
wikipedia_url: https://en.wikipedia.org/wiki/Game_jam
8+
---
9+
Game Jams challenge people to create games within a short period of time (usually over a weekend, a week, or a month), and with certain constraints like limited color palettes, file sizes, and themes.

topics/github/github.png

8.33 KB
Loading

topics/github/index.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
---
2+
created_by: Chris Wanstrath, PJ Hyett, Tom Preston-Werner, and Scott Chacon
3+
display_name: GitHub
4+
github_url: https://github.com/github
5+
logo: github.png
6+
released: April 10, 2008
7+
short_description: You’re lookin’ at it.
8+
topic: github
9+
related: git
10+
url: https://github.com
11+
wikipedia_url: https://en.wikipedia.org/wiki/GitHub
12+
---
13+
GitHub makes it easier for developers to be developers: to work together, to solve challenging problems, to create the world’s most important technologies.

topics/hackathon/index.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
---
2+
topic: hackathon
3+
aliases: hackfest, codefest, hackday
4+
display_name: Hackathon
5+
related: game-jam, hacktoberfest, game-off
6+
short_description: A hackathon is a gathering where developers collaboratively code in an extreme manner over a short period of time.
7+
wikipedia_url: https://en.wikipedia.org/wiki/Hackathon
8+
---
9+
A hackathon is a sprint-like event in which people collaborate intensively on software projects. The goal of a hackathon is to create usable software or hardware with the goal of creating a functioning product by the end of the event.

0 commit comments

Comments
 (0)