mirror of
https://github.com/hashicorp/vault.git
synced 2025-08-22 23:21:08 +02:00
* 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
15 lines
524 B
JavaScript
15 lines
524 B
JavaScript
/* eslint-env node */
|
|
/**
|
|
* Copyright (c) HashiCorp, Inc.
|
|
* SPDX-License-Identifier: BUSL-1.1
|
|
*/
|
|
|
|
// defining config here rather than in package.json to run tsc on all .ts files, not just the staged changes
|
|
// this is accomplished by using function syntax rather than string
|
|
|
|
module.exports = {
|
|
'*.{js,ts}': ['prettier --config .prettierrc.js --write', 'eslint --quiet', () => 'tsc --noEmit'],
|
|
'*.hbs': ['prettier --config .prettierrc.js --write', 'ember-template-lint --quiet'],
|
|
'*.scss': ['prettier --write'],
|
|
};
|