[UI] Types Linting (#29702)

* adds linting for types to scripts and lint staged

* fixes issue with AdapterError type

* moves lint-staged setup out of package.json and into config file

* fixes ember data store service type

* fixes route params types

* fixes model types

* fixes general type errors

* fixes ts declaration errors in js files

* adds missing copyright headers

* fixes issue accessing capabilities model properties

* ignores AdapterError import type error

* more updates to AdapterError type

* adds comment to lint-staged config

* moves ember data store type to @ember-data namespace

* updates store import

* moves AdapterError type to @ember-data namespace

* turns ember-data import eslint rule back on
This commit is contained in:
Jordan Reimer
2025-02-25 16:08:51 -07:00
committed by GitHub
parent 74d02c8a43
commit c1754f5f97
81 changed files with 521 additions and 235 deletions

View File

@@ -10,7 +10,7 @@ import type Store from '@ember-data/store';
import type SecretMountPath from 'vault/services/secret-mount-path';
interface LdapLibraryRouteParams {
name: string;
name?: string;
}
export default class LdapLibraryRoute extends Route {