Skip to content

Commit

Permalink
Updated master template list - Fixes #237
Browse files Browse the repository at this point in the history
WIP

WIP

Updated pages

Adding directory walker

WIP

Added API endpoints

Add gitignore for Cake

Updated master template list

Updated master template list

Remove comment, since it will be added automatically by webservice

Updated master template list

Create ApacheCordova.gitignore

Updated master template list

Update Intellij.patch

Remove tail whitespace

Updated master template list

Remove trailing spaces

Remove trailing spaces to be diffabel with most editors

Updated master template list

Minor reformatting of docs

Fixed landing page dropdown

Feature parity with node version

Linted project

Fixed misspellings

Updated file init API

Added Travis CI file

Updated to swift 3.0.1

Add linter

Removed swiftlint

Fixed permissions on swift lint

Removed os

Updated travis file with OS and language

Updated Procfile

Reverted Procfile

Updated travis file

Updated travis script

Updated package

Updated eval script

Add force dependency update

Switched to lint

Added basic tests

Moved swift lint back to working dir

Fixed typo

Fixed unit tests

Removed swiftlint

Testing vapor/vapor build

Reverted travis files

Renamed server target and test target

Updated test target imports

Use default vapor ci script

Remove redundnat build commands

Use vapor code cov

100% test coverage

Fixed linux test main file names

Adding debug statements

Fixed test case file name

Moved all files to uppercase Public

