mirror of
https://github.com/hashicorp/vault.git
synced 2025-08-15 02:57:04 +02:00
28 lines
540 B
JavaScript
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,
|
|
},
|
|
},
|
|
],
|
|
};
|