Skip to content

Commit

Permalink
Docs: Revamp documentation for v2 (#149)
Browse files Browse the repository at this point in the history
  • Loading branch information
btmills committed Apr 12, 2020
1 parent b221391 commit 51e48c6
Show file tree
Hide file tree
Showing 3 changed files with 234 additions and 94 deletions.
27 changes: 19 additions & 8 deletions .eslintrc.js
Expand Up @@ -22,16 +22,27 @@ module.exports = {
PACKAGE_NAME
],

"overrides": [
{
"files": ["*.md"],
"processor": "markdown/markdown"
}
],

"env": {
"node": true
},

"extends": "eslint"
"extends": "eslint",

"overrides": [
{
"files": ["**/*.md"],
"processor": "markdown/markdown"
},
{
"files": ["**/*.md/*.js"],
"parserOptions": {
"ecmaFeatures": {
"impliedStrict": true
}
},
"rules": {
"lines-around-comment": "off"
}
}
]
};

0 comments on commit 51e48c6

Please sign in to comment.