Move all files from public to Public to fix case-sensitivity issues (#268)

Fix readme headers

Fixed last H2

Updated master template list

Remove print strings

Updated procfile

Fixed Procfile

Updated data directory

Updated vapor buildpack and procfile

Updated gitignore

Added Swift Version

Test with differnet path serach function

Set to development env

Testing with subpathsOfDirectory

added debugPrint

Add debugging for file type attributes

Fixed negation

Test with traversed relative links

Trying to simplify file paths

Testing symlink code

More debug statements

Print FileAttributeKey.type key

Try negation

Debugging

Debugging

Redo file name extractor

Debugging more

Code cleanup

Testing travis deploy

Fixed test case

Fix email and skip cleanup

CI testing

Updated to swift 3.0.2

Update readme

Updated skip cleanup

Try deploy from heroku

Update ci script

Teset full deploy

Updated master template list

Fixes #271

Add fzf-gitignore and helm-gitignore to extension list (#272)

Ignore test files (#274)

* Ignore test files

* From custom to classes

Update data/gitignore (#275)

Remove non-existing plugin-dirs (#276)

Both `/internal/` as well as `/engine/Shopware/Plugins/Commercial/` don't exist in a default Shopware-installation at all.

Add support for QML language (#278)

Updated master template list

Updated build test
  • Loading branch information
Joe Blau committed Jan 28, 2017
1 parent 7b9e8ef commit da86c70
Show file tree
Hide file tree
Showing 1,695 changed files with 2,509 additions and 2,473 deletions.
4 changes: 2 additions & 2 deletions .bowerrc
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{
"directory": "public/components",
"directory": "Public/components",
"json": "bower.json"
}
}
13 changes: 0 additions & 13 deletions .editorconfig

This file was deleted.

78 changes: 4 additions & 74 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,75 +1,5 @@
# Created by http://www.gitignore.io

### Intellij ###
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm

## Directory-based project format
.idea/
/*.iml
# if you remove the above rule, at least ignore user-specific stuff:
# .idea/workspace.xml
# .idea/tasks.xml
# .idea/dictionaries
# and these sensitive or high-churn files:
# .idea/dataSources.ids
# .idea/dataSources.xml
# .idea/sqlDataSources.xml
# .idea/dynamic.xml
# and, if using gradle::
# .idea/gradle.xml
# .idea/libraries

## File-based project format
*.ipr
*.iws

## Additional for IntelliJ
out/

# generated by mpeltonen/sbt-idea plugin
.idea_modules/

# generated by JIRA plugin
atlassian-ide-plugin.xml

# generated by Crashlytics plugin (for Android Studio and Intellij)
com_crashlytics_export_strings.xml


### Linux ###
*~

# KDE directory preferences
.directory


### Node ###
# Logs
logs
*.log

# Runtime data
pids
*.pid
*.seed

# Directory for instrumented libs generated by jscoverage/JSCover
lib-cov

# Coverage directory used by tools like istanbul
coverage

# Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files)
.grunt
Packages
.build

# Compiled binary addons (http://nodejs.org/api/addons.html)
build/Release

# Dependency directory
# Commenting this out is preferred by some people, see
# https://www.npmjs.org/doc/misc/npm-faq.html#should-i-check-my-node_modules-folder-into-git-
node_modules

# Users Environment Variables
.lock-wscript
xcuserdata
*.xcodeproj
Config/secrets
3 changes: 0 additions & 3 deletions .jshintignore

This file was deleted.

155 changes: 0 additions & 155 deletions .jshintrc

This file was deleted.

5 changes: 0 additions & 5 deletions .nodemonignore

This file was deleted.

5 changes: 0 additions & 5 deletions .npmignore

This file was deleted.

1 change: 1 addition & 0 deletions .swift-version
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
3.0.2
52 changes: 52 additions & 0 deletions .swiftlint.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,52 @@
disabled_rules: # rule identifiers to exclude from running
- colon
- comma
- control_statement
- line_length
opt_in_rules: # some rules are only opt-in
- empty_count
- missing_docs
# Find all the available rules by running:
# swiftlint rules
included: # paths to include during linting. `--path` is ignored if present.
- Sources/App
excluded: # paths to ignore during linting. Takes precedence over `included`.

# configurable rules can be customized from this configuration file
# binary rules can set their severity level
force_cast: warning # implicitly
force_try:
severity: warning # explicitly
# rules that have both warning and error levels, can set just the warning level
# implicitly
# line_length: 110
# they can set both implicitly with an array
type_body_length:
- 300 # warning
- 400 # error
# or they can set both explicitly
file_length:
warning: 500
error: 1200
# naming rules can set warnings/errors for min_length and max_length
# additionally they can set excluded names
type_name:
min_length: 4 # only warning
max_length: # warning and error
warning: 40
error: 50
excluded: iPhone # excluded via string
variable_name:
min_length: # only min_length
error: 3 # only error
excluded: # excluded via string array
- id
- URL
- GlobalAPIKey
reporter: "xcode" # reporter type (xcode, json, csv, checkstyle, junit)
cyclomatic_complexity:
warning: 30
error: 50
function_parameter_count:
warning: 7
error: 11
33 changes: 21 additions & 12 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,12 +1,21 @@
language: node_js

node_js:
- '5'

before_script:
- npm install -g bower
- npm install -g grunt
- npm install -g grunt-cli

env:
- CI=true
os:
- linux
- osx
language: generic
sudo: required
dist: trusty
osx_image: xcode8.2
script:
- eval "$(curl -sL https://swift.vapor.sh/ci)"
- eval "$(curl -sL https://swift.vapor.sh/codecov)"
notifications:
email:
recipients:
- [email protected]
deploy:
provider: heroku

This comment has been minimized.

Copy link
@Amish8264424762

Amish8264424762 Nov 29, 2023

This provider of this file is Heroku

strategy: git
app: gitignoreio-stage-swift
on: vapor-swift-migration
api_key:
secure: In+pMxDoWCe5h2oCi20pCpLGLdiqvP1SuWqTkFm1G1LPtZ7LIcIbxlCgiWGlWqaPnwC5n0VkpOEkOSnFZz2E7ffKQuzonvEBUPl5EFLzfJxeHUDWaaMGWfadx2kR21cx/wTyEZseSqeBm77wbKJKU7D6RqRbCS+MxaavQhaJnKk=
30 changes: 0 additions & 30 deletions .vscode/launch.json

This file was deleted.

Loading

2 comments on commit da86c70

@Amish8264424762
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

git commit -m "changes made"

@Amish8264424762
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

bhhhhjj

Please sign in to comment.