-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit e969995
Showing
5 changed files
with
127 additions
and
0 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,11 @@ | ||
root = true | ||
|
||
[*] | ||
charset = utf-8 | ||
end_of_line = lf | ||
insert_final_newline = true | ||
trim_trailing_whitespace = true | ||
|
||
[*.json] | ||
indent_style = space | ||
indent_size = 2 |
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,44 @@ | ||
# Logs | ||
logs | ||
*.log | ||
npm-debug.log* | ||
|
||
# Runtime data | ||
pids | ||
*.pid | ||
*.seed | ||
*.pid.lock | ||
|
||
# Directory for instrumented libs generated by jscoverage/JSCover | ||
lib-cov | ||
|
||
# Coverage directory used by tools like istanbul | ||
coverage | ||
|
||
# nyc test coverage | ||
.nyc_output | ||
|
||
# Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files) | ||
.grunt | ||
|
||
# node-waf configuration | ||
.lock-wscript | ||
|
||
# Compiled binary addons (http://nodejs.org/api/addons.html) | ||
build/Release | ||
|
||
# Dependency directories | ||
node_modules | ||
jspm_packages | ||
|
||
# Optional npm cache directory | ||
.npm | ||
|
||
# Optional eslint cache | ||
.eslintcache | ||
|
||
# Optional REPL history | ||
.node_repl_history | ||
|
||
# Output of 'npm pack' | ||
*.tgz |
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,11 @@ | ||
# trello-config | ||
|
||
Contains as a json the configuration that is used by various project | ||
to retrieve information from Hackafe's trello boards. | ||
|
||
## Specification | ||
|
||
The package contains a single file [config.json](config.json) formatted as | ||
JSON, with embedded comments following the pattern: `"-//field": "comment"`. | ||
This is to provide maximum compatibility with all the strict json parsers out | ||
there. |
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,32 @@ | ||
{ | ||
"-//boardId": "id of the Hackafe Events board", | ||
"boardId": "GHda069L", | ||
"-//blacklist": [ | ||
"regex expressions that blacklist labels based on name,", | ||
"all matching must be case insensitive and unicode enabled" | ||
], | ||
"blacklist": [ | ||
"вътреш(ен|н(а|о|и))", | ||
"private" | ||
], | ||
"-//categories": "list of regex expressions that match label name to category", | ||
"categories": { | ||
"-//course": "a course instance", | ||
"course": [ | ||
"course", | ||
"курс" | ||
], | ||
"-//meetup": "a gathering of people that share common interest", | ||
"meetup": [ | ||
"meetup", | ||
"сбирк(а|и)" | ||
], | ||
"-//party": "well, it's a party :)", | ||
"party": [ | ||
"party", | ||
"парти", | ||
"празненство", | ||
"празнуване" | ||
] | ||
} | ||
} |
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,29 @@ | ||
{ | ||
"name": "hackafe-trello-config", | ||
"description": "Hackafe Trello Configuration", | ||
"version": "0.0.1", | ||
"author": { | ||
"email": "[email protected]", | ||
"name": "Geno Roupsky", | ||
"url": "https://github.com/groupsky" | ||
}, | ||
"bugs": { | ||
"url": "https://github.com/hackafe/trello-config/issues" | ||
}, | ||
"engines": { | ||
"node": "*" | ||
}, | ||
"homepage": "http://trello-config.hackafe.org", | ||
"keywords": [ | ||
"hackafe" | ||
], | ||
"license": "ISC", | ||
"main": "config.json", | ||
"repository": { | ||
"type": "git", | ||
"url": "git://github.com/hackafe/trello-config.git" | ||
}, | ||
"scripts": { | ||
"test": "echo \"Error: no test specified\" && exit 1" | ||
} | ||
} |