forked from jfoclpf/form-for-parking-violation
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
27 changed files
with
1,236 additions
and
1,348 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
# appveyor file | ||
# http://www.appveyor.com/docs/appveyor-yml | ||
|
||
max_jobs: 1 | ||
|
||
shallow_clone: true | ||
|
||
init: | ||
- git config --global core.autocrlf true | ||
|
||
image: | ||
- Visual Studio 2017 | ||
|
||
environment: | ||
nodejs_version: "4" | ||
matrix: | ||
- PLATFORM: windows-10-store | ||
|
||
install: | ||
- npm cache clean -f | ||
- node --version | ||
- npm install -g cordova-paramedic@https://github.com/apache/cordova-paramedic.git | ||
- npm install -g cordova | ||
|
||
build: off | ||
|
||
test_script: | ||
- cordova-paramedic --config pr\%PLATFORM% --plugin . --justBuild |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
{ | ||
"disallowMixedSpacesAndTabs": true, | ||
"disallowTrailingWhitespace": true, | ||
"validateIndentation": 4, | ||
"requireLineFeedAtFileEnd": true, | ||
|
||
"disallowSpaceAfterPrefixUnaryOperators": true, | ||
"disallowSpaceBeforePostfixUnaryOperators": true, | ||
"requireSpaceAfterLineComment": true, | ||
"requireCapitalizedConstructors": true, | ||
|
||
"disallowSpacesInNamedFunctionExpression": { | ||
"beforeOpeningRoundBrace": true | ||
}, | ||
|
||
"requireSpaceAfterKeywords": [ | ||
"if", | ||
"else", | ||
"for", | ||
"while", | ||
"do" | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
{ | ||
"browser": true | ||
, "devel": true | ||
, "bitwise": true | ||
, "undef": true | ||
, "trailing": true | ||
, "quotmark": false | ||
, "indent": 4 | ||
, "unused": "vars" | ||
, "latedef": "nofunc" | ||
, "globals": { | ||
"module": false, | ||
"exports": false, | ||
"require": false, | ||
"FileTransferError": true, | ||
"FileUploadResult": true, | ||
"resolveLocalFileSystemURI": false | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
#If ignorance is bliss, then somebody knock the smile off my face | ||
|
||
*.csproj.user | ||
*.suo | ||
*.cache | ||
Thumbs.db | ||
*.DS_Store | ||
|
||
*.bak | ||
*.cache | ||
*.log | ||
*.swp | ||
*.user | ||
|
||
node_modules |
Oops, something went wrong.