Skip to content
This repository has been archived by the owner on May 10, 2021. It is now read-only.

Commit

Permalink
Initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
ai committed Mar 3, 2017
0 parents commit 90ae1f4
Show file tree
Hide file tree
Showing 11 changed files with 1,645 additions and 0 deletions.
9 changes: 9 additions & 0 deletions .editorconfig
@@ -0,0 +1,9 @@
root = true

[*]
indent_style = space
indent_size = 2
end_of_line = lf
charset = utf-8
trim_trailing_whitespace = true
insert_final_newline = true
6 changes: 6 additions & 0 deletions .gitignore
@@ -0,0 +1,6 @@
.DS_Store
*~

node_modules/
npm-debug.log
yarn-error.log
12 changes: 12 additions & 0 deletions .npmignore
@@ -0,0 +1,12 @@
.gitignore
.npmignore
.editorconfig

node_modules/
npm-debug.log
yarn-error.log
yarn.lock

.travis.yml

.yaspellerrc
6 changes: 6 additions & 0 deletions .travis.yml
@@ -0,0 +1,6 @@
language: node_js
cache: yarn
node_js:
- stable
- "6"
- "4"
9 changes: 9 additions & 0 deletions .yaspellerrc
@@ -0,0 +1,9 @@
{
"lang": "en",
"ignoreCapitalization": true,
"dictionary": [
"Versioning",
"Yaspeller",
"CI"
]
}
2 changes: 2 additions & 0 deletions CHANGELOG.md
@@ -0,0 +1,2 @@
# Change Log
This project adheres to [Semantic Versioning](http://semver.org/).
20 changes: 20 additions & 0 deletions LICENSE
@@ -0,0 +1,20 @@
The MIT License (MIT)

Copyright 2017 Andrey Sitnik <andrey@sitnik.ru>

Permission is hereby granted, free of charge, to any person obtaining a copy of
this software and associated documentation files (the "Software"), to deal in
the Software without restriction, including without limitation the rights to
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
the Software, and to permit persons to whom the Software is furnished to do so,
subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
1 change: 1 addition & 0 deletions README.md
@@ -0,0 +1 @@
# Yaspeller for CI
5 changes: 5 additions & 0 deletions bin.js
@@ -0,0 +1,5 @@
#!/usr/bin/env node

'use strict'

require('yaspeller/lib/cli')
41 changes: 41 additions & 0 deletions package.json
@@ -0,0 +1,41 @@
{
"name": "yaspeller-ci",
"version": "0.1.0",
"description": "",
"keywords": [
],
"author": "Andrey Sitnik <andrey@sitnik.ru>",
"license": "MIT",
"repository": "ai/yaspeller-ci",
"bin": "./bin.js",
"dependencies": {
"yaspeller": "^3.0.0"
},
"devDependencies": {
"eslint": "^3.16.1",
"eslint-config-logux": "7.0.0",
"eslint-config-standard": "^7.0.0",
"eslint-plugin-jest": "^19.0.1",
"eslint-plugin-node": "^4.1.0",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-standard": "^2.1.1",
"lint-staged": "^3.3.1",
"pre-commit": "^1.2.2"
},
"scripts": {
"lint-staged": "lint-staged",
"spellcheck": "./bin.js *.md",
"lint": "eslint *.js",
"test": "yarn run lint && yarn run spellcheck"
},
"eslintConfig": {
"extends": "eslint-config-logux/node4"
},
"lint-staged": {
"*.md": "./bin.js",
"*.js": "eslint"
},
"pre-commit": [
"lint-staged"
]
}

0 comments on commit 90ae1f4

Please sign in to comment.