Skip to content

Commit

Permalink
Official Pull Request
Browse files Browse the repository at this point in the history
  • Loading branch information
EasyAsABC123 committed Mar 1, 2017
1 parent 23564ea commit a0dcbb3
Show file tree
Hide file tree
Showing 3 changed files with 32 additions and 14 deletions.
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
The MIT License (MIT)
Copyright (c) 2016 Anthony Maki https://anthony.codes
Copyright (c) 2017 Justin Schuhmann

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:

Expand Down
17 changes: 7 additions & 10 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,24 +1,21 @@
# grunt-standard [![JavaScript Standard Style](https://img.shields.io/badge/code%20style-standard-brightgreen.svg)](http://standardjs.com/) [![GitHub release](https://img.shields.io/github/release/4cm4k1/grunt-standard.svg)](https://github.com/4cm4k1/grunt-standard/releases) [![npm (scoped)](https://img.shields.io/npm/v/@4cm4k1/grunt-standard.svg)](https://www.npmjs.com/package/@4cm4k1/grunt-standard) [![license](https://img.shields.io/github/license/4cm4k1/grunt-standard.svg)](https://github.com/4cm4k1/grunt-standard/blob/master/LICENSE) [![Twitter Follow](https://img.shields.io/twitter/follow/4cm4k1.svg?style=social&label=Follow)](https://twitter.com/4cm4k1) [![GitHub followers](https://img.shields.io/github/followers/4cm4k1.svg?style=social&label=Follow)](https://github.com/4cm4k1)
# grunt-standard [![JavaScript Standard Style](https://img.shields.io/badge/code%20style-standard-brightgreen.svg)](http://standardjs.com/) [![GitHub release](https://img.shields.io/github/release/EasyAsABC123/grunt-standard.svg)](https://github.com/EasyAsABC123/grunt-standard/releases) [![npm (scoped)](https://img.shields.io/npm/v/grunt-standard.svg)](https://www.npmjs.com/package/grunt-standard) [![license](https://img.shields.io/badge/license-MIT-blue.svg)](https://github.com/EasyAsABC123/grunt-standard/blob/master/LICENSE) [![GitHub issues](https://img.shields.io/github/issues/EasyAsABC123/grunt-standard.svg)](https://github.com/EasyAsABC123/grunt-standard/issues) [![GitHub followers](https://img.shields.io/github/followers/EasyAsABC123.svg?style=social&label=Follow)](https://github.com/EasyAsABC123)

> Grunt Plugin for [JavaScript Standard Style](https://github.com/feross/standard) Linting and Formatting
> Based on [@pdehaan/grunt-standard](https://github.com/pdehaan/grunt-standard)
> And on [@4cm4k1/grunt-standard](https://github.com/4cm4k1/grunt-standard)
> Dependencies up-to-date!
## Install

The following shell commands will install `@EasyAsABC123/grunt-standard` to your project's `package.json` in `devDependencies`.
The following shell commands will install `grunt-standard` to your project's `package.json` in `devDependencies`.

### npm
```shell
npm install @EasyAsABC123/grunt-standard --save-dev
npm install grunt-standard --save-dev
```

### Yarn
```shell
yarn add @EasyAsABC123/grunt-standard --dev
yarn add grunt-standard --dev
```

### Assumptions
Expand All @@ -28,7 +25,7 @@ yarn add @EasyAsABC123/grunt-standard --dev
- You are running the latest version of `node`.

```javascript
grunt.loadNpmTasks('@EasyAsABC123/grunt-standard')
grunt.loadNpmTasks('grunt-standard')
```

## Configure
Expand Down Expand Up @@ -56,7 +53,7 @@ grunt.initConfig({
#### options.ignore

- **Type:** `Array`
- **Default:** `[]]`
- **Default:** `[]`
- **Action:** Lint source files using [JavaScript Standard Style](https://github.com/feross/standard#standardlintfilesfiles-opts-callback).

#### options.cwd
Expand Down Expand Up @@ -112,4 +109,4 @@ grunt.initConfig({
})
```

## [Contribute](https://github.com/4cm4k1/grunt-standard/blob/master/CONTRIBUTE.md)
## [Contribute](CONTRIBUTE.md)
27 changes: 24 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,26 +1,47 @@
{
"name": "@EasyAsABC123/grunt-standard",
"name": "grunt-standard",
"version": "3.0.2",
"description": "Grunt Plugin for JavaScript Standard Style Linting and Formatting",
"main": "Gruntfile.js",
"repository": {
"url": "[email protected]:EasyAsABC123/grunt-standard.git",
"type": "git"
},
"author": "Justin Schuhmann <[email protected]>",
"author": {
"name": "Justin Schuhmann",
"email": "[email protected]"
},
"bugs": {
"url": "https://github.com/EasyAsABC123/grunt-standard/issues"
},
"license": "MIT",
"main": "Gruntfile.js",
"repository": {
"type": "git",
"url": "git://github.com/EasyAsABC123/grunt-standard.git"
},
"dependencies": {
"chalk": "^1.1.3",
"promise": "^7.1.1",
"standard": "^8.5.0",
"standard": "^9.0.0",
"text-table": "^0.2.0"
},
"devDependencies": {
"grunt": "^1.0.1"
},
"engines": {
"node": ">=0.10.0"
},
"homepage": "https://github.com/EasyAsABC123/grunt-standard",
"standard": {
"globals": [
"grunt"
]
},
"scripts": {
"outdated": "npm outdated --depth 0",
"postshrinkwrap": "grunt validate-shrinkwrap --force",
"shrinkwrap": "npm-shrinkwrap --dev",
"test": "standard"
}
}

0 comments on commit a0dcbb3

Please sign in to comment.