Skip to content

Commit

Permalink
chore(release): 8.0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
alexander-akait committed Mar 24, 2020
1 parent 0d51543 commit 3410294
Show file tree
Hide file tree
Showing 13 changed files with 1,377 additions and 3,237 deletions.
26 changes: 13 additions & 13 deletions .eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ module.exports = {
extends: [
"plugin:itgalaxy/script",
"plugin:itgalaxy/esnext",
"plugin:itgalaxy/node"
"plugin:itgalaxy/node",
],
overrides: [
// Source
Expand All @@ -18,9 +18,9 @@ module.exports = {
// You should use babel if your node version is not supported ES syntax module, dynamic loading ES modules or other features
"node/no-unsupported-features/es-syntax": [
"error",
{ ignores: ["modules", "dynamicImport"] }
]
}
{ ignores: ["modules", "dynamicImport"] },
],
},
},

// Jest
Expand All @@ -32,20 +32,20 @@ module.exports = {
// Test can be written with using ES module syntax or CommonJS module syntax
"node/no-unsupported-features/es-syntax": [
"error",
{ ignores: ["modules", "dynamicImport"] }
{ ignores: ["modules", "dynamicImport"] },
],

// Allow to use `console` (example - `mocking`)
"no-console": "off"
}
"no-console": "off",
},
},

// Markdown
{
extends: [
// Documentation files can contain ECMA and CommonJS modules
"plugin:itgalaxy/dirty",
"plugin:itgalaxy/markdown"
"plugin:itgalaxy/markdown",
],
files: ["**/*.md"],
rules: {
Expand All @@ -57,10 +57,10 @@ module.exports = {
// Documentation files can contain ES module syntax and CommonJS module syntax
"node/no-unsupported-features/es-syntax": [
"error",
{ ignores: ["modules", "dynamicImport"] }
]
}
}
{ ignores: ["modules", "dynamicImport"] },
],
},
},
],
root: true
root: true,
};
2 changes: 1 addition & 1 deletion .remarkrc.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
"use strict";

module.exports = {
plugins: ["remark-preset-lint-itgalaxy"]
plugins: ["remark-preset-lint-itgalaxy"],
};
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@

All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.

## [8.0.2](https://github.com/itgalaxy/generate-robotstxt/compare/v8.0.1...v8.0.2) (2020-03-24)

### Chore

* update deps

## [8.0.1](https://github.com/itgalaxy/generate-robotstxt/compare/v8.0.0...v8.0.1) (2020-02-19)

### Chore
Expand Down
2 changes: 1 addition & 1 deletion __tests__/fixtures/robots-txt.config.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module.exports = {
host: "http://some-some-domain.com"
host: "http://some-some-domain.com",
};
Loading

0 comments on commit 3410294

Please sign in to comment.