Skip to content

Commit f3f24da

Browse files
API Extractor for Firestore
1 parent 8a081c3 commit f3f24da

40 files changed

+250
-1050
lines changed

package.json

+6-5
Original file line numberDiff line numberDiff line change
@@ -65,10 +65,11 @@
6565
"repo-scripts/*"
6666
],
6767
"devDependencies": {
68+
"@babel/core": "7.12.3",
69+
"@babel/plugin-transform-modules-commonjs": "7.12.1",
70+
"@babel/preset-env": "7.12.1",
6871
"@changesets/changelog-github": "0.2.7",
6972
"@changesets/cli": "2.11.2",
70-
"api-documenter-me": "0.1.0",
71-
"api-extractor-me": "0.1.0",
7273
"@types/chai": "4.2.14",
7374
"@types/chai-as-promised": "7.1.3",
7475
"@types/child-process-promise": "2.2.1",
@@ -86,10 +87,9 @@
8687
"@typescript-eslint/eslint-plugin": "4.8.1",
8788
"@typescript-eslint/eslint-plugin-tslint": "4.8.1",
8889
"@typescript-eslint/parser": "4.8.1",
90+
"api-documenter-me": "0.1.0",
91+
"api-extractor-me": "0.1.0",
8992
"babel-loader": "8.2.1",
90-
"@babel/core": "7.12.3",
91-
"@babel/preset-env": "7.12.1",
92-
"@babel/plugin-transform-modules-commonjs": "7.12.1",
9393
"chai": "4.2.0",
9494
"chai-as-promised": "7.1.1",
9595
"chalk": "4.1.0",
@@ -100,6 +100,7 @@
100100
"dependency-graph": "0.9.0",
101101
"eslint": "7.13.0",
102102
"eslint-plugin-import": "2.22.1",
103+
"eslint-plugin-unused-imports": "1.0.0",
103104
"express": "4.17.1",
104105
"find-free-port": "2.0.0",
105106
"firebase-functions": "3.11.0",

packages/firestore/.eslintrc.js

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

0 commit comments

Comments
 (0)