Skip to content

Commit

Permalink
automatic project update
Browse files Browse the repository at this point in the history
  • Loading branch information
jdubois committed Mar 23, 2016
1 parent 231b2d9 commit ed41ad9
Show file tree
Hide file tree
Showing 1,822 changed files with 77,682 additions and 55,010 deletions.
6 changes: 6 additions & 0 deletions .eslintignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
# more info here - http://eslint.org/docs/user-guide/configuring.html#ignoring-files-and-directories

# node_modules ignored by default

# ignore bower_components
src/main/webapp/bower_components
29 changes: 29 additions & 0 deletions .eslintrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
// See: http://eslint.org/
// See: https://www.npmjs.com/package/eslint-plugin-angular
{
"extends": [
"eslint:recommended",
"angular"
],
"env": {
"node": true,
"browser": true
},
// severity for a rule should be one of the following: 0 = off, 1 = warning, 2 = error
"rules": {
// coding style
"wrap-iife": [2, "inside"],
"eqeqeq": 2,
"no-use-before-define": [2, "nofunc"],
"no-unused-vars": [2, {"vars": "local", "args": "none"}],
"no-multi-str": 2,
"no-irregular-whitespace": 2,
"semi": [2, "always"],
"indent": 2,

// os/git options
// we want to run on all OSes
"linebreak-style": 0,
"eol-last": 2
}
}
7 changes: 6 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
######################
# Project Specific
######################
/src/main/webapp/dist
/target/www/**

######################
# Node
Expand Down Expand Up @@ -126,3 +126,8 @@ Desktop.ini
# Maven Wrapper
######################
!.mvn/wrapper/maven-wrapper.jar

######################
# ESLint
######################
.eslintcache
2 changes: 1 addition & 1 deletion .mvn/wrapper/maven-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1 +1 @@
distributionUrl=https://repo1.maven.org/maven2/org/apache/maven/apache-maven/3.3.3/apache-maven-3.3.3-bin.zip
distributionUrl=https://repo1.maven.org/maven2/org/apache/maven/apache-maven/3.3.9/apache-maven-3.3.9-bin.zip
4 changes: 2 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ language: node_js
node_js:
- "0.12"
sudo: false
before_install: npm install -g grunt-cli
before_install: npm install -g gulp
install: npm install
before_script: grunt build
before_script: gulp build
notifications:
webhooks:
on_success: change # options: [always|never|change] default: always
Expand Down
15 changes: 10 additions & 5 deletions .yo-rc.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,15 +12,20 @@
"prodDatabaseType": "mysql",
"useCompass": false,
"buildTool": "maven",
"frontendBuilder": "grunt",
"javaVersion": "8",
"rememberMeKey": "5c37379956bd1242f5636c8cb322c2966ad81277",
"searchEngine": "no",
"enableTranslation": true,
"useSass": false,
"applicationType": "monolith",
"testFrameworks": [
"gatling"
"gatling",
"protractor"
],
"enableSocialSignIn": false
"languages": [
"en"
],
"serverPort": 8080,
"jhipsterVersion": "3.0.0",
"enableSocialSignIn": false,
"useSass": false
}
}
Loading

0 comments on commit ed41ad9

Please sign in to comment.