├── LICENSE ├── README.md ├── compiler └── eslint.vim └── ftdetect └── javascript.vim /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgraham/vim-eslint/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgraham/vim-eslint/HEAD/README.md -------------------------------------------------------------------------------- /compiler/eslint.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgraham/vim-eslint/HEAD/compiler/eslint.vim -------------------------------------------------------------------------------- /ftdetect/javascript.vim: -------------------------------------------------------------------------------- 1 | autocmd FileType javascript compiler eslint 2 | --------------------------------------------------------------------------------