├── .gitignore ├── tests └── codemirrorModeElixir.test.js ├── src ├── main.js ├── index.html ├── components │ ├── SiteFooter.vue │ ├── GithubIcon.vue │ ├── SiteHeader.vue │ └── Home.vue ├── code.js └── App.vue ├── .editorconfig ├── CHANGELOG.md ├── LICENSE ├── README.md ├── webpack.config.js ├── package.json └── index.js /.gitignore: -------------------------------------------------------------------------------- 1 | dist 2 | node_modules 3 | site 4 | .DS_Store 5 | -------------------------------------------------------------------------------- /tests/codemirrorModeElixir.test.js: -------------------------------------------------------------------------------- 1 | test('TODO', () => { 2 | 3 | }) 4 | -------------------------------------------------------------------------------- /src/main.js: -------------------------------------------------------------------------------- 1 | import Vue from 'vue' 2 | import App from './App' 3 | 4 | /* eslint-disable no-new */ 5 | new Vue(App).$mount('#app') 6 | -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- 1 | root = true 2 | 3 | [*] 4 | charset = utf-8 5 | indent_style = space 6 | indent_size = 2 7 | end_of_line = lf 8 | insert_final_newline = true 9 | trim_trailing_whitespace = true 10 | -------------------------------------------------------------------------------- /src/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 | 5 |npm install codemirror-mode-elixir
31 |