File tree Expand file tree Collapse file tree 2 files changed +10
-2
lines changed Expand file tree Collapse file tree 2 files changed +10
-2
lines changed Original file line number Diff line number Diff line change 2
2
//
3
3
// For a full list of overridable settings, and general information on folder-specific settings,
4
4
// see the documentation: https://zed.dev/docs/configuring-zed#settings-files
5
- {}
5
+ {
6
+ "languages" : {
7
+ "JavaScript" : {
8
+ "code_actions_on_format" : {
9
+ "source.fixAll.eslint" : true
10
+ }
11
+ }
12
+ }
13
+ }
Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ const Grid = ({data}: Props) => {
11
11
}
12
12
13
13
return (
14
- < div className = { ` grid grid-cols-1 md:grid-cols-2 lg:grid-cols-2 gap-4 items-center` } >
14
+ < div className = " grid grid-cols-1 md:grid-cols-2 lg:grid-cols-2 gap-4 items-center" >
15
15
{ data ?. items ?. map ( ( section ) => < RenderSection key = { section . _key } section = { section } /> ) }
16
16
</ div >
17
17
) ;
You can’t perform that action at this time.
0 commit comments