Skip to content

Commit

Permalink
Project sonore without any commit information
Browse files Browse the repository at this point in the history
  • Loading branch information
franzigeiger committed Jun 4, 2019
0 parents commit 182d7bd
Show file tree
Hide file tree
Showing 209 changed files with 63,367 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .browserslistrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
> 1%
last 2 versions
not ie <= 8
10 changes: 10 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
[*]
charset=utf-8
end_of_line=lf
insert_final_newline=true
indent_style=space
indent_size=2

[{.analysis_options,*.yml,*.yaml}]
indent_style=space
indent_size=2
38 changes: 38 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
.DS_Store
node_modules
/dist

/tests/e2e/videos/
/tests/e2e/screenshots/

# local env files
.env.local
.env.*.local

# Log files
npm-debug.log*
yarn-debug.log*
yarn-error.log*

# Editor directories and files
.idea/workspace.xml
.idea/modules.xml
.idea/sonore.iml
.idea/vcs.xml
.vscode
*.suo
*.ntvs*
*.njsproj
*.sln
*.sw*

# Cordova
/src-cordova/www/*
/src-cordova/platforms
/src-cordova/plugins
/public/cordova.js

# merge conflict files
*.orig

!/src-cordova/www/.gitkeep
125 changes: 125 additions & 0 deletions .idea/codeStyles/Project.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 5 additions & 0 deletions .idea/codeStyles/codeStyleConfig.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 4 additions & 0 deletions .idea/encodings.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

17 changes: 17 additions & 0 deletions .idea/fileTemplates/internal/Vue Single File Component.vue

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

63 changes: 63 additions & 0 deletions .idea/inspectionProfiles/Project_Default.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 4 additions & 0 deletions .idea/jsLinters/tslint.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 6 additions & 0 deletions .idea/misc.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

14 changes: 14 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
dist: trusty
language: node_js
cache:
directories:
- "$HOME/.npm"
- "$HOME/.cache"
node_js:
- "stable"
install:
- npm ci
script:
- npm run lint-travis
- npm run test:unit
# - npm run test:e2e-travis
Loading

0 comments on commit 182d7bd

Please sign in to comment.