Skip to content

Commit

Permalink
Merge branch 'release-v0.14.0' into release
Browse files Browse the repository at this point in the history
  • Loading branch information
brizental committed May 19, 2021
2 parents 8efbe64 + 935473c commit 68521f5
Show file tree
Hide file tree
Showing 25 changed files with 1,907 additions and 111 deletions.
7 changes: 6 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,12 @@
# Unreleased changes

[Full changelog](https://github.com/mozilla/glean.js/compare/v0.13.0...main)
[Full changelog](https://github.com/mozilla/glean.js/compare/v0.14.0...main)

# v0.14.0 (2021-05-19)

[Full changelog](https://github.com/mozilla/glean.js/compare/v0.13.0...v0.14.0)

* [#313](https://github.com/mozilla/glean.js/pull/313): Send Glean.js version and platform information on X-Telemetry-Agent header instead of User-Agent header.
# v0.13.0 (2021-05-18)

[Full changelog](https://github.com/mozilla/glean.js/compare/v0.12.0...v0.13.0)
Expand Down
19 changes: 16 additions & 3 deletions glean/.eslintrc
Original file line number Diff line number Diff line change
Expand Up @@ -24,10 +24,15 @@
"no-multi-spaces": "error",
"jsdoc/no-types": "off",
"jsdoc/require-param-type": "off",
"jsdoc/require-returns-type": "off"
"jsdoc/require-returns-type": "off",
"import/no-named-as-default": "off",
"import/no-duplicates": "off",
"import/no-unresolved": "off"
},
"extends": [
"plugin:jsdoc/recommended"
"plugin:jsdoc/recommended",
"plugin:import/recommended",
"plugin:import/typescript"
],
"parser": "@typescript-eslint/parser",
"plugins": [
Expand Down Expand Up @@ -64,7 +69,8 @@
{
"files": "*.js",
"extends": [
"eslint:recommended"
"eslint:recommended",
"plugin:import/recommended",
]
},
{
Expand All @@ -74,9 +80,16 @@
"plugin:@typescript-eslint/recommended",
"plugin:@typescript-eslint/recommended-requiring-type-checking"
],
"parser": "@typescript-eslint/parser",
"parserOptions": {
"project": ["./tsconfig.json"]
}
},
{
"files": "src/**",
"rules": {
"import/extensions": ["error", "always", { "ignorePackages": true } ]
}
}
]
}
Loading

0 comments on commit 68521f5

Please sign in to comment.