Skip to content

Commit 6a8fddb

Browse files
committed
[ADD] init files
0 parents  commit 6a8fddb

File tree

9 files changed

+179
-0
lines changed

9 files changed

+179
-0
lines changed

.editorconfig

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
[**.js]
2+
indent_style = space
3+
indent_size = 4
4+
5+
[**.json]
6+
indent_style = space
7+
indent_size = 4

.eslintrc

Lines changed: 57 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,57 @@
1+
{
2+
"ecmaFeatures": {
3+
"globalReturn": true,
4+
"modules": true
5+
},
6+
"extends": [
7+
"eslint:recommended"
8+
],
9+
"env": {
10+
"browser": true,
11+
"es6": false,
12+
"node": true
13+
},
14+
"globals": {
15+
"describe": true,
16+
"beforeEach": true,
17+
"afterEach": true,
18+
"it": true,
19+
"expect": true,
20+
"spyOn": true
21+
},
22+
"plugins": [],
23+
"rules": {
24+
"semi": [2, "always"],
25+
"no-cond-assign": 1,
26+
"no-console": 0,
27+
"no-empty": 1,
28+
"no-extra-semi": 1,
29+
"no-undef": 1,
30+
"no-unreachable": 1,
31+
"no-unused-vars": [1, { "vars": "all", "args": "none" }],
32+
"no-use-before-define": 0,
33+
"no-redeclare": [1, { "builtinGlobals": true }],
34+
"no-mixed-spaces-and-tabs": [1, "smart-tabs"],
35+
"no-trailing-spaces": [1],
36+
"comma-dangle": [2, "never"],
37+
"block-scoped-var": 1,
38+
"strict": [1, "function"],
39+
"indent": 1,
40+
"camelcase": [2, { "properties": "always" }],
41+
"curly": 1,
42+
"quotes": [1, "single", "avoid-escape"],
43+
"eqeqeq": [1, "smart"],
44+
"newline-after-var": [1, "always"],
45+
"no-self-compare": 1,
46+
"brace-style": [1, "1tbs", { "allowSingleLine": true }],
47+
"eol-last": 0,
48+
"padded-blocks": [1, "never"],
49+
"keyword-spacing": 1,
50+
"space-before-function-paren": [0, "never"],
51+
"space-before-blocks": [1, "always"],
52+
"one-var": [1, "always"],
53+
"vars-on-top": 1,
54+
"yoda": [1, "never"],
55+
"new-cap": 1
56+
}
57+
}

.gitignore

Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
# Logs
2+
logs
3+
*.log
4+
npm-debug.log*
5+
6+
# Runtime data
7+
pids
8+
*.pid
9+
*.seed
10+
11+
# Directory for instrumented libs generated by jscoverage/JSCover
12+
lib-cov
13+
14+
# Coverage directory used by tools like istanbul
15+
coverage
16+
coverage.json
17+
18+
# nyc test coverage
19+
.nyc_output
20+
21+
# Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files)
22+
.grunt
23+
24+
# node-waf configuration
25+
.lock-wscript
26+
27+
# Compiled binary addons (http://nodejs.org/api/addons.html)
28+
build/Release
29+
30+
# Dependency directories
31+
node_modules
32+
jspm_packages
33+
34+
# Optional npm cache directory
35+
.npm
36+
37+
# Optional REPL history
38+
.node_repl_history
39+
40+
# ide files
41+
.idea
42+
43+
# auto env
44+
.env

.npmignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
test

.travis.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
language: node_js
2+
node_js:
3+
- "7"
4+
after_success:
5+
- npm run coverage
6+
- bash <(curl -s https://codecov.io/bash)

LICENSE

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
MIT License
2+
3+
Copyright (c) 2016 Js Labs
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

README.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
[![Build Status](https://travis-ci.org/labs-js/turbo-git-commit.svg?)](https://travis-ci.org/labs-js/turbo-git-commit)
2+
[![codecov](https://codecov.io/gh/labs-js/turbo-git-commit/branch/develop/graph/badge.svg)](https://codecov.io/gh/labs-js/turbo-git-commit)
3+
[![npm](https://img.shields.io/npm/v/turbo-git-commit.svg?style=flat)](https://www.npmjs.com/package/turbo-git-commit)
4+
[![Turbo Commit](https://img.shields.io/badge/Turbo_Commit-on-3DD1F2.svg)](https://github.com/labs-js/turbo-git/blob/master/CONVENTION.md)
5+
[![bitHound](https://www.bithound.io/github/labs-js/turbo-git-commit/badges/score.svg)](https://www.bithound.io/github/labs-js/turbo-git-commit)
6+
[![Code Climate](https://codeclimate.com/github/labs-js/turbo-commit/badges/gpa.svg)](https://codeclimate.com/github/labs-js/turbo-git-commit)
7+
8+
# turbo-git-commit
9+
10+
commit on git with any covention

index.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
#!/usr/bin/env node

package.json

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
{
2+
"name": "turbo-git-commit",
3+
"version": "0.0.0",
4+
"description": "commit on git with any covention",
5+
"main": "index.js",
6+
"scripts": {
7+
"test": "nyc jasmine-node --verbose --captureExceptions test"
8+
},
9+
"dependencies": {
10+
},
11+
"devDependencies": {
12+
"jasmine-node": "^1.14.5",
13+
"nyc": "^8.1.0"
14+
},
15+
"engines": {
16+
"node": "7"
17+
},
18+
"repository": {
19+
"type": "git",
20+
"url": "git+https://github.com/labs-js/turbo-git-commit.git"
21+
},
22+
"keywords": [
23+
"turbo-git",
24+
"git"
25+
],
26+
"author": "lab-js <https://github.com/labs-js>",
27+
"license": "MIT",
28+
"bugs": {
29+
"url": "https://github.com/labs-js/turbo-git-commit/issues"
30+
},
31+
"homepage": "https://github.com/labs-js/turbo-git-commit#readme"
32+
}

0 commit comments

Comments
 (0)
pFad - Phonifier reborn

Pfad - The Proxy pFad of © 2024 Garber Painting. All rights reserved.

Note: This service is not intended for secure transactions such as banking, social media, email, or purchasing. Use at your own risk. We assume no liability whatsoever for broken pages.


Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy