Browse Source

Update

master
yuriy0803 3 years ago
parent
commit
5b4f0e10e2
  1. 4
      www/.bowerrc
  2. 34
      www/.editorconfig
  3. 9
      www/.ember-cli
  4. 19
      www/.gitignore
  5. 33
      www/.jshintrc
  6. 23
      www/.travis.yml
  7. 3
      www/.watchmanconfig

4
www/.bowerrc

@ -1,4 +0,0 @@
{
"directory": "bower_components",
"analytics": false
}

34
www/.editorconfig

@ -1,34 +0,0 @@
# EditorConfig helps developers define and maintain consistent
# coding styles between different editors and IDEs
# editorconfig.org
root = true
[*]
end_of_line = lf
charset = utf-8
trim_trailing_whitespace = true
insert_final_newline = true
indent_style = space
indent_size = 2
[*.js]
indent_style = space
indent_size = 2
[*.hbs]
insert_final_newline = false
indent_style = space
indent_size = 2
[*.css]
indent_style = space
indent_size = 2
[*.html]
indent_style = space
indent_size = 2
[*.{diff,md}]
trim_trailing_whitespace = false

9
www/.ember-cli

@ -1,9 +0,0 @@
{
/**
Ember CLI sends analytics information by default. The data is completely
anonymous, but there are times when you might want to disable this behavior.
Setting `disableAnalytics` to true will prevent any data from being sent.
*/
"disableAnalytics": false
}

19
www/.gitignore vendored

@ -1,19 +0,0 @@
# See http://help.github.com/ignore-files/ for more about ignoring files.
# compiled output
/dist
/tmp
# dependencies
/node_modules
/bower_components
/chart/node_modules
# misc
/.sass-cache
/connect.lock
/coverage/*
/libpeerconnection.log
npm-debug.log
testem.log
/config/environment.js

33
www/.jshintrc

@ -1,33 +0,0 @@
{
"predef": [
"document",
"window",
"-Promise",
"moment"
],
"browser": true,
"boss": true,
"curly": true,
"debug": false,
"devel": true,
"eqeqeq": true,
"evil": true,
"forin": false,
"immed": false,
"laxbreak": false,
"newcap": true,
"noarg": true,
"noempty": false,
"nonew": false,
"nomen": false,
"onevar": false,
"plusplus": false,
"regexp": false,
"undef": true,
"sub": true,
"strict": false,
"white": false,
"eqnull": true,
"esnext": true,
"unused": true
}

23
www/.travis.yml

@ -1,23 +0,0 @@
---
language: node_js
node_js:
- "0.12"
sudo: false
cache:
directories:
- node_modules
before_install:
- export PATH=/usr/local/phantomjs-2.0.0/bin:$PATH
- "npm config set spin false"
- "npm install -g npm@^2"
install:
- npm install -g bower
- npm install
- bower install
script:
- npm test

3
www/.watchmanconfig

@ -1,3 +0,0 @@
{
"ignore_dirs": ["tmp"]
}
Loading…
Cancel
Save