We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
What version of eslint are you using? 8.18.0
eslint
What version of prettier are you using? 2.7.1
prettier
What version of eslint-plugin-prettier are you using? 4.0.0
eslint-plugin-prettier
Please paste any applicable config files that you're using (e.g. .prettierrc or .eslintrc files)
.prettierrc
.eslintrc
// eslintrc.js module.exports = { parser: '@typescript-eslint/parser', parserOptions: { project: 'tsconfig.json', sourceType: 'module', }, plugins: ['@typescript-eslint/eslint-plugin', 'import-helpers'], extends: [ 'plugin:@typescript-eslint/recommended', 'plugin:prettier/recommended', ], root: true, env: { node: true, jest: true, }, ignorePatterns: ['.eslintrc.js'], rules: { '@typescript-eslint/explicit-function-return-type': 'off', '@typescript-eslint/explicit-module-boundary-types': 'off', '@typescript-eslint/interface-name-prefix': 'off', '@typescript-eslint/no-explicit-any': 'off', '@typescript-eslint/arrow-parens': 'off', "prettier/prettier": "error", 'import-helpers/order-imports': [ 'warn', { newlinesBetween: 'never', groups: [ '/^@/', 'module', '/^~/', ['parent', 'sibling', 'index'] ], alphabetize: { 'order': 'asc', 'ignoreCase': false } } ] } };
// .prettierrc { "singleQuote": true, "jsxSingleQuote": true, "quoteProps": "consistent", "trailingComma": "none", "useTabs": false, "tabWidth": 2, "bracketSpacing": true, "jsxBracketSameLine": false, "arrowParens": "avoid", "endOfLine": "lf", "printWidth": 120, "semi": true }
What source code are you linting?
What did you expect to happen?
What actually happened? when the file is saved there is a space between the braces that must be removed because eslint keeps saying it is wrong
I want to configure eslint so there is no space between the braces
The text was updated successfully, but these errors were encountered:
Please provide a runnable reproduction, this should be related to your editor's setting, not related to this plugin at all.
Sorry, something went wrong.
No branches or pull requests
What version of
eslint
are you using?8.18.0
What version of
prettier
are you using?2.7.1
What version of
eslint-plugin-prettier
are you using?4.0.0
Please paste any applicable config files that you're using (e.g.
.prettierrc
or.eslintrc
files)What source code are you linting?
What did you expect to happen?
What actually happened?
when the file is saved there is a space between the braces that must be removed because eslint keeps saying it is wrong
I want to configure eslint so there is no space between the braces
The text was updated successfully, but these errors were encountered: