Skip to content

Commit 253f2e9

Browse files
author
Faizal Andyka
committed
chore: comments code
1 parent 082a3b6 commit 253f2e9

File tree

4 files changed

+19
-7
lines changed

4 files changed

+19
-7
lines changed

.eslintrc.js

+12-3
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,10 @@ module.exports = {
2727
],
2828

2929
rules: {
30-
// javascript
30+
/**
31+
* NOTE:
32+
* javascript custom rules
33+
*/
3134
'no-undef': 'off',
3235
'no-return-assign': 'off',
3336
'no-useless-catch': 'off',
@@ -36,7 +39,10 @@ module.exports = {
3639
'no-useless-escape': 'off',
3740
'import/no-absolute-path': 'off',
3841

39-
// typescript
42+
/**
43+
* NOTE:
44+
* typescript custom rules
45+
*/
4046
'@typescript-eslint/ban-types': 'off',
4147
'@typescript-eslint/explicit-function-return-type': 'off',
4248
'@typescript-eslint/no-explicit-any': 'off',
@@ -86,7 +92,10 @@ module.exports = {
8692
}
8793
}],
8894

89-
// vue
95+
/**
96+
* NOTE:
97+
* vue custom rules
98+
*/
9099
'vue/no-unused-vars': 'off',
91100
'vue/no-v-html': 'off',
92101
'vue/require-default-prop': 'error',

src/modules/Home/views/home.vue

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<template>
22
<div>
3-
Bismillah, Hello Vue
4-
<CilGlobeAlt />
3+
Bismillah, Hello World!
4+
<CilGlobeAlt class="inline" />
55
</div>
66
</template>
77

stylelint.config.js

+4-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,10 @@ module.exports = {
1515
]
1616
}],
1717

18-
// rscss
18+
/**
19+
* NOTE:
20+
* rscss custom rules
21+
*/
1922
'rscss/no-descendant-combinator': false
2023
}
2124
}

tailwind.config.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ module.exports = {
66
'./src/**/*.{vue,js,ts}'
77
],
88
presets: [],
9-
darkMode: false, // or 'media' or 'class'
9+
darkMode: false,
1010
theme: {
1111
screens: {
1212
sm: '640px',

0 commit comments

Comments
 (0)