Skip to content

Commit a9f25b3

Browse files
authored
Merge pull request #463 from VariantEffect/release-2025.3.2
Release 2025.4.0
2 parents 0eb9fe4 + 8c8c2a1 commit a9f25b3

File tree

82 files changed

+8209
-5784
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

82 files changed

+8209
-5784
lines changed

.eslintrc.json

Lines changed: 0 additions & 14 deletions
This file was deleted.

.prettierignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
# Derived files
2+
/dist/

.prettierrc.ts

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
export default {
2+
arrowParens: 'always',
3+
backetLine: true,
4+
bracketSpacing: false,
5+
endOfLine: 'lf',
6+
printWidth: 120,
7+
quotProps: 'as-needed',
8+
semi: false,
9+
singleQuote: true,
10+
tabWidth: 2,
11+
trailingComma: 'none',
12+
useTabs: false,
13+
vueIndentScriptAndStyle: false
14+
}

eslint.config.mjs

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
import pluginVue from 'eslint-plugin-vue'
2+
import {defineConfigWithVueTs, vueTsConfigs} from '@vue/eslint-config-typescript'
3+
import skipFormatting from '@vue/eslint-config-prettier/skip-formatting'
4+
5+
export default defineConfigWithVueTs(
6+
pluginVue.configs['flat/recommended'],
7+
vueTsConfigs.recommended,
8+
skipFormatting,
9+
{
10+
rules: {
11+
'vue/attributes-order': [
12+
'error', {alphabetical: true}
13+
]
14+
}
15+
}
16+
)

0 commit comments

Comments
 (0)