Skip to content

Commit abfc43a

Browse files
jalyn-leesamipe
authored andcommitted
temp
1 parent cdad016 commit abfc43a

File tree

138 files changed

+16200
-7766
lines changed

Some content is hidden

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

138 files changed

+16200
-7766
lines changed

.eslintrc.js

Lines changed: 18 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,11 @@ module.exports = {
55
},
66
extends: [
77
'plugin:vue/vue3-essential',
8-
'@vue/standard'
8+
'eslint:recommended',
9+
'@vue/typescript/recommended'
910
],
1011
parserOptions: {
11-
parser: 'babel-eslint'
12+
ecmaVersion: 2020
1213
},
1314
rules: {
1415
'no-console': process.env.NODE_ENV === 'production' ? 'warn' : 'off',
@@ -17,6 +18,20 @@ module.exports = {
1718
'vue/no-multiple-template-root': 'off',
1819
'no-unused-vars': 'warn',
1920
'space-before-function-paren': ['warn', 'never'],
20-
indent: [2, 2]
21+
indent: [2, 2],
22+
"sort-exports/sort-exports": [
23+
"error",
24+
{ "sortDir": "asc", "ignoreCase": true, "sortExportKindFirst": "type" }
25+
],
26+
"sort-imports": [
27+
"error",
28+
{
29+
"ignoreCase": false,
30+
"ignoreDeclarationSort": true,
31+
"ignoreMemberSort": false,
32+
"memberSyntaxSortOrder": ["none", "all", "multiple", "single"],
33+
"allowSeparatedGroups": true
34+
}
35+
],
2136
}
2237
}

.gitignore

Lines changed: 13 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,34 @@
1-
.DS_Store
2-
node_modules
3-
41
# local env files
52
.env.local
63
.env.*.local
74

85
# Log files
6+
logs
7+
*.log
98
npm-debug.log*
109
yarn-debug.log*
1110
yarn-error.log*
1211
pnpm-debug.log*
12+
lerna-debug.log*
13+
14+
node_modules
15+
dist
16+
dist-ssr
17+
*.local
1318

1419
# Editor directories and files
1520
.idea
16-
.vscode
21+
.vscode/*
22+
!.vscode/extensions.json
23+
.idea
24+
.DS_Store
1725
*.suo
1826
*.ntvs*
1927
*.njsproj
2028
*.sln
2129
*.sw?
2230

31+
2332
# Test files
2433
schedule.robot
2534
results/*

.npmrc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
shamefully-hoist=true

404.html

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

CNAME

Lines changed: 0 additions & 1 deletion
This file was deleted.

README.rst

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

RoboCon2021_Templ.potx

-393 KB
Binary file not shown.

commitlint.config.js

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
module.exports = {
2+
extends: ['@commitlint/config-conventional'],
3+
ignores: [
4+
(message) =>
5+
/\bWIP\b/i.test(message) ||
6+
/^(?:(:\w+:)\s)?\[\w+?.\-\w+\]+:\s.*/g.test(message)
7+
],
8+
rules: {
9+
'subject-case': [2, 'never', ['sentence-case', 'start-case', 'pascal-case', 'upper-case']],
10+
'subject-empty': [2, 'never'],
11+
'subject-full-stop': [2, 'never', '.'],
12+
'type-case': [2, 'always', 'lower-case'],
13+
'type-empty': [2, 'never'],
14+
'type-enum': [
15+
2,
16+
'always',
17+
[
18+
'build',
19+
'chore',
20+
'ci',
21+
'docs',
22+
'enhance',
23+
'feat',
24+
'fix',
25+
'lint',
26+
'perf',
27+
'refactor',
28+
'rename',
29+
'remove',
30+
'revert',
31+
'style',
32+
'tooling',
33+
'test',
34+
],
35+
],
36+
},
37+
};

components.d.ts

Lines changed: 51 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,51 @@
1+
/* eslint-disable */
2+
// @ts-nocheck
3+
// Generated by unplugin-vue-components
4+
// Read more: https://github.com/vuejs/core/pull/3399
5+
export {}
6+
7+
/* prettier-ignore */
8+
declare module 'vue' {
9+
export interface GlobalComponents {
10+
Banner: typeof import('./src/components/banners/Banner.vue')['default']
11+
Banner404: typeof import('./src/components/banners/Banner404.vue')['default']
12+
BannerComingSoon: typeof import('./src/components/banners/BannerComingSoon.vue')['default']
13+
BannerTwo: typeof import('./src/components/banners/BannerTwo.vue')['default']
14+
BaseIcon: typeof import('./src/components/icons/BaseIcon.vue')['default']
15+
ChevronIcon: typeof import('./src/components/icons/ChevronIcon.vue')['default']
16+
copy: typeof import('./src/components/cards/EventCards copy.vue')['default']
17+
EventCards: typeof import('./src/components/cards/EventCards.vue')['default']
18+
GlobeIcon: typeof import('./src/components/icons/GlobeIcon.vue')['default']
19+
GlobeRBCN: typeof import('./src/components/icons/GlobeRBCN.vue')['default']
20+
LinkIcon: typeof import('./src/components/icons/LinkIcon.vue')['default']
21+
LocaleToggler: typeof import('./src/components/blocks/LocaleToggler.vue')['default']
22+
Logo: typeof import('./src/components/blocks/Logo.vue')['default']
23+
MainBanner: typeof import('./src/components/banners/MainBanner.vue')['default']
24+
Navbar: typeof import('./src/components/Navbar.vue')['default']
25+
NavMobile: typeof import('./src/components/NavMobile.vue')['default']
26+
NewsBanner: typeof import('./src/components/NewsBanner.vue')['default']
27+
NewTabIcon: typeof import('./src/components/icons/NewTabIcon.vue')['default']
28+
PageFooter: typeof import('./src/components/PageFooter.vue')['default']
29+
PageSection: typeof import('./src/components/PageSection.vue')['default']
30+
PreviousTalks: typeof import('./src/components/PreviousTalks.vue')['default']
31+
RobotIcon: typeof import('./src/components/icons/RobotIcon.vue')['default']
32+
RouterLink: typeof import('vue-router')['RouterLink']
33+
RouterView: typeof import('vue-router')['RouterView']
34+
Settings: typeof import('./src/components/blocks/Settings.vue')['default']
35+
SpeakerCards: typeof import('./src/components/cards/SpeakerCards.vue')['default']
36+
SponsorCards: typeof import('./src/components/cards/SponsorCards.vue')['default']
37+
SponsorGrid: typeof import('./src/components/cards/SponsorGrid.vue')['default']
38+
SponsorItem: typeof import('./src/components/SponsorItem.vue')['default']
39+
Sponsors: typeof import('./src/components/Sponsors.vue')['default']
40+
TabBox: typeof import('./src/components/TabBox.vue')['default']
41+
Talks: typeof import('./src/components/Talks.vue')['default']
42+
Talks2023: typeof import('./src/components/Talks2023.vue')['default']
43+
Talks24: typeof import('./src/components/Talks24.vue')['default']
44+
ThemeToggler: typeof import('./src/components/blocks/ThemeToggler.vue')['default']
45+
TicketItem: typeof import('./src/components/TicketItem.vue')['default']
46+
Timeline: typeof import('./src/components/Timeline.vue')['default']
47+
ToggleDirection: typeof import('./src/components/blocks/ToggleDirection.vue')['default']
48+
Tutorials24: typeof import('./src/components/Tutorials24.vue')['default']
49+
Workshops24: typeof import('./src/components/Workshops24.vue')['default']
50+
}
51+
}
File renamed without changes.

0 commit comments

Comments
 (0)