File tree Expand file tree Collapse file tree 2 files changed +26
-6
lines changed
Expand file tree Collapse file tree 2 files changed +26
-6
lines changed Original file line number Diff line number Diff line change 1+ # Ignore JavaScript files to prevent conflicts with ESLint
2+ * .js
3+ * .jsx
4+ * .ts
5+ * .tsx
6+
7+ # Ignore build files
8+ dist /
9+ build /
10+ node_modules /
11+
12+ # Ignore other files that shouldn't be formatted
13+ * .min.js
14+ * .min.css
Original file line number Diff line number Diff line change 11{
22 "editor.codeActionsOnSave" : {
3- "source.fixAll.eslint" : true ,
4- "source.fixAll.stylelint" : true
3+ "source.fixAll.eslint" : " explicit " ,
4+ "source.fixAll.stylelint" : " explicit "
55 },
66 "editor.formatOnSave" : false ,
7- "eslint.validate" : [
8- " javascript"
9- ],
7+ "editor.defaultFormatter" : null ,
8+ "[javascript]" : {
9+ "editor.defaultFormatter" : " dbaeumer.vscode-eslint" ,
10+ "editor.formatOnSave" : false
11+ },
12+ "[javascriptreact]" : {
13+ "editor.defaultFormatter" : " dbaeumer.vscode-eslint" ,
14+ "editor.formatOnSave" : false
15+ },
1016 "stylelint.validate" : [
1117 " css" ,
1218 " scss"
1319 ]
14- }
20+ }
You can’t perform that action at this time.
0 commit comments