aboutsummaryrefslogtreecommitdiffstats
path: root/development/tools
diff options
context:
space:
mode:
authorMark Stacey <markjstacey@gmail.com>2019-07-12 23:42:36 +0800
committerGitHub <noreply@github.com>2019-07-12 23:42:36 +0800
commitea7ba5dd5fa34fd06689dfe72577670542d53412 (patch)
treebb6dc223f6f28b493e08b9091f6306117537a29e /development/tools
parent2eea38868081d5e1d87b70712253cceb750f2011 (diff)
downloadtangerine-wallet-browser-ea7ba5dd5fa34fd06689dfe72577670542d53412.tar.gz
tangerine-wallet-browser-ea7ba5dd5fa34fd06689dfe72577670542d53412.tar.zst
tangerine-wallet-browser-ea7ba5dd5fa34fd06689dfe72577670542d53412.zip
Remove unused AppVeyor configuration (#6840)
The AppVeyor configuration appears to be unused - this project is not connected to AppVeyor. After deleting the AppVeyor config, the JSDoc config was the last thing in the `development/tools` directory. That felt a little silly, so I moved it up to `development`.
Diffstat (limited to 'development/tools')
-rw-r--r--development/tools/.jsdoc.json25
-rw-r--r--development/tools/README.md15
-rw-r--r--development/tools/appveyor.txt21
3 files changed, 0 insertions, 61 deletions
diff --git a/development/tools/.jsdoc.json b/development/tools/.jsdoc.json
deleted file mode 100644
index fd90bf89f..000000000
--- a/development/tools/.jsdoc.json
+++ /dev/null
@@ -1,25 +0,0 @@
-{
- "tags": {
- "allowUnknownTags": false
- },
- "source": {
- "include": "app/scripts/",
- "includePattern": ".js$",
- "excludePattern": "(node_modules/|docs)"
- },
- "plugins": [
- "plugins/markdown"
- ],
- "opts": {
- "template": "node_modules/radgrad-jsdoc-template/",
- "encoding": "utf8",
- "destination": "docs/jsdocs",
- "recurse": true,
- "verbose": true
- },
- "templates": {
- "cleverLinks": false,
- "monospaceLinks": false
- }
-}
-
diff --git a/development/tools/README.md b/development/tools/README.md
deleted file mode 100644
index caef51fe6..000000000
--- a/development/tools/README.md
+++ /dev/null
@@ -1,15 +0,0 @@
-# Development Tools & Configurations
-
-This folder contains configuration files which are used by the the different
-development-tools, like e.g. JsDoc.
-
-
-## Appveyor
-
-
-https://www.appveyor.com/docs/build-configuration/#alternative-yaml-file-location
-
-Withtin the configuration, point to a weblocation of a txt config file:
-
-https://ci.appveyor.com/project/lazaridiscom/mm-vault/settings
-https://raw.githubusercontent.com/lazaridiscom/mm-vault/master/dev/tools/appveyor.txt
diff --git a/development/tools/appveyor.txt b/development/tools/appveyor.txt
deleted file mode 100644
index 4ed974079..000000000
--- a/development/tools/appveyor.txt
+++ /dev/null
@@ -1,21 +0,0 @@
-# Test against the latest version of this Node.js version
-environment:
- nodejs_version: "8"
-
-# Install scripts. (runs after repo cloning)
-install:
- # Get the latest stable version of Node.js or io.js
- - ps: Install-Product node $env:nodejs_version
- # install modules
- - npm install
-
-# Post-install test scripts.
-test_script:
- # Output useful info for debugging.
- - node --version
- - npm --version
- # run tests
- - npm test
-
-# Don't actually build.
-build: off