github.com/hernad/nomad@v1.6.112/ui/.template-lintrc.js (about)

     1  /**
     2   * Copyright (c) HashiCorp, Inc.
     3   * SPDX-License-Identifier: MPL-2.0
     4   */
     5  
     6  'use strict';
     7  
     8  module.exports = {
     9    extends: 'recommended',
    10    rules: {
    11      'link-href-attributes': 'off',
    12      'no-action': 'off',
    13      'no-invalid-interactive': 'off',
    14      'no-inline-styles': 'off',
    15      'no-curly-component-invocation': {
    16        allow: ['format-volume-name', 'keyboard-commands'],
    17      },
    18      'no-implicit-this': { allow: ['keyboard-commands'] },
    19    },
    20    ignore: [
    21      'app/components/breadcrumbs/*', // using {{(modifier)}} syntax
    22    ],
    23  };