Skip to content

Commit

Permalink
chore: align single quote autofix
Browse files Browse the repository at this point in the history
and remove unused eslint prettier config
  • Loading branch information
davidenke committed Dec 14, 2024
1 parent 42052f4 commit 58de7eb
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions eslint.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,11 @@ export default eslintTs.config(
},
rules: {
'linebreak-style': ['error', 'unix'],
quotes: ['error', 'single'],
quotes: ['error', 'single', { avoidEscape: true }],
semi: ['error', 'always'],
'simple-import-sort/imports': 'error',
'simple-import-sort/exports': 'error',
'prettier/prettier': ['error'],
'prettier/prettier': ['error', { singleQuote: true }],
'unused-imports/no-unused-imports': 'error',
'@typescript-eslint/no-explicit-any': 'off',
'@typescript-eslint/no-unused-vars': [
Expand Down
3 changes: 2 additions & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 0 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,6 @@
"cross-env": "7.0.3",
"decap-cms-core": "3.4.2",
"eslint": "9.13.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-prettier": "5.2.1",
"eslint-plugin-simple-import-sort": "12.1.1",
"eslint-plugin-unused-imports": "4.1.4",
Expand Down

0 comments on commit 58de7eb

Please sign in to comment.