250x250
Notice
Recent Posts
Recent Comments
«   2025/01   »
1 2 3 4
5 6 7 8 9 10 11
12 13 14 15 16 17 18
19 20 21 22 23 24 25
26 27 28 29 30 31
Tags
more
Archives
Today
Total
관리 메뉴

진스

vue에서 (camelcase)카멜케이스 켜는 방법 본문

Vue

vue에서 (camelcase)카멜케이스 켜는 방법

입방정 2021. 6. 17. 15:14
728x90

https://stackoverflow.com/questions/56918767/disable-check-of-camel-case-rule-in-eslint

 

Disable check of camel case rule in eslint

I have a large JavaScript file with multiple eslint rule violations. I am trying to disable them and address them one at a time. The code below shows that I can disable them all with no trouble, bu...

stackoverflow.com

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