File tree Expand file tree Collapse file tree 3 files changed +15
-22
lines changed Expand file tree Collapse file tree 3 files changed +15
-22
lines changed Original file line number Diff line number Diff line change 26
26
"engines" : {
27
27
"atom" : " >=1.52.0 <2.0.0"
28
28
},
29
- "nuclide" : {
30
- "configMetadata" : {
31
- "pathComponents" : [
32
- " IDE" ,
33
- " Code Formatting"
34
- ]
35
- }
36
- },
37
- "atomConfig" : {
38
- "formatOnSave" : {
39
- "title" : " Format on Save" ,
40
- "type" : " boolean" ,
41
- "default" : false ,
42
- "description" : " Automatically format code upon saving for supported languages."
43
- },
44
- "formatOnType" : {
45
- "title" : " Format on Type" ,
46
- "type" : " boolean" ,
47
- "default" : true ,
48
- "description" : " Automatically format code as you type it for supported languages."
49
- }
50
- },
51
29
"consumedServices" : {
52
30
"atom-ide-busy-signal" : {
53
31
"versions" : {
Original file line number Diff line number Diff line change
1
+ {
2
+ "formatOnSave" : {
3
+ "title" : " Format on Save" ,
4
+ "type" : " boolean" ,
5
+ "default" : false ,
6
+ "description" : " Automatically format code upon saving for supported languages."
7
+ },
8
+ "formatOnType" : {
9
+ "title" : " Format on Type" ,
10
+ "type" : " boolean" ,
11
+ "default" : true ,
12
+ "description" : " Automatically format code as you type it for supported languages."
13
+ }
14
+ }
Original file line number Diff line number Diff line change @@ -9,6 +9,7 @@ import type {
9
9
10
10
import CodeFormatManager from './CodeFormatManager' ;
11
11
12
+ export { default as config } from "./config.json"
12
13
13
14
let codeFormatManager : CodeFormatManager
14
15
You can’t perform that action at this time.
0 commit comments