Skip to content

Commit

Permalink
docs(README.md): standardize quote style in code examples for consist…
Browse files Browse the repository at this point in the history
…ency
  • Loading branch information
Bluzzi committed Dec 25, 2024
1 parent 03a015f commit 5eaad53
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ Install [VS Code ESLint extension](https://marketplace.visualstudio.com/items?it
To enable TS [type aware rules](https://typescript-eslint.io/getting-started/typed-linting) (recommended for best practice with TS), you need to define the relative path to your `tsconfig.json`:
```js
export default eslintConfig({
typescript: { tsconfigPath: `./tsconfig.json` },
typescript: { tsconfigPath: "./tsconfig.json" },
});
```

Expand All @@ -103,7 +103,7 @@ You can adjust some formatting options for your code, but we recommend sticking
export default eslintConfig({
stylistic: {
indent: 2,
quotes: 'single',
quotes: "single",
semi: false,
},
});
Expand All @@ -119,7 +119,7 @@ export default eslintConfig(
// From the second arguments they are ESLint Flat Configs
// you can have multiple configs:
{
files: ['**/*.ts'],
files: ["**/*.ts"],
rules: {},
},
{
Expand Down

0 comments on commit 5eaad53

Please sign in to comment.