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

chore(deps): update typescript-eslint monorepo to v6 (major) #5065

Merged
merged 2 commits into from
Jul 17, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
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