Skip to content

Commit 3410294

Browse files
chore(release): 8.0.2
1 parent 0d51543 commit 3410294

File tree

13 files changed

+1377
-3237
lines changed

13 files changed

+1377
-3237
lines changed

.eslintrc.js

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ module.exports = {
44
extends: [
55
"plugin:itgalaxy/script",
66
"plugin:itgalaxy/esnext",
7-
"plugin:itgalaxy/node"
7+
"plugin:itgalaxy/node",
88
],
99
overrides: [
1010
// Source
@@ -18,9 +18,9 @@ module.exports = {
1818
// You should use babel if your node version is not supported ES syntax module, dynamic loading ES modules or other features
1919
"node/no-unsupported-features/es-syntax": [
2020
"error",
21-
{ ignores: ["modules", "dynamicImport"] }
22-
]
23-
}
21+
{ ignores: ["modules", "dynamicImport"] },
22+
],
23+
},
2424
},
2525

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

3838
// Allow to use `console` (example - `mocking`)
39-
"no-console": "off"
40-
}
39+
"no-console": "off",
40+
},
4141
},
4242

4343
// Markdown
4444
{
4545
extends: [
4646
// Documentation files can contain ECMA and CommonJS modules
4747
"plugin:itgalaxy/dirty",
48-
"plugin:itgalaxy/markdown"
48+
"plugin:itgalaxy/markdown",
4949
],
5050
files: ["**/*.md"],
5151
rules: {
@@ -57,10 +57,10 @@ module.exports = {
5757
// Documentation files can contain ES module syntax and CommonJS module syntax
5858
"node/no-unsupported-features/es-syntax": [
5959
"error",
60-
{ ignores: ["modules", "dynamicImport"] }
61-
]
62-
}
63-
}
60+
{ ignores: ["modules", "dynamicImport"] },
61+
],
62+
},
63+
},
6464
],
65-
root: true
65+
root: true,
6666
};

.remarkrc.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
"use strict";
22

33
module.exports = {
4-
plugins: ["remark-preset-lint-itgalaxy"]
4+
plugins: ["remark-preset-lint-itgalaxy"],
55
};

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,12 @@
22

33
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.
44

5+
## [8.0.2](https://github.com/itgalaxy/generate-robotstxt/compare/v8.0.1...v8.0.2) (2020-03-24)
6+
7+
### Chore
8+
9+
* update deps
10+
511
## [8.0.1](https://github.com/itgalaxy/generate-robotstxt/compare/v8.0.0...v8.0.1) (2020-02-19)
612

713
### Chore
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
module.exports = {
2-
host: "http://some-some-domain.com"
2+
host: "http://some-some-domain.com",
33
};

0 commit comments

Comments
 (0)