Skip to content

Commit fe9524c

Browse files
API Extractor support for Firestore Exp and Lite (#4095)
1 parent 9c61afe commit fe9524c

20 files changed

+1149
-976
lines changed

common/api-review/firestore-exp.api.md

+551
Large diffs are not rendered by default.

common/api-review/firestore-lite.api.md

+454
Large diffs are not rendered by default.

package.json

+1
Original file line numberDiff line numberDiff line change
@@ -75,6 +75,7 @@
7575
"@types/chai-as-promised": "7.1.3",
7676
"@types/child-process-promise": "2.2.1",
7777
"@types/clone": "2.1.0",
78+
"@types/eslint": "7.2.5",
7879
"@types/inquirer": "7.3.1",
7980
"@types/listr": "0.14.2",
8081
"@types/long": "4.0.1",

packages/firestore/.eslintrc.js

+9
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,15 @@ module.exports = {
4646
]
4747
},
4848
overrides: [
49+
{
50+
files: ['**/*.d.ts'],
51+
rules: {
52+
'camelcase': 'off',
53+
'import/no-duplicates': 'off',
54+
'@typescript-eslint/no-explicit-any': 'off',
55+
'@typescript-eslint/no-unused-vars': 'off'
56+
}
57+
},
4958
{
5059
files: ['**/*.test.ts', '**/test/**/*.ts'],
5160
rules: {

0 commit comments

Comments
 (0)