Skip to content

Commit c192978

Browse files
committed
linting rules
1 parent bc98265 commit c192978

File tree

8 files changed

+24
-12
lines changed

8 files changed

+24
-12
lines changed

.github/CONTRIBUTING.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
# Contribution Guidelines
2+
<!-- markdownlint-disable required-headers -->
23

34
## Issues
45

.github/ISSUE_TEMPLATE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<!-- markdownlint-disable first-header-h1 no-multiple-blanks first-line-h1 -->
1+
<!-- markdownlint-disable first-header-h1 no-multiple-blanks first-line-h1 required-headers -->
22
#### Problem Description
33

44

bower.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "angular-web-notification",
3-
"version": "0.0.82",
3+
"version": "0.0.83",
44
"description": "AngularJS service for displaying web notifications.",
55
"authors": [
66
"Sagie Gur-Ari <sagiegurari@gmail.com>"

docs/CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
| Date | Version | Description |
22
| ----------- | ------- | ----------- |
3-
| 2016-07-04 | v0.0.82 | Maintenance |
3+
| 2016-07-06 | v0.0.83 | Maintenance |
44
| 2016-06-14 | v0.0.78 | Published via NPM (in addition to bower) |
55
| 2016-06-14 | v0.0.77 | Maintenance |
66
| 2016-03-08 | v0.0.65 | Added webNotification.permissionGranted attribute |

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "angular-web-notification",
3-
"version": "0.0.82",
3+
"version": "0.0.83",
44
"description": "AngularJS service for displaying web notifications.",
55
"author": {
66
"name": "Sagie Gur-Ari",

project/build/markdownlint.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ module.exports = function (grunt) {
66
markdownlint: {
77
full: {
88
options: {
9-
config: grunt.file.readJSON('project/config/.markdownrc')
9+
config: grunt.file.readJSON('project/config/.markdownlintrc')
1010
},
1111
src: [
1212
'README.md',

project/config/.markdownlintrc

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
{
2+
"default": true,
3+
"line-length": false,
4+
"blanks-around-headers": false,
5+
"no-duplicate-header": false,
6+
"no-inline-html": false,
7+
"required-headers": {
8+
"headers": [
9+
"*",
10+
"## Overview",
11+
"*",
12+
"## API Documentation",
13+
"## Contributing",
14+
"## Release History",
15+
"## License"
16+
]
17+
}
18+
}

project/config/.markdownrc

Lines changed: 0 additions & 7 deletions
This file was deleted.

0 commit comments

Comments
 (0)