Skip to content

Commit

Permalink
Implement remark config and ignore pattern file
Browse files Browse the repository at this point in the history
Created the main remark (1) configuration file and initially set up the
`remark-preset-lint-arcticicestudio` (2) preset.
Also added the `.remarkignore` file with to define ignore pattern.

References:
  (1) remark.js.org
  (2) remarkjs/remark-lint
  (3) arcticicestudio/remark-preset-lint-arcticicestudio

Epic: GH-33
Depends on GH-47 GH-49
GH-36
  • Loading branch information
arcticicestudio committed Jun 22, 2019
1 parent 0b72c39 commit 4190205
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 0 deletions.
8 changes: 8 additions & 0 deletions .remarkignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# Copyright (C) 2017-present Arctic Ice Studio <[email protected]>
# Copyright (C) 2017-present Sven Greb <[email protected]>
#
# Project: snowsaw
# Repository: https://github.com/arcticicestudio/snowsaw
# License: MIT

**/node_modules/*
18 changes: 18 additions & 0 deletions .remarkrc.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
/*
* Copyright (C) 2017-present Arctic Ice Studio <[email protected]>
* Copyright (C) 2017-present Sven Greb <[email protected]>
*
* Project: snowsaw
* Repository: https://github.com/arcticicestudio/snowsaw
* License: MIT
*/

/**
* @file The remark-lint configuration.
* @author Arctic Ice Studio <[email protected]>
* @author Sven Greb <[email protected]>
*/

module.exports = {
plugins: ["remark-preset-lint-arcticicestudio"]
};

0 comments on commit 4190205

Please sign in to comment.