wesbos / eslint-config-wesbos

No-Sweat™ Eslint and Prettier Setup - with or without VS Code
2.74k stars 419 forks source link

stop double quote error #133

Closed issam-seghir closed 1 year ago

issam-seghir commented 1 year ago

image

how can i turn off this error this is my config :

  "eslintConfig": {
    "extends": [
      "wesbos"
    ],
    "rules": {
      "prettier/prettier": [
        "error",
        {
          "singleQuote": false,
          "endOfLine": "auto",
          "tabWidth": 4
        }
      ]
    }
  },
  "scripts": {
    "lint": "eslint .",
    "lint:fix": "eslint . --fix"
  },