Commit 5d9d406b authored by Pesah Arthur's avatar Pesah Arthur
Browse files

Add all files

parent 9a774bf7
Loading
Loading
Loading
Loading

.bowerrc

0 → 100644
+3 −0
Original line number Diff line number Diff line
{
  "directory": "bower_components"
}

.editorconfig

0 → 100644
+21 −0
Original line number Diff line number Diff line
# EditorConfig helps developers define and maintain consistent
# coding styles between different editors and IDEs
# editorconfig.org

root = true


[*]

# Change these settings to your own preference
indent_style = space
indent_size = 2

# We recommend you to keep these unchanged
end_of_line = lf
charset = utf-8
trim_trailing_whitespace = true
insert_final_newline = true

[*.md]
trim_trailing_whitespace = false

.gitattributes

0 → 100644
+1 −0
Original line number Diff line number Diff line
* text=auto
 No newline at end of file

.gitignore

0 → 100644
+5 −0
Original line number Diff line number Diff line
/node_modules
/dist
/.tmp
/.sass-cache
/bower_components

.jscsrc

0 → 100644
+6 −0
Original line number Diff line number Diff line
{
  "requireCamelCaseOrUpperCaseIdentifiers": true,
  "requireCapitalizedConstructors": true,
  "requireParenthesesAroundIIFE": true,
  "validateQuoteMarks": "'"
}
Loading