Switch to per-line rule exceptions

This commit is contained in:
Mike Greiling 2018-09-21 11:23:26 -05:00
parent 1f177a385d
commit aef686d4a9
No known key found for this signature in database
GPG Key ID: 0303DF507FA67596
1 changed files with 4 additions and 2 deletions

View File

@ -1,6 +1,4 @@
<script>
/* eslint-disable vue/prop-name-casing */
import TimeTrackingHelpState from './help_state.vue';
import TimeTrackingCollapsedState from './collapsed_state.vue';
import TimeTrackingSpentOnlyPane from './spent_only_pane.vue';
@ -21,19 +19,23 @@ export default {
TimeTrackingHelpState,
},
props: {
// eslint-disable-next-line vue/prop-name-casing
time_estimate: {
type: Number,
required: true,
},
// eslint-disable-next-line vue/prop-name-casing
time_spent: {
type: Number,
required: true,
},
// eslint-disable-next-line vue/prop-name-casing
human_time_estimate: {
type: String,
required: false,
default: '',
},
// eslint-disable-next-line vue/prop-name-casing
human_time_spent: {
type: String,
required: false,