Skip to content

Commit

Permalink
style(lint): alphabetize props
Browse files Browse the repository at this point in the history
  • Loading branch information
gregswindle committed Feb 18, 2018
1 parent 1538ea0 commit d9574b2
Showing 1 changed file with 22 additions and 20 deletions.
42 changes: 22 additions & 20 deletions config/jsdoc.conf.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,19 @@
{
"tags": {
"allowUnknownTags": true,
"dictionaries": ["jsdoc"]
"docdash": {
"static": true,
"sort": true
},
"opts": {
"destination": "docs/api/",
"encoding": "utf8",
"private": false,
"recurse": true,
"template": "node_modules/docdash",
"package": "package.json"
},
"plugins": [
"plugins/markdown"
],
"source": {
"include": [
".github/CONTRIBUTING.md",
Expand All @@ -16,26 +27,17 @@
"exclude": ["tests"],
"excludePattern": "tests(^|\\/|\\\\)_"
},
"plugins": [
"plugins/markdown"
],
"sourceType": "module",
"tags": {
"allowUnknownTags": true,
"dictionaries": ["jsdoc"]
},
"templates": {
"cleverLinks": false,
"monospaceLinks": false,
"default": {
"outputSourceFiles": true
"outputSourceFiles": true,
"useLongnameInNav": true
}
},
"opts": {
"destination": "./docs/api/",
"encoding": "utf8",
"private": false,
"recurse": true,
"template": "./node_modules/docdash",
"package": "./package.json"
},
"docdash": {
"static": true,
"sort": true
}
}
}

0 comments on commit d9574b2

Please sign in to comment.