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
Hi,
sometimes I use your extension to sort angular templates, I would like to ignore some characters, because angular has this notation with [] and ()
e.g.
[abc] (def) [ghi]
The text was updated successfully, but these errors were encountered:
I have similar issue, I want to sort ESLint rules alphabetically with typescript-eslint plugin, here is example:
typescript-eslint
'block-spacing': 'off', 'brace-style': 'off', 'comma-dangle': 'off', '@typescript-eslint/block-spacing': 'off', '@typescript-eslint/brace-style': 'off', '@typescript-eslint/comma-dangle': 'off',
>Sort lines (ascending, case sensitive):
>Sort lines (ascending, case sensitive)
'@typescript-eslint/block-spacing': 'off', '@typescript-eslint/brace-style': 'off', '@typescript-eslint/comma-dangle': 'off', 'block-spacing': 'off', 'brace-style': 'off', 'comma-dangle': 'off',
If there was an option to ignore, I would be able to set it to @typescript-eslint/ and get following desired output:
@typescript-eslint/
'block-spacing': 'off', '@typescript-eslint/block-spacing': 'off', 'brace-style': 'off', '@typescript-eslint/brace-style': 'off', 'comma-dangle': 'off', '@typescript-eslint/comma-dangle': 'off',
Sorry, something went wrong.
No branches or pull requests
Hi,
sometimes I use your extension to sort angular templates, I would like to ignore some characters, because angular has this notation with [] and ()
e.g.
The text was updated successfully, but these errors were encountered: