a5bef3ce72
* Allocation page linkfix * fix added to task page and computed prop moved to allocation model * Fallback query added to task group when specific volume isnt knowable * Delog * link text reflects alloc suffix * Helper instead of in-template conditionals * formatVolumeName unit test * Removing unused helper import
13 lines
278 B
JavaScript
13 lines
278 B
JavaScript
'use strict';
|
|
|
|
module.exports = {
|
|
extends: 'recommended',
|
|
rules: {
|
|
'link-href-attributes': 'off',
|
|
'no-action': 'off',
|
|
'no-invalid-interactive': 'off',
|
|
'no-inline-styles': 'off',
|
|
'no-curly-component-invocation': { allow: ['format-volume-name'] },
|
|
},
|
|
};
|