summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/ide/lib/editor_options.js
blob: a213862f9b3e5160b3a3a8154e50f1b9ac4fe370 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
export const defaultEditorOptions = {
  model: null,
  readOnly: false,
  contextmenu: true,
  scrollBeyondLastLine: false,
  minimap: {
    enabled: false,
  },
  wordWrap: 'bounded',
};

export default [
  {
    readOnly: model => !!model.file.file_lock,
  },
];