github.com/uchennaokeke444/nomad@v0.11.8/ui/.template-lintrc.js (about)

     1  'use strict';
     2  
     3  module.exports = {
     4    extends: 'recommended',
     5    rules: {
     6      // should definitely move to template only
     7      // glimmer components for this one
     8      'no-partial': false,
     9  
    10      // these need to be looked into, but
    11      // may be a bigger change
    12      'no-invalid-interactive': false,
    13      'simple-unless': false,
    14  
    15      'self-closing-void-elements': false,
    16      'no-unnecessary-concat': false,
    17      'no-quoteless-attributes': false,
    18      'no-nested-interactive': false,
    19  
    20      // Only used in list-pager, which can be replaced with
    21      // an angle-bracket component
    22      'no-attrs-in-components': false,
    23  
    24      // Used in practice with charts. Ideally this would be true
    25      // except for a whitelist of chart files.
    26      'no-inline-styles': false,
    27  
    28      // not sure we'll ever want these on,
    29      // would be nice but if prettier isn't doing
    30      // it for us, then not sure it's worth it
    31      'attribute-indentation': false,
    32      'block-indentation': false,
    33      quotes: false,
    34    },
    35  };