Skip to content

Commit 68521f5

Browse files
committed
Merge branch 'release-v0.14.0' into release
2 parents 8efbe64 + 935473c commit 68521f5

File tree

25 files changed

+1907
-111
lines changed

25 files changed

+1907
-111
lines changed

CHANGELOG.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,12 @@
11
# Unreleased changes
22

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

5+
# v0.14.0 (2021-05-19)
6+
7+
[Full changelog](https://github.com/mozilla/glean.js/compare/v0.13.0...v0.14.0)
8+
9+
* [#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.
510
# v0.13.0 (2021-05-18)
611

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

glean/.eslintrc

Lines changed: 16 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,10 +24,15 @@
2424
"no-multi-spaces": "error",
2525
"jsdoc/no-types": "off",
2626
"jsdoc/require-param-type": "off",
27-
"jsdoc/require-returns-type": "off"
27+
"jsdoc/require-returns-type": "off",
28+
"import/no-named-as-default": "off",
29+
"import/no-duplicates": "off",
30+
"import/no-unresolved": "off"
2831
},
2932
"extends": [
30-
"plugin:jsdoc/recommended"
33+
"plugin:jsdoc/recommended",
34+
"plugin:import/recommended",
35+
"plugin:import/typescript"
3136
],
3237
"parser": "@typescript-eslint/parser",
3338
"plugins": [
@@ -64,7 +69,8 @@
6469
{
6570
"files": "*.js",
6671
"extends": [
67-
"eslint:recommended"
72+
"eslint:recommended",
73+
"plugin:import/recommended",
6874
]
6975
},
7076
{
@@ -74,9 +80,16 @@
7480
"plugin:@typescript-eslint/recommended",
7581
"plugin:@typescript-eslint/recommended-requiring-type-checking"
7682
],
83+
"parser": "@typescript-eslint/parser",
7784
"parserOptions": {
7885
"project": ["./tsconfig.json"]
7986
}
87+
},
88+
{
89+
"files": "src/**",
90+
"rules": {
91+
"import/extensions": ["error", "always", { "ignorePackages": true } ]
92+
}
8093
}
8194
]
8295
}

0 commit comments

Comments
 (0)