Skip to content

Commit a2fa412

Browse files
committed
fix(end-of-file-fixer rule):
1 parent 18f97c7 commit a2fa412

File tree

10 files changed

+11
-10
lines changed

10 files changed

+11
-10
lines changed

.pre-commit-config.yaml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,9 @@ repos:
4646
- id: trailing-whitespace
4747
types: [python]
4848
- id: end-of-file-fixer
49-
types: [python]
49+
types: [file]
50+
files: \.(py|js|vue)$
51+
5052

5153
- repo: https://github.com/executablebooks/mdformat
5254
rev: 0.7.17

ui/.eslintrc.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,4 +22,4 @@ module.exports = {
2222
// or
2323
// 'no-unused-vars': 'warn', // Change the rule to a warning
2424
},
25-
};
25+
};

ui/public/base.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -229,4 +229,4 @@ function _getFailureRateScore(failureRate) {
229229
else if (strengthRate >= 60) return 'D';
230230
else return 'E'; // For strengthRate less than 60
231231
}
232-
export { LLM_SPECS, LLM_CONFIGS, has_image, has_files, _getFailureRateColor, _getFailureRateScore ,URL };
232+
export { LLM_SPECS, LLM_CONFIGS, has_image, has_files, _getFailureRateColor, _getFailureRateScore ,URL };

ui/src/components/LLMSpecInput.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,4 +55,4 @@ export default {
5555

5656
<style scoped>
5757
/* Styles for the LLM Spec Input */
58-
</style>
58+
</style>

ui/src/components/PageContent.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,4 +100,4 @@ export default {
100100

101101
<style >
102102
/* Styles for the consent modal */
103-
</style>
103+
</style>

ui/src/components/PageFooter.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,4 +55,4 @@ export default {
5555

5656
<style scoped>
5757
/* Footer-specific styles here */
58-
</style>
58+
</style>

ui/src/components/PageHeader.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,4 +19,4 @@ export default {
1919
<style scoped>
2020
/* Any header-specific styles can go here */
2121
/* If you are using tailwind, you can include this as well*/
22-
</style>
22+
</style>

ui/src/main.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,4 @@ app.mount('#vue-app') // Change #vue-app to #app
88

99
app.config.globalProperties.$lucide = lucide
1010

11-
//lucide.createIcons(); // Create icons
11+
//lucide.createIcons(); // Create icons

ui/tailwind.config.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,4 +28,3 @@ module.exports = {
2828
},
2929
plugins: [],
3030
}
31-

ui/vue.config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
const { defineConfig } = require('@vue/cli-service')
2-
module.exports = defineConfig({ transpileDependencies: true, publicPath: '/' ,devServer: { allowedHosts: 'all', client: {webSocketURL: 'auto://0.0.0.0:0/ws'}}, })
2+
module.exports = defineConfig({ transpileDependencies: true, publicPath: '/' ,devServer: { allowedHosts: 'all', client: {webSocketURL: 'auto://0.0.0.0:0/ws'}}, })

0 commit comments

Comments
 (0)