aboutsummaryrefslogtreecommitdiffstats
path: root/cmd/ethtest
diff options
context:
space:
mode:
authorFelix Lange <fjl@twurst.com>2016-10-30 18:02:34 +0800
committerFelix Lange <fjl@twurst.com>2016-10-30 18:02:34 +0800
commit87670a7ac1558ab2d2bab20144a380c6319e222b (patch)
tree16b88889ee2e3bff443608f767455f2b7c01a1dc /cmd/ethtest
parent63d293cdbe14cf00045b888522ef36d21c907c26 (diff)
downloaddexon-87670a7ac1558ab2d2bab20144a380c6319e222b.tar
dexon-87670a7ac1558ab2d2bab20144a380c6319e222b.tar.gz
dexon-87670a7ac1558ab2d2bab20144a380c6319e222b.tar.bz2
dexon-87670a7ac1558ab2d2bab20144a380c6319e222b.tar.lz
dexon-87670a7ac1558ab2d2bab20144a380c6319e222b.tar.xz
dexon-87670a7ac1558ab2d2bab20144a380c6319e222b.tar.zst
dexon-87670a7ac1558ab2d2bab20144a380c6319e222b.zip
all: remove weird files
Diffstat (limited to 'cmd/ethtest')
-rw-r--r--cmd/ethtest/.bowerrc5
-rw-r--r--cmd/ethtest/.editorconfig12
-rw-r--r--cmd/ethtest/.gitignore18
-rw-r--r--cmd/ethtest/.jshintrc50
-rw-r--r--cmd/ethtest/.npmignore9
-rw-r--r--cmd/ethtest/.travis.yml11
6 files changed, 0 insertions, 105 deletions
diff --git a/cmd/ethtest/.bowerrc b/cmd/ethtest/.bowerrc
deleted file mode 100644
index c3a8813e8..000000000
--- a/cmd/ethtest/.bowerrc
+++ /dev/null
@@ -1,5 +0,0 @@
-{
- "directory": "example/js/",
- "cwd": "./",
- "analytics": false
-} \ No newline at end of file
diff --git a/cmd/ethtest/.editorconfig b/cmd/ethtest/.editorconfig
deleted file mode 100644
index 60a2751d3..000000000
--- a/cmd/ethtest/.editorconfig
+++ /dev/null
@@ -1,12 +0,0 @@
-root = true
-
-[*]
-indent_style = space
-indent_size = 4
-end_of_line = lf
-charset = utf-8
-trim_trailing_whitespace = true
-insert_final_newline = true
-
-[*.md]
-trim_trailing_whitespace = false \ No newline at end of file
diff --git a/cmd/ethtest/.gitignore b/cmd/ethtest/.gitignore
deleted file mode 100644
index 399b6dc88..000000000
--- a/cmd/ethtest/.gitignore
+++ /dev/null
@@ -1,18 +0,0 @@
-# See http://help.github.com/ignore-files/ for more about ignoring files.
-#
-# If you find yourself ignoring temporary files generated by your text editor
-# or operating system, you probably want to add a global ignore instead:
-# git config --global core.excludesfile ~/.gitignore_global
-
-*.swp
-/tmp
-*/**/*un~
-*un~
-.DS_Store
-*/**/.DS_Store
-ethereum/ethereum
-ethereal/ethereal
-example/js
-node_modules
-bower_components
-npm-debug.log
diff --git a/cmd/ethtest/.jshintrc b/cmd/ethtest/.jshintrc
deleted file mode 100644
index c0ec5f89d..000000000
--- a/cmd/ethtest/.jshintrc
+++ /dev/null
@@ -1,50 +0,0 @@
-{
- "predef": [
- "console",
- "require",
- "equal",
- "test",
- "testBoth",
- "testWithDefault",
- "raises",
- "deepEqual",
- "start",
- "stop",
- "ok",
- "strictEqual",
- "module",
- "expect",
- "reject",
- "impl"
- ],
-
- "esnext": true,
- "proto": true,
- "node" : true,
- "browser" : true,
- "browserify" : true,
-
- "boss" : true,
- "curly": false,
- "debug": true,
- "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,
- "shadow": true,
- "eqnull": true
-} \ No newline at end of file
diff --git a/cmd/ethtest/.npmignore b/cmd/ethtest/.npmignore
deleted file mode 100644
index 5bbffe4fd..000000000
--- a/cmd/ethtest/.npmignore
+++ /dev/null
@@ -1,9 +0,0 @@
-example/js
-node_modules
-test
-.gitignore
-.editorconfig
-.travis.yml
-.npmignore
-component.json
-testling.html \ No newline at end of file
diff --git a/cmd/ethtest/.travis.yml b/cmd/ethtest/.travis.yml
deleted file mode 100644
index fafacbd5a..000000000
--- a/cmd/ethtest/.travis.yml
+++ /dev/null
@@ -1,11 +0,0 @@
-language: node_js
-node_js:
- - "0.11"
- - "0.10"
-before_script:
- - npm install
- - npm install jshint
-script:
- - "jshint *.js lib"
-after_script:
- - npm run-script gulp