Skip to content

Commit 7a575cb

Browse files
committed
chore: fix trailing final new line issue
1 parent d8a0cae commit 7a575cb

132 files changed

Lines changed: 133 additions & 133 deletions

File tree

Some content is hidden

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

.editorconfig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ root = true
66
# Unix-style newlines with a newline ending every file
77
[*]
88
end_of_line = lf
9-
insert_final_newline = true
9+
insert_final_newline = false
1010

1111
[*.{js,ts,json}]
1212
charset = utf-8

.vscode/settings.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@
55
"source.organizeImports": "always",
66
"source.formatDocument": "always"
77
}
8-
}
8+
}

biome.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737
"lineWidth": 130,
3838
"lineEnding": "lf",
3939
"formatWithErrors": false,
40-
"trailingNewline": true
40+
"trailingNewline": false
4141
},
4242
"javascript": {
4343
"formatter": {
@@ -104,4 +104,4 @@
104104
}
105105
}
106106
}
107-
}
107+
}

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
"build": "turbo run build",
1515
"test": "turbo run test",
1616
"test:ci": "turbo run test --filter=!shadow-objects-e2e",
17-
"lint": "biome check .",
17+
"lint": "biome check . --max-diagnostics 1000",
1818
"lint:ci": "biome check . --reporter=summary",
1919
"lint:fix": "biome check . --write",
2020
"format": "biome format . --write",
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
{
22
"extends": ["../../.eslintrc.json"],
33
"ignorePatterns": ["!**/*"]
4-
}
4+
}

packages/shadow-objects-e2e/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,4 +22,4 @@
2222
"typescript": "catalog:",
2323
"vite": "catalog:"
2424
}
25-
}
25+
}

packages/shadow-objects-e2e/playwright.config.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,4 +74,4 @@ export default defineConfig({
7474
url: 'http://localhost:4174',
7575
reuseExistingServer: !process.env.CI,
7676
},
77-
});
77+
});

packages/shadow-objects-e2e/public/mod-hello.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,4 +19,4 @@ export const shadowObjects = {
1919
initialize(...args) {
2020
console.log('initialize shadowObjects from', import.meta.url, {args});
2121
},
22-
};
22+
};

packages/shadow-objects-e2e/src/bundle.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,4 @@ console.log('hello, hello');
88
// import {ShadowWorker} from '@spearwolf/shadow-objects/bundle.js';
99
// import BundleWorker from './bundle.worker.js?worker';
1010

11-
// ShadowWorker.createWorker = () => new BundleWorker();
11+
// ShadowWorker.createWorker = () => new BundleWorker();
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
import '@spearwolf/shadow-objects/shadow-objects.worker.js';
22

3-
console.log('hejsan!');
3+
console.log('hejsan!');

0 commit comments

Comments
 (0)