├── .editorconfig ├── .gitattributes ├── license ├── readme.md └── syntax_checkers ├── javascript └── xo.vim └── typescript └── xo.vim /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xojs/vim-xo/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xojs/vim-xo/HEAD/.gitattributes -------------------------------------------------------------------------------- /license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xojs/vim-xo/HEAD/license -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xojs/vim-xo/HEAD/readme.md -------------------------------------------------------------------------------- /syntax_checkers/javascript/xo.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xojs/vim-xo/HEAD/syntax_checkers/javascript/xo.vim -------------------------------------------------------------------------------- /syntax_checkers/typescript/xo.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xojs/vim-xo/HEAD/syntax_checkers/typescript/xo.vim --------------------------------------------------------------------------------