Skip to content

Commit

Permalink
DEV: Enable and fix no-trailing-spaces lint
Browse files Browse the repository at this point in the history
  • Loading branch information
riking committed Mar 30, 2020
1 parent 29e7338 commit 1703270
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .template-lintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ module.exports = {
"no-positive-tabindex": false,
"no-quoteless-attributes": false,
"no-shadowed-elements": true,
"no-trailing-spaces": false,
"no-trailing-spaces": true,
"no-triple-curlies": true,
"no-unbound": true,
"no-unnecessary-concat": true,
Expand Down
3 changes: 1 addition & 2 deletions app/assets/javascripts/admin/templates/api-keys-index.hbs
Original file line number Diff line number Diff line change
Expand Up @@ -61,12 +61,11 @@
icon="times"
title="admin.api.revoke"}}
{{/if}}

</td>
</tr>
{{/each}}
</tbody>
</table>
{{else}}
<p>{{i18n "admin.api.none"}}</p>
{{/if}}
{{/if}}
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{{#d-modal-body
{{#d-modal-body
rawTitle=(
i18n "user.associated_accounts.confirm_modal_title"
i18n "user.associated_accounts.confirm_modal_title"
provider=(i18n (concat "login." model.provider_name ".name"))
)
}}
Expand Down

0 comments on commit 1703270

Please sign in to comment.