Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Simplify comments filters #434

Merged
merged 2 commits into from
Dec 5, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 1 addition & 9 deletions app/filters.js
Original file line number Diff line number Diff line change
@@ -1,10 +1,4 @@
module.exports = function (env) { /* eslint-disable-line func-names,no-unused-vars */
/**
* Instantiate object used to store the methods registered as a
* 'filter' (of the same name) within nunjucks. You can override
* gov.uk core filters by creating filter methods of the same name.
* @type {Object}
*/
const filters = {};

/* ------------------------------------------------------------------
Expand Down Expand Up @@ -38,8 +32,6 @@ module.exports = function (env) { /* eslint-disable-line func-names,no-unused-va

------------------------------------------------------------------ */

/* ------------------------------------------------------------------
keep the following line to return your filters to the app
------------------------------------------------------------------ */
/* keep the following line to return your filters to the app */
return filters;
};
Loading