mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2026-08-12 04:50:18 +00:00
Disable linting rules to move submodule declarations into index.d.ts
This commit is contained in:
Vendored
-2
@@ -1,2 +0,0 @@
|
||||
import DS from './index';
|
||||
export default DS.Adapter;
|
||||
-12
@@ -1,12 +0,0 @@
|
||||
import DS from '../index';
|
||||
export const AdapterError: typeof DS.AdapterError;
|
||||
export const InvalidError: typeof DS.InvalidError;
|
||||
export const UnauthorizedError: typeof DS.UnauthorizedError;
|
||||
export const ForbiddenError: typeof DS.ForbiddenError;
|
||||
export const NotFoundError: typeof DS.NotFoundError;
|
||||
export const ConflictError: typeof DS.ConflictError;
|
||||
export const ServerError: typeof DS.ServerError;
|
||||
export const TimeoutError: typeof DS.TimeoutError;
|
||||
export const AbortError: typeof DS.AbortError;
|
||||
export const errorsHashToArray: typeof DS.errorsHashToArray;
|
||||
export const errorsArrayToHash: typeof DS.errorsArrayToHash;
|
||||
-2
@@ -1,2 +0,0 @@
|
||||
import DS from '../index';
|
||||
export default DS.JSONAPIAdapter;
|
||||
Vendored
-2
@@ -1,2 +0,0 @@
|
||||
import DS from '../index';
|
||||
export default DS.RESTAdapter;
|
||||
Vendored
-2
@@ -1,2 +0,0 @@
|
||||
import DS from './index';
|
||||
export default DS.attr;
|
||||
Vendored
+2132
-1670
File diff suppressed because it is too large
Load Diff
Vendored
-2
@@ -1,2 +0,0 @@
|
||||
import DS from './index';
|
||||
export default DS.Model;
|
||||
Vendored
-3
@@ -1,3 +0,0 @@
|
||||
import DS from './index';
|
||||
export const hasMany: typeof DS.hasMany;
|
||||
export const belongsTo: typeof DS.belongsTo;
|
||||
Vendored
-2
@@ -1,2 +0,0 @@
|
||||
import DS from './index';
|
||||
export default DS.Serializer;
|
||||
@@ -1,2 +0,0 @@
|
||||
import DS from '../index';
|
||||
export default DS.EmbeddedRecordsMixin;
|
||||
-2
@@ -1,2 +0,0 @@
|
||||
import DS from '../index';
|
||||
export default DS.JSONAPISerializer;
|
||||
-2
@@ -1,2 +0,0 @@
|
||||
import DS from '../index';
|
||||
export default DS.JSONSerializer;
|
||||
-2
@@ -1,2 +0,0 @@
|
||||
import DS from '../index';
|
||||
export default DS.RESTSerializer;
|
||||
Vendored
-2
@@ -1,2 +0,0 @@
|
||||
import DS from './index';
|
||||
export default DS.Store;
|
||||
Vendored
-2
@@ -1,2 +0,0 @@
|
||||
import DS from './index';
|
||||
export default DS.Transform;
|
||||
-2
@@ -1,2 +0,0 @@
|
||||
import DS from '../index';
|
||||
export default DS.BooleanTransform;
|
||||
-2
@@ -1,2 +0,0 @@
|
||||
import DS from '../index';
|
||||
export default DS.DateTransform;
|
||||
-2
@@ -1,2 +0,0 @@
|
||||
import DS from '../index';
|
||||
export default DS.NumberTransform;
|
||||
-2
@@ -1,2 +0,0 @@
|
||||
import DS from '../index';
|
||||
export default DS.StringTransform;
|
||||
-2
@@ -1,2 +0,0 @@
|
||||
import DS from '../index';
|
||||
export default DS.Transform;
|
||||
@@ -15,28 +15,8 @@
|
||||
"noEmit": true,
|
||||
"forceConsistentCasingInFileNames": true
|
||||
},
|
||||
|
||||
"files": [
|
||||
"adapters/errors.d.ts",
|
||||
"adapters/json-api.d.ts",
|
||||
"adapters/rest.d.ts",
|
||||
"serializers/embedded-records-mixin.d.ts",
|
||||
"serializers/json-api.d.ts",
|
||||
"serializers/json.d.ts",
|
||||
"serializers/rest.d.ts",
|
||||
"transforms/boolean.d.ts",
|
||||
"transforms/date.d.ts",
|
||||
"transforms/number.d.ts",
|
||||
"transforms/string.d.ts",
|
||||
"transforms/transform.d.ts",
|
||||
"adapter.d.ts",
|
||||
"attr.d.ts",
|
||||
"index.d.ts",
|
||||
"model.d.ts",
|
||||
"relationships.d.ts",
|
||||
"serializer.d.ts",
|
||||
"store.d.ts",
|
||||
"transform.d.ts",
|
||||
"test/lib/assert.ts",
|
||||
"test/model.ts",
|
||||
"test/module-api.ts",
|
||||
|
||||
@@ -11,6 +11,8 @@
|
||||
"only-arrow-functions": false,
|
||||
"no-empty-interface": false,
|
||||
"prefer-const": false,
|
||||
"no-unnecessary-generics": false
|
||||
"no-unnecessary-generics": false,
|
||||
"no-declare-current-package": false,
|
||||
"no-self-import": false
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user