vault/ui/.template-lintrc.js

28 lines
540 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',
},
overrides: [
{
files: ['**/*-test.js'],
rules: {
prettier: false,
},
},
],
};