admin管理员组文章数量:1338921
I'm trying to use ESLint to enforce a coding style on a project, and I have many Irregular whitespace not allowed
errors caused by code like this :
var a = b || 10; //note the 2 spaces between || and 10
if (a === 10) { // again, 2 spaces between ) and {
I haven't found any way to solve this problem easily for all my files. I think basic regex wouldn't work, as double spaces can be valid in some situations (column indentation of JSON object, indentation with soft tabs, strings).
I tried tools, such as js-beautify, but didn't find any options to solve this problem. Is there a tool that could help me ?
I'm trying to use ESLint to enforce a coding style on a project, and I have many Irregular whitespace not allowed
errors caused by code like this :
var a = b || 10; //note the 2 spaces between || and 10
if (a === 10) { // again, 2 spaces between ) and {
I haven't found any way to solve this problem easily for all my files. I think basic regex wouldn't work, as double spaces can be valid in some situations (column indentation of JSON object, indentation with soft tabs, strings).
I tried tools, such as js-beautify, but didn't find any options to solve this problem. Is there a tool that could help me ?
Share Improve this question edited Feb 6, 2022 at 7:46 SherylHohman 18k18 gold badges93 silver badges96 bronze badges asked Dec 9, 2015 at 18:25 IggYIggY 3,1354 gold badges31 silver badges55 bronze badges 5- when i paste your code into danml./slim and click Tools > Beautify, it removes the extra space. – dandavis Commented Dec 9, 2015 at 18:44
- I should have specified I'm looking for a mand line tool – IggY Commented Dec 9, 2015 at 18:51
- What eslint rule are you using? – Gyandeep Commented Dec 9, 2015 at 22:35
- well the beautify part is a small js routine, i'm sure it can run in node if need be... – dandavis Commented Dec 10, 2015 at 1:51
- Do you want the two spaces or do you want the extra spaces removed. js-beautify should remove those spaces automatically. No options needed. – BitwiseMan Commented Mar 17, 2017 at 18:38
2 Answers
Reset to default 11You can use the extension fix-irregular-whitspace for vscode
It works by replacing all non breaking space from your code with a normal space.
Features
- Automatically replace non breaking space at save time.
- Add a "Fix irregular whitespace in current file" mand to replace all non breaking space at will.
- Add a "Fix irregular whitespace in workspace" mand to replace all non breaking space inside a workspace. (It will rewrite and save your file not currently open in your editor and just update the active ones without saving them).
Install
How to run
Command pallet (CTRL + SHIFT + P) and:
> Fix irregular whitespace in workspace
for whole workspace (project, folder)
> Fix irregular whitespace in current file
For the current file!
Once executed ! The whole run in the background!
Once the mand run and finish! You get this notification!
If you are not using vscode! Then you can use it by using vscode! You can easily open your project folder with vscode! Install the extension! And running the mand simply ! And magic done!
I use vscode for many things even when i'm working with othe IDE (like code block once (i had to ! Helping a friend!))!
Vscode is so powerful! In many ways!
What are irregular spaces
https://eslint/docs/rules/no-irregular-whitespace
A sort of like invalid whitespace that is not a normal tab and space. Some of these characters may cause issues in modern browsers and others will be a debugging issue to spot. (I had a bad experience once where i scratched my head over all! In the end i was lucky i used a certain editor that spot the bad white space for me! And it was the reason)!
Happy us eslint detect them! And so many editors and tools!
Eslint take those spaces as irregular spaces
\u000B - Line Tabulation (\v) - <VT>
\u000C - Form Feed (\f) - <FF>
\u00A0 - No-Break Space - <NBSP>
\u0085 - Next Line
\u1680 - Ogham Space Mark
\u180E - Mongolian Vowel Separator - <MVS>
\ufeff - Zero Width No-Break Space - <BOM>
\u2000 - En Quad
\u2001 - Em Quad
\u2002 - En Space - <ENSP>
\u2003 - Em Space - <EMSP>
\u2004 - Tree-Per-Em
\u2005 - Four-Per-Em
\u2006 - Six-Per-Em
\u2007 - Figure Space
\u2008 - Punctuation Space - <PUNCSP>
\u2009 - Thin Space
\u200A - Hair Space
\u200B - Zero Width Space - <ZWSP>
\u2028 - Line Separator
\u2029 - Paragraph Separator
\u202F - Narrow No-Break Space
\u205f - Medium Mathematical Space
\u3000 - Ideographic Space
An example and insight on the problems that they can cause:
Invalid or irregular whitespace causes issues with ECMAScript 5 parsers and also makes code harder to debug in a similar nature to mixed tabs and spaces.
Various whitespace characters can be inputted by programmers by mistake for example from copying or keyboard shortcuts. Pressing Alt + Space on macOS adds in a non breaking space character for example.
A simple fix for this problem could be to rewrite the offending line from scratch. This might also be a problem introduced by the text editor: if rewriting the line does not fix it, try using a different editor.
Known issues these spaces cause:
Zero Width Space
- Is NOT considered a separator for tokens and is often parsed as an Unexpected token ILLEGAL
- Is NOT shown in modern browsers making code repository software expected to resolve the visualization
Line Separator
- Is NOT a valid character within JSON which would cause parse errors
OK
# Ok NO
YEA what is this ok NO! You don't know!?
There is an irregular space that i created there!
Where it is !? Here > #<irregular space>OK<normal space>NO
!
I typed literaly # + ALT + SPACE + "OK NO"
! The speed is the reason! I did it fast! I know that trick! i can create this irregular space type at will!
You want to know more ! Check my article about irregular space here:
Fixing and removing irregular spaces
Check the how to create them section! It talks about the problem with markdown! You can see that in stackoverflow! README.md files writing! If you already had so much of that problem! Write it slow # + space and it should be ok!
Here another irregular space that i did in purpose
# + space fast! Then removing #!
In fact for that irregular space to be create we need Only ALT + SPACE
! That's what make it!
You can see that the editor detect it (vscode here with eslint linter) !
UPDATE (for eslint)
A fix implementation for eslint lint rule is already worked out actually! It will get out in few days! It will go as an eslint Plugin (npm install + add to extends) (which allow supporing old eslint version)! And then for newewer version of eslint! It may go in the core rule too! Check again soon! I'll update this section too! With full details!
You can check it in this issue if you like https://github./eslint/eslint/issues/14073
If you are looking for a way to do this on the mand line, you can pipe the output of awk
or ts
to tee
(if they are available on your OS). The options below will normalize the whitespace in your file, and overwrite the existing file:
(Warning! This will overwrite the contents of file.js
)
Option #1: tr -s " " < file.js | tee file.js
Option #2: awk '{$2=$2};1' file.js | tee file.js
Suppose you have a file.js
file with the following contents:
// there are lots of spaces
// in this file
var a = b || 10;
if ( a === 10 ) {
// ....
}
After running one of the mands above, the file.js
file will look like this:
// there are lots of spaces
// in this file
var a = b || 10;
if ( a === 10 ) {
// ....
}
If you just want to print the result of the corrected whitespace contents to the terminal without overwriting the file, just don't pipe the output to tee
, like this:
Option #1: tr -s " " < file.js
Option #2: awk '{$2=$2};1' file.js
Otherwise, if you want to output the contents to a new file:
Option #1: tr -s " " < file.js | tee newfile.js
Option #2: awk '{$2=$2};1' file.js | tee newfile.js
Output to a Same File
Option #1: tr -s " " < file.js | tee file.js
Option #2: awk '{$2=$2};1' file.js | tee file.js
That being said, you should always be super cautious and conduct detailed tests before you trust mand line operations on your source code files.
Check out this post for better details and more options.
本文标签: javascriptESLintFast way to solve quotIrregular whitespace not allowedquotStack Overflow
版权声明:本文标题:javascript - ESLint : Fast way to solve "Irregular whitespace not allowed" - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743559219a2502757.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论