mirror of
https://github.com/hashicorp/vault.git
synced 2025-08-18 12:37:02 +02:00
* re-form yarn.lock, remove resolutions that are out of date. resolves: - mout VAULT-25595 VAULT-25603 - follow-redirects VAULT-25605 - terser VAULT-25594 VAULT-25593 - minimatch VAULT-25591 - loader-utils VAULT-25216 VAULT-25590 VAULT-25589 VAULT-25588 VAULT-25587 - decode-uri-component VAULT-25586 - qs VAULT-25585 - @xmldom/xmldom VAULT-25217 * VAULT-25596 pin async in resolutions due to testem > fireworm * VAULT-25606 pin nth-check due to ember-svg-jar * fix typescript errors after bump * update ember-template-lint to 6.0.0 * Add broken rules to template-eslintrc * pin ansi-html * remove ember-d3 in favor of specific d3 libraries we import * add changelog
33 lines
755 B
JavaScript
33 lines
755 B
JavaScript
/**
|
|
* Copyright (c) HashiCorp, Inc.
|
|
* SPDX-License-Identifier: BUSL-1.1
|
|
*/
|
|
|
|
module.exports = {
|
|
plugins: ['ember-template-lint-plugin-prettier'],
|
|
|
|
extends: ['recommended', 'ember-template-lint-plugin-prettier:recommended'],
|
|
|
|
rules: {
|
|
'no-action': 'off',
|
|
'no-implicit-this': {
|
|
allow: ['supported-auth-backends'],
|
|
},
|
|
'require-input-label': 'off',
|
|
'no-array-prototype-extensions': 'off',
|
|
// from bump to ember-template-lint@6.0.0
|
|
'no-builtin-form-components': 'off',
|
|
'no-at-ember-render-modifiers': 'off',
|
|
'no-unnecessary-curly-strings': 'off',
|
|
'no-unnecessary-curly-parens': 'off',
|
|
},
|
|
overrides: [
|
|
{
|
|
files: ['**/*-test.js'],
|
|
rules: {
|
|
prettier: false,
|
|
},
|
|
},
|
|
],
|
|
};
|