진스
vue에서 (camelcase)카멜케이스 켜는 방법 본문
728x90
https://stackoverflow.com/questions/56918767/disable-check-of-camel-case-rule-in-eslint
fontSize:"10" 이 안되고 자꾸
font-size:"10"이 자동으로 되버린다.
별문제가 없을수 있지만 가끔 이것때문에 에러가 날때가있다.
이때는 아래부분표기된부분을 eslintrc.js에 추가하면 된다.
임시 방편일수 있음
eslintrc.js
rules: {
"camelcase": "on", <<----이부분
"prettier/prettier": [
"error",
// 아래 규칙들은 개인 선호에 따라 prettier 문법 적용
// https://prettier.io/docs/en/options.html
{
html: {
void: "never",
normal: "never",
component: "always",
},
singleQuote: true,
semi: false,
useTabs: true,
tabWidth: 2,
trailingComma: "all",
printWidth: 80,
bracketSpacing: true,
arrowParens: "avoid",
endOfLine: "auto",
},
],
"no-console": process.env.NODE_ENV === "production" ? "error" : "off",
},
728x90
'Vue' 카테고리의 다른 글
vue 룰렛 (0) | 2021.07.02 |
---|---|
img 태그의 src 바인딩 , background 하는 방법 (0) | 2021.07.02 |
Vue 탭 UI (0) | 2021.06.16 |
vue-awesome-swiper의 옵션 (0) | 2021.06.16 |
vue-awesome-swiper (0) | 2021.06.16 |
Comments