format and linting

This commit is contained in:
Joel Wetzell
2026-07-09 13:55:47 -05:00
parent 26eb255256
commit d1a2110b41
4 changed files with 6 additions and 6 deletions
+2 -2
View File
@@ -5,8 +5,8 @@ updates:
schedule:
interval: 'weekly'
ignore:
- dependency-name: "@types*"
update-types: ["version-update:semver-major", "version-update:semver-minor"]
- dependency-name: '@types*'
update-types: ['version-update:semver-major', 'version-update:semver-minor']
- package-ecosystem: 'npm'
directory: 'apps/makeosc'
schedule:
+1 -1
View File
@@ -5,7 +5,7 @@ import eslintPluginPrettier from 'eslint-plugin-prettier/recommended';
/** @type {import('eslint').Linter.Config[]} */
export default [
{ ignores: ['apps/**/*', '**/*.test.js','eslint.config.mjs','**/dist/**/*'] },
{ ignores: ['apps/**/*', '**/*.test.js', 'eslint.config.mjs', '**/dist/**/*'] },
{ languageOptions: { globals: { ...globals.browser, ...globals.node } } },
pluginJs.configs.recommended,
...tseslint.configs.recommended,
+1 -1
View File
@@ -2372,7 +2372,7 @@
"devDependencies": {
"@types/node": "24.5.2",
"rimraf": "6.1.3",
"tsdown": "^0.22.3",
"tsdown": "0.22.3",
"typescript": "6.0.3"
}
}
+2 -2
View File
@@ -1,4 +1,4 @@
import { defineConfig } from 'tsdown'
import { defineConfig } from 'tsdown';
export default defineConfig({
entry: 'src/index.ts',
@@ -7,4 +7,4 @@ export default defineConfig({
esm: {},
cjs: {},
},
})
});