Skip to content

Commit eaac9fd

Browse files
author
Gene Shkolnik
committed
Initial commit
0 parents  commit eaac9fd

File tree

7,307 files changed

+274593
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

7,307 files changed

+274593
-0
lines changed

.dialyzer.ignore-warnings

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
Unknown function 'Elixir.Util.Position.Atom':'__impl__'/1
2+
Unknown function 'Elixir.Util.Position.BitString':'__impl__'/1
3+
Unknown function 'Elixir.Util.Position.Float':'__impl__'/1
4+
Unknown function 'Elixir.Util.Position.Function':'__impl__'/1
5+
Unknown function 'Elixir.Util.Position.Integer':'__impl__'/1
6+
Unknown function 'Elixir.Util.Position.List':'__impl__'/1
7+
Unknown function 'Elixir.Util.Position.PID':'__impl__'/1
8+
Unknown function 'Elixir.Util.Position.Port':'__impl__'/1
9+
Unknown function 'Elixir.Util.Position.Reference':'__impl__'/1
10+
Unknown function 'Elixir.Algolia.Object.Atom':'__impl__'/1
11+
Unknown function 'Elixir.Algolia.Object.BitString':'__impl__'/1
12+
Unknown function 'Elixir.Algolia.Object.Float':'__impl__'/1
13+
Unknown function 'Elixir.Algolia.Object.Function':'__impl__'/1
14+
Unknown function 'Elixir.Algolia.Object.Integer':'__impl__'/1
15+
Unknown function 'Elixir.Algolia.Object.List':'__impl__'/1
16+
Unknown function 'Elixir.Algolia.Object.Map':'__impl__'/1
17+
Unknown function 'Elixir.Algolia.Object.PID':'__impl__'/1
18+
Unknown function 'Elixir.Algolia.Object.Port':'__impl__'/1
19+
Unknown function 'Elixir.Algolia.Object.Reference':'__impl__'/1
20+
Unknown function 'Elixir.Algolia.Object.Tuple':'__impl__'/1
21+
Unknown function 'Elixir.ServerSentEventStage':start_link/1
22+
Unknown type 'Elixir.ServerSentEventStage.Event':t/0

.dockerignore

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
*~
2+
Mnesia*
3+
_build
4+
deps
5+
node_modules
6+
test
7+
cache
8+
rel
9+
!rel/vm.args
10+
!rel/config.exs
11+
erl_crash.dump
12+
build.sh
13+
deploy.sh
14+
15+
# Elastic Beanstalk Files
16+
.elasticbeanstalk/*
17+
.git
18+
.gitignore
19+
.dockerignore
20+
.semaphore-cache
21+
apps/site/node_modules
22+
apps/site/vendor/nodep-date-input-polyfill/node_modules
23+
apps/site/test
24+
apps/site/assets/test
25+
apps/site/assets/node_modules
26+
aws
27+
site-build.zip

.elasticbeanstalk/config.yml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
branch-defaults:
2+
master:
3+
environment: dotcom-dev-green
4+
group_suffix: null
5+
deploy:
6+
artifact: site-build.zip
7+
global:
8+
application_name: dotcom
9+
default_ec2_keyname: dotcom-dev
10+
default_platform: Docker 1.9.1
11+
default_region: us-east-1
12+
profile: eb-cli
13+
sc: git

.formatter.exs

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
[
2+
inputs: [
3+
"mix.exs",
4+
"apps/*/mix.exs",
5+
"apps/*/{config,lib,test}/**/*.{ex,exs}",
6+
"config/**/*.{ex,exs}",
7+
"rel/**/*.{ex,exs}"
8+
]
9+
]

.github/PULL_REQUEST_TEMPLATE.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
#### Summary of changes
2+
**Asana Ticket:** [TICKET_NAME](TICKET_LINK)
3+
4+
[Please include a brief description of what was changed]
5+
6+
#### Checklist
7+
- [ ] New functions have typespecs, changed functions' typespecs were updated
8+
- [ ] New modules and functions have documentation, changed modules/functions' documentation was updated
9+
- [ ] Tests were added or updated to cover changes
10+
- [ ] All tests pass on localhost:
11+
- [ ] `npm test` (includes mix test, JS tests, and Backstop)
12+
- [ ] `npm run dialyzer`
13+
- [ ] `pronto run -c origin/master`
14+
15+
<br>
16+
Assigned to: @NAME

.gitignore

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
/_build
2+
/cover
3+
/**/cover
4+
*.coverdata
5+
/deps
6+
erl_crash.dump
7+
*.ez
8+
.DS_Store
9+
.ruby-version
10+
.vscode
11+
.elixir_ls
12+
13+
# Elastic Beanstalk Files
14+
.elasticbeanstalk/*
15+
!.elasticbeanstalk/config.yml
16+
/site-build.zip
17+
/apps/site/test/backstop_data/bitmaps_test
18+
/apps/site/test/backstop_data/html_report
19+
ts-build
20+
stats.json
21+
npm-debug.log
22+
/apps/news/posts.zip
23+
/bin
24+
excoveralls.json
25+
doc/
26+
coverage
27+
/rel/app.js

.pronto.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
all:
2+
exclude:
3+
- "apps/site/mappings/*"
4+
- "apps/site/__files/*"
5+
- "apps/site/test/backstop_data/**/*"
6+
- "apps/site/vendor/**/*"

.scss-lint.yml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
scss_files: 'apps/site/assets/css/**/*.scss'
2+
3+
exclude: 'apps/site/assets/css/_google-translate.scss'
4+
5+
linters:
6+
SelectorFormat:
7+
enabled: true
8+
convention: hyphenated_BEM
9+
# Some properties aren't in the default whitelist for scss-lint, for more details, see this link:
10+
# https://github.com/brigade/scss-lint/blob/b5d624ddab68668badb85513f512f3688cbf8cb6/lib/scss_lint/linter/README.md#propertyspelling
11+
PropertySpelling:
12+
extra_properties: font-variant-numeric

.tool-versions

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
erlang 21.2
2+
elixir 1.8.1-otp-21
3+
nodejs 8.15.0
4+
ruby 2.4.1

AUTHORS

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
Adamo Maisano <[email protected]>
2+
Alex Sghia-Hughes <[email protected]>
3+
Beaudry Kock <[email protected]>
4+
Bill Peregoy <[email protected]>
5+
Catherine Daigle <[email protected]>
6+
Dave Maltzan <[email protected]>
7+
Gabe Durazo <[email protected]>
8+
Gene Shkolnik <[email protected]>
9+
John Kohler <[email protected]>
10+
Josh Fabian <[email protected]>
11+
Kate Hedgpeth <[email protected]>
12+
Lev Boyarsky <[email protected]>
13+
Matthew Shanley <[email protected]>
14+
Meaghan Harty <[email protected]>
15+
Paul Swartz <[email protected]>
16+
Peter Fogg <[email protected]>
17+
Ryan Mahoney <[email protected]>
18+
19+
Stephanie Viccari <[email protected]>
20+
Stuart Terrett <[email protected]>
21+
Thomas Liu <[email protected]>
22+
Zach fletch <[email protected]>

0 commit comments

Comments
 (0)