Skip to content

Commit

Permalink
v0.8.1 (#226)
Browse files Browse the repository at this point in the history
* Fix: canonical URL of 'vs AI' page & update dependencies (#217)

* update typescript-eslint and eslint-plugin-svelte

* update vitest to the latest (v1.6)

* update svelte(kit) and sass

* update `@types/*` lib

* update `@vercel/*` lib

* fix: canonical URL of vsAI page

* Chore: update dependencies (#218)

* update build tools

* update formatter (prettier)

* update type checker & eslint plugins

* update type libraries

* build(deps-dev): bump braces from 3.0.2 to 3.0.3 (#219)

Bumps [braces](https://github.com/micromatch/braces) from 3.0.2 to 3.0.3.
- [Changelog](https://github.com/micromatch/braces/blob/master/CHANGELOG.md)
- [Commits](micromatch/braces@3.0.2...3.0.3)

---
updated-dependencies:
- dependency-name: braces
  dependency-type: indirect
...

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* upgrade ESLint to v9 and typescript-eslint to v8 (#223)

* chore(svelte*): update svelteKit, adapter-vercel, svelte-check

* chore(eslint): upgrade ESLint to v9, typescript-eslint to v8

* chore(prettier*): update Prettier, prettier-plugin-svelte

* remove Dart `sass` (#224)

* removed `sass`: now, raw CSS supports nesting

* fix: npm audit

* fix: remove 'lightningcss' from style tag lang attribute

* replace `svelte-scrollto` with `svelte-scrolling` (#225)

* chore(typescript): update TypeScript to 5.6, `@types/node`, tslib, ...

* replace `svelte-scrollto` with `svelte-scrolling`

* chore(eslint): update deprecated type

* fill QuantumTTT test items

* v0.8.1

---------

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
  • Loading branch information
u-sho and dependabot[bot] authored Oct 13, 2024
1 parent d1f7c7f commit 2259e47
Show file tree
Hide file tree
Showing 23 changed files with 1,461 additions and 1,838 deletions.
8 changes: 4 additions & 4 deletions eslint.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import globals from 'globals';

const isProduction = () => process.env.NODE_ENV === 'production';

/** @type {import('@typescript-eslint/utils').TSESLint.FlatConfig.FileSpec[]}*/
/** @type {import('eslint').Linter.Config['ignores']} */
const ignores = [
'.svelte-kit/',
'.vercel/', // adapter-vercel output dir
Expand Down Expand Up @@ -73,7 +73,7 @@ const defaultConfig = tsEslint.config({
'@typescript-eslint/consistent-type-imports': 'error',
'@typescript-eslint/explicit-function-return-type': 'error',
'@typescript-eslint/explicit-member-accessibility': ['warn', { accessibility: 'no-public' }],
'@typescript-eslint/member-delimiter-style': 'warn',
// '@typescript-eslint/member-delimiter-style': 'warn',
'@typescript-eslint/method-signature-style': 'error',
camelcase: 'off',
'@typescript-eslint/naming-convention': [
Expand Down Expand Up @@ -173,7 +173,7 @@ const svelteConfig = tsEslint.config({
/** @type {import('eslint').Linter.RulesRecord} */
rules: {
'svelte/no-reactive-reassign': ['error', { props: true }],
'svelte/block-lang': ['error', { script: 'ts', style: 'scss' }],
'svelte/block-lang': ['error', { script: 'ts', style: ['css', null] }],
'svelte/no-inline-styles': 'off',
'svelte/no-unused-class-name': 'warn',
'svelte/no-useless-mustaches': 'warn',
Expand All @@ -187,7 +187,7 @@ const svelteConfig = tsEslint.config({
}
});

/** @type {import('eslint').Linter.FlatConfig}*/
/** @type {import('eslint').Linter.Config}*/
const svelteSvgConfig = {
files: ['**/*.svg.svelte'],
rules: { 'svelte/require-optimized-style-attribute': 'off' }
Expand Down
Loading

0 comments on commit 2259e47

Please sign in to comment.