Welcome to mirror list, hosted at ThFree Co, Russian Federation.

mock_data.js « editorconfig « lib « ide « frontend « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: b21f4a5b7357997299c27287e7c6aebab976686e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
export const exampleConfigs = [
  {
    path: 'foo/bar/baz/.editorconfig',
    content: `
[*]
tab_width = 6
indent_style = tab
`,
  },
  {
    path: 'foo/bar/.editorconfig',
    content: `
root = false

[*]
indent_size = 5
indent_style = space
trim_trailing_whitespace = true

[*_spec.{js,py}]
end_of_line = crlf
    `,
  },
  {
    path: 'foo/.editorconfig',
    content: `
[*]
tab_width = 4
indent_style = tab
    `,
  },
  {
    path: '.editorconfig',
    content: `
root = true

[*]
indent_size = 3
indent_style = space
end_of_line = lf
insert_final_newline = true

[*.js]
indent_size = 2
indent_style = space
trim_trailing_whitespace = true

[*.txt]
end_of_line = crlf
    `,
  },
  {
    path: 'foo/bar/root/.editorconfig',
    content: `
root = true

[*]
tab_width = 1
indent_style = tab
    `,
  },
];

export const exampleFiles = [
  {
    path: 'foo/bar/root/README.md',
    rules: {
      indent_style: 'tab', // foo/bar/root/.editorconfig
      tab_width: '1', // foo/bar/root/.editorconfig
    },
    monacoRules: {
      insertSpaces: false,
      tabSize: 1,
    },
  },
  {
    path: 'foo/bar/baz/my_spec.js',
    rules: {
      end_of_line: 'crlf', // foo/bar/.editorconfig (for _spec.js files)
      indent_size: '5', // foo/bar/.editorconfig
      indent_style: 'tab', // foo/bar/baz/.editorconfig
      insert_final_newline: 'true', // .editorconfig
      tab_width: '6', // foo/bar/baz/.editorconfig
      trim_trailing_whitespace: 'true', // .editorconfig (for .js files)
    },
    monacoRules: {
      endOfLine: 1,
      insertFinalNewline: true,
      insertSpaces: false,
      tabSize: 6,
      trimTrailingWhitespace: true,
    },
  },
  {
    path: 'foo/my_file.js',
    rules: {
      end_of_line: 'lf', // .editorconfig
      indent_size: '2', // .editorconfig (for .js files)
      indent_style: 'tab', // foo/.editorconfig
      insert_final_newline: 'true', // .editorconfig
      tab_width: '4', // foo/.editorconfig
      trim_trailing_whitespace: 'true', // .editorconfig (for .js files)
    },
    monacoRules: {
      endOfLine: 0,
      insertFinalNewline: true,
      insertSpaces: false,
      tabSize: 4,
      trimTrailingWhitespace: true,
    },
  },
  {
    path: 'foo/my_file.md',
    rules: {
      end_of_line: 'lf', // .editorconfig
      indent_size: '3', // .editorconfig
      indent_style: 'tab', // foo/.editorconfig
      insert_final_newline: 'true', // .editorconfig
      tab_width: '4', // foo/.editorconfig
    },
    monacoRules: {
      endOfLine: 0,
      insertFinalNewline: true,
      insertSpaces: false,
      tabSize: 4,
    },
  },
  {
    path: 'foo/bar/my_file.txt',
    rules: {
      end_of_line: 'crlf', // .editorconfig (for .txt files)
      indent_size: '5', // foo/bar/.editorconfig
      indent_style: 'space', // foo/bar/.editorconfig
      insert_final_newline: 'true', // .editorconfig
      tab_width: '4', // foo/.editorconfig
      trim_trailing_whitespace: 'true', // foo/bar/.editorconfig
    },
    monacoRules: {
      endOfLine: 1,
      insertFinalNewline: true,
      insertSpaces: true,
      tabSize: 4,
      trimTrailingWhitespace: true,
    },
  },
];