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

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