Skip to content

Commit

Permalink
initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
groupsky committed Nov 10, 2016
0 parents commit e969995
Show file tree
Hide file tree
Showing 5 changed files with 127 additions and 0 deletions.
11 changes: 11 additions & 0 deletions .editorconfig
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
44 changes: 44 additions & 0 deletions .gitignore
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
11 changes: 11 additions & 0 deletions README.md
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.
32 changes: 32 additions & 0 deletions config.json
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",
"парти",
"празненство",
"празнуване"
]
}
}
29 changes: 29 additions & 0 deletions package.json
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"
}
}

0 comments on commit e969995

Please sign in to comment.