admin管理员组文章数量:1345085
I've recently started coding with React, and I noticed immediately that VS Code is formatting my react files as follows, which is causing all kinds of warnings from the linter.
Index.js
class App extends Component {
render() {
return ( <
div className = "App" >
<
header className = "App-header" >
<
img src = {
logo
}
className = "App-logo"
alt = "logo" / >
<
p >
Edit < code > src / App.js < /code> and save to reload. < /
p > <
a className = "App-link"
href = ";
target = "_blank"
rel = "noopener noreferrer" >
Learn React <
/a> < /
header > <
/div>
);
}
}
I'm having trouble finding the Prettier setting or whatever other setting is causing this in the app, any suggestions?
Extensions (Note WSL Ubuntu Windows)
- Bracket Pair Colorizer
- Debugger for Chrome
- Javascript (ES6) Code Snippets
- React Nitro Snippets
- Reactjs code snippets
- Remote - WSL
- Vue Theme
- Autoprefixer
- Beautify
- City Lights Icon Package
- EditorConfig for VS Code
- ESLint
- Github Pull Requests and Issues
- GitLens - Git Supercharged
- Import Cost
- Live Server
- npm
- npm IntelliSense
- Path IntelliSense
- Prettier - Code Formatter
- React Extension Pack
- React Nitro Essentials
- Search node_modules
- SonarLint
- Vetur
- vue-beautify
VS Code About Block:
- Version: 1.48.0-insider (user setup)
- Commit: 459610f3ef11b956968afadff704bad3bc1a0de2
- Date: 2020-08-04T12:40:10.231Z
- Electron: 7.3.2
- Chrome: 78.0.3904.130
- Node.js: 12.8.1 V8: 7.8.279.23-electron.0
- OS: Windows_NT x64 10.0.18363
I've recently started coding with React, and I noticed immediately that VS Code is formatting my react files as follows, which is causing all kinds of warnings from the linter.
Index.js
class App extends Component {
render() {
return ( <
div className = "App" >
<
header className = "App-header" >
<
img src = {
logo
}
className = "App-logo"
alt = "logo" / >
<
p >
Edit < code > src / App.js < /code> and save to reload. < /
p > <
a className = "App-link"
href = "https://reactjs"
target = "_blank"
rel = "noopener noreferrer" >
Learn React <
/a> < /
header > <
/div>
);
}
}
I'm having trouble finding the Prettier setting or whatever other setting is causing this in the app, any suggestions?
Extensions (Note WSL Ubuntu Windows)
- Bracket Pair Colorizer
- Debugger for Chrome
- Javascript (ES6) Code Snippets
- React Nitro Snippets
- Reactjs code snippets
- Remote - WSL
- Vue Theme
- Autoprefixer
- Beautify
- City Lights Icon Package
- EditorConfig for VS Code
- ESLint
- Github Pull Requests and Issues
- GitLens - Git Supercharged
- Import Cost
- Live Server
- npm
- npm IntelliSense
- Path IntelliSense
- Prettier - Code Formatter
- React Extension Pack
- React Nitro Essentials
- Search node_modules
- SonarLint
- Vetur
- vue-beautify
VS Code About Block:
- Version: 1.48.0-insider (user setup)
- Commit: 459610f3ef11b956968afadff704bad3bc1a0de2
- Date: 2020-08-04T12:40:10.231Z
- Electron: 7.3.2
- Chrome: 78.0.3904.130
- Node.js: 12.8.1 V8: 7.8.279.23-electron.0
- OS: Windows_NT x64 10.0.18363
- Check your local Beautify config. – sibasishm Commented Aug 7, 2020 at 5:43
5 Answers
Reset to default 6You need to choose the default formatter.
- Press
Ctrl+Shift+P
(Win) orCmd+Shift+P
(Mac) - Type Format Document With...
- Then click Configure Default Formatter... and choose it from the list.
Just Install Preitter Extensions On VS CODE it will reformat all your file
You should download Prettier. Then go to Settings and check(the checkbox) 'Prettier: JSX Bracket Same Line' It should work well
This is probably is due to conflicting format tools available in vs code. To solve this
- Press
Ctrl+Shift+P
(windows) orCmd+Shift+P
(Mac) - Type
Format Document With...
- Select
Configure default Formatter...
- Choose an option for format going forward. (If you are choosing vs code's inbuilt format tool, better disable/remove other code format extensions)
- Select All
Ctrl+A
(Windows) orCmd+A
(Mac) and pressCtrl+K Ctrl+F
(windows) orCmd+K Cmd+F
to format the document.
If you use the prettier extension in Visual Studio Code, try adding this to the settings.json file:
"editor.insertSpaces": false,
"editor.tabSize": 4,
"editor.detectIndentation": false,
"prettier.tabWidth": 4,
"prettier.useTabs": true // This made it finally work for me
Well, if you like the developer way, Visual Studio Code allows you to specify the different file types for the tabSize. Here is the example of my settings.json with default four spaces and JavaScript/JSON two spaces:
{
// I want my default to be 4, but JavaScript/JSON to be 2
"editor.tabSize": 4,
"[javascript]": {
"editor.tabSize": 2
},
"[json]": {
"editor.tabSize": 2
},
// This one forces the tab to be **space**
"editor.insertSpaces": true
}
本文标签: javascriptVS Code Formatting JSX with new linesStack Overflow
版权声明:本文标题:javascript - VS Code Formatting JSX with new lines - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743792619a2539853.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论