Skip to content

Commit

Permalink
chore(deps): update typescript-eslint monorepo to v6 (major) (#5065)
Browse files Browse the repository at this point in the history
* chore(deps): update typescript-eslint monorepo to v6

* FIx lint issues

---------

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Lukas Taegert-Atkinson <lukas.taegert-atkinson@tngtech.com>
  • Loading branch information
renovate[bot] and lukastaegert committed Jul 17, 2023
1 parent fdf48d0 commit ce6f058
Show file tree
Hide file tree
Showing 6 changed files with 471 additions and 164 deletions.
4 changes: 2 additions & 2 deletions .eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -93,8 +93,7 @@ module.exports = {
'error',
{
default: {
memberTypes: require('@typescript-eslint/eslint-plugin/dist/rules/member-ordering')
.defaultOrder,
memberTypes: [],
order: 'alphabetically'
}
}
Expand Down Expand Up @@ -142,6 +141,7 @@ module.exports = {
'unicorn/no-array-callback-reference': 'off',
'unicorn/no-array-reduce': 'off',
'unicorn/no-await-expression-member': 'off',
'unicorn/no-empty-file': 'off',
'unicorn/no-for-loop': 'off',
'unicorn/no-nested-ternary': 'off',
'unicorn/no-null': 'off',
Expand Down
1 change: 1 addition & 0 deletions docs/repl/components/ReplEditor.vue
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ const properties = defineProps<{
moduleName?: string;
readonly?: boolean;
}>();
// eslint-disable-next-line @typescript-eslint/no-unused-vars
const emit = defineEmits<{ (event: 'update:code', code: string): void }>();
let addWarningsEffect: AddWarnings;
let editor: EditorView;
Expand Down
1 change: 1 addition & 0 deletions docs/repl/components/ReplModule.vue
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ defineProps<{
module: Module;
showHeader: boolean;
}>();
// eslint-disable-next-line @typescript-eslint/no-unused-vars
const emit = defineEmits<{ (event: 'remove'): void }>();
const input = ref<HTMLInputElement | null>(null);
Expand Down
1 change: 1 addition & 0 deletions docs/repl/components/SelectOption.vue
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@

<script setup lang="ts">
defineProps<{ selected: unknown; values: unknown[] }>();
// eslint-disable-next-line @typescript-eslint/no-unused-vars
const emit = defineEmits<{ (event: 'select', selected: unknown): void }>();
</script>

Expand Down

0 comments on commit ce6f058

Please sign in to comment.