mirror of
https://github.com/hashicorp/vault.git
synced 2025-11-06 19:31:09 +01:00
* license: update headers to IBM Corp. * `make proto` * update offset because source file changed Signed-off-by: Ryan Cragun <me@ryan.ec> Co-authored-by: Ryan Cragun <me@ryan.ec>
30 lines
681 B
JavaScript
30 lines
681 B
JavaScript
/**
|
|
* Copyright IBM Corp. 2016, 2025
|
|
* 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',
|
|
'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,
|
|
},
|
|
},
|
|
],
|
|
};
|