ilios/frontend

View on GitHub
packages/test-app/.template-lintrc.js

Summary

Maintainability
A
0 mins
Test Coverage
'use strict';

module.exports = {
  extends: 'recommended',
  rules: {
    'no-implicit-this': {
      //our helpers which do not take arguments have to be listed here
      allow: ['browser-timezone', 'noop'],
    },
    'no-bare-strings': true,
  },
};