This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* extensions > vimium > extension options > show advanced options > CSS for Vimium UI */ | |
:root { | |
/* https://www.nordtheme.com/docs/colors-and-palettes */ | |
--nord0: #2e3440; | |
--nord1: #3b4252; | |
--nord2: #434c5e; | |
--nord3: #4c566a; | |
--nord4: #d8dee9; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
year | response | value | |
---|---|---|---|
2016 | 매우 불만족 | 8 | |
2016 | 불만족 | 25 | |
2016 | 보통 | 73 | |
2016 | 만족 | 160 | |
2016 | 매우 만족 | 73 | |
2017 | 매우 불만족 | 4 | |
2017 | 불만족 | 14 | |
2017 | 보통 | 61 | |
2017 | 만족 | 105 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
module.exports = { | |
root: true, | |
env: { | |
node: true | |
}, | |
extends: ["plugin:vue/recommended", "@vue/prettier", "@vue/typescript"], | |
rules: { | |
"vue/html-self-closing": ["error", { | |
html: { | |
"void": "never", |