Skip to content
New issue

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

'style/brace-style': ['error', 'stroustrup', { allowSingleLine: true }] There are problems #676

Open
5 of 7 tasks
crb011 opened this issue Mar 5, 2025 · 0 comments
Open
5 of 7 tasks

Comments

@crb011
Copy link

crb011 commented Mar 5, 2025

Describe the bug

{
rules: {
      // '@stylistic/ts/brace-style': ['error', 'stroustrup', { allowSingleLine: true }],

      // 'style/ts/brace-style': ['error', 'stroustrup', { allowSingleLine: true }],

      'style/brace-style': ['error', 'stroustrup', { allowSingleLine: true }],
    }
}

When the vscode compiler autosaves 'style/brace-style' Doesn't work;Trying to use '@stylistic/ts/ string-style 'or 'style/ts/ string-style' will work, but eslint. --fix will give TypeError: Key "rules": Key "style/ts/brace-style": Could not find "ts/brace-style" in plugin "style". Error;I wonder why this is the case

Image

Currently I am trying to upgrade from "@antfu/eslint-config": "3.8.0" to "@antfu/eslint-config": "^4.5.1" but the issue still exists

Here is my filename and file configuration:

// eslint.config.mjs
import antfu from '@antfu/eslint-config'

export default antfu(
  {
    unocss: true,
    rules: {
      'vue/no-v-text-v-html-on-component': 'off',
      'vue/multi-word-component-names': 'off',
      'no-unused-expressions': 'off',
      'node/prefer-global/process': 'off',
      'no-console': 'warn',
      'vue/component-name-in-template-casing': [
        'error',
        'PascalCase',
        {
          registeredComponentsOnly: false,
          ignores: [],
        },
      ],
      // '@stylistic/ts/brace-style': ['error', 'stroustrup', { allowSingleLine: true }],

      // 'style/ts/brace-style': ['error', 'stroustrup', { allowSingleLine: true }],

      'style/brace-style': ['error', 'stroustrup', { allowSingleLine: true }],
    },
    formatters: {
      css: true,
      html: true,
    },
  },
)

Reproduction

{ rules: { // '@stylistic/ts/brace-style': ['error', 'stroustrup', { allowSingleLine: true }], // 'style/ts/brace-style': ['error', 'stroustrup', { allowSingleLine: true }], 'style/brace-style': ['error', 'stroustrup', { allowSingleLine: true }], } }

System Info

System:
    OS: macOS 13.4
    CPU: (8) arm64 Apple M1
    Memory: 75.75 MB / 16.00 GB
    Shell: 5.9 - /bin/zsh
  Binaries:
    Node: 22.13.1 - ~/.volta/tools/image/node/22.13.1/bin/node
    npm: 10.9.2 - ~/.volta/tools/image/node/22.13.1/bin/npm
    pnpm: 9.15.3 - ~/.volta/bin/pnpm
  Browsers:
    Chrome: 119.0.6045.159
    Safari: 16.5

Used Package Manager

pnpm

Validations

  • Follow our Code of Conduct
  • Read the Contributing Guide.
  • Check that there isn't already an issue that reports the same bug to avoid creating a duplicate.
  • Check that this is a concrete bug. For Q&A, please open a GitHub Discussion instead.
  • The provided reproduction is a minimal reproducible of the bug.

Contributions

  • I am willing to submit a PR to fix this issue
  • I am willing to submit a PR with failing tests (actually just go ahead and do it, thanks!)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant