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
--clean-comments
Example: test.js
// TODO: something module.exports = { env: { browser: false, node: true, }, extends: ['airbnb-base', 'prettier'], plugins: ['simple-import-sort', 'prettier'], ignorePatterns: [ '**/node_modules/**', '**/__*/**', '**/lib/**', '**/dist/**', '**/build/**', '**/coverage/**', '**/public/**', '!.gitlab-ci.js', ], };
Expected result:
module.exports = { env: { browser: false, node: true, }, extends: ['airbnb-base', 'prettier'], plugins: ['simple-import-sort', 'prettier'], ignorePatterns: [ '**/node_modules/**', '**/__*/**', '**/lib/**', '**/dist/**', '**/build/**', '**/coverage/**', '**/public/**', '!.gitlab-ci.js', ], };
Actual result:
module.exports = { env: { browser: false, node: true, }, extends: ['airbnb-base', 'prettier'], plugins: ['simple-import-sort', 'prettier'], ignorePatterns: [ '**/node_modules __* lib dist build coverage public/**', '!.gitlab-ci.js', ], };
P.S. For now I have turned off the option in projects, if no one takes it in 2 weeks I will fix the regular schedule at Christmas
Пока в проектах опцию выключил, если никто не возьмется за 2 недели пофикшу регулярку на рождественских
The text was updated successfully, but these errors were encountered:
I added this feature just for Nano ID.
If you need to make it smarter, you need to send PR :)
Sorry, something went wrong.
No branches or pull requests
Example:
test.js
Expected result:
Actual result:
P.S.
For now I have turned off the option in projects, if no one takes it in 2 weeks I will fix the regular schedule at Christmas
The text was updated successfully, but these errors were encountered: