Merge pull request #33 from prashcr/comment-headers
Add comment headers for every source file
This commit is contained in:
commit
e9d6f5a707
@ -1,3 +1,6 @@
|
||||
" Author: w0rp <devw0rp@gmail.com>
|
||||
" Description: gcc linter for c files
|
||||
|
||||
if exists('g:loaded_ale_linters_c_gcc')
|
||||
finish
|
||||
endif
|
||||
|
@ -1,4 +1,5 @@
|
||||
" Author: prashcr - https://github.com/prashcr
|
||||
" Author: Prashanth Chandra https://github.com/prashcr
|
||||
" Description: coffeelint linter for coffeescript files
|
||||
|
||||
if exists('g:loaded_ale_linters_coffee_coffeelint')
|
||||
finish
|
||||
|
@ -1,3 +1,6 @@
|
||||
" Author: w0rp <devw0rp@gmail.com>
|
||||
" Description: "dmd for D files"
|
||||
|
||||
if exists('g:loaded_ale_linters_d_dmd')
|
||||
finish
|
||||
endif
|
||||
|
@ -1,3 +1,6 @@
|
||||
" Author: w0rp <devw0rp@gmail.com>
|
||||
" Description: gcc for Fortran files
|
||||
|
||||
if exists('g:loaded_ale_linters_fortran_gcc')
|
||||
finish
|
||||
endif
|
||||
|
@ -1,3 +1,6 @@
|
||||
" Author: w0rp <devw0rp@gmail.com>
|
||||
" Description: ghc for Haskell files
|
||||
|
||||
if exists('g:loaded_ale_linters_haskell_ghc')
|
||||
finish
|
||||
endif
|
||||
|
@ -1,3 +1,6 @@
|
||||
" Author: w0rp <devw0rp@gmail.com>
|
||||
" Description: eslint for JavaScript files
|
||||
|
||||
if exists('g:loaded_ale_linters_javascript_eslint')
|
||||
finish
|
||||
endif
|
||||
|
@ -1,4 +1,5 @@
|
||||
" Author: Chris Kyrouac - https://github.com/fijshion
|
||||
" Description: jscs for JavaScript files
|
||||
|
||||
if exists('g:loaded_ale_linters_javascript_jscs')
|
||||
finish
|
||||
|
@ -1,4 +1,5 @@
|
||||
" Author: Chris Kyrouac - https://github.com/fijshion
|
||||
" Description: JSHint for Javascript files
|
||||
|
||||
if exists('g:loaded_ale_linters_javascript_jshint')
|
||||
finish
|
||||
|
@ -1,3 +1,6 @@
|
||||
" Author: w0rp <devw0rp@gmail.com>
|
||||
" Description: flake8 for python files
|
||||
|
||||
if exists('g:loaded_ale_linters_python_flake8')
|
||||
finish
|
||||
endif
|
||||
|
@ -1,4 +1,5 @@
|
||||
" Author: ynonp - https://github.com/ynonp
|
||||
" Description: rubocop for Ruby files
|
||||
|
||||
if exists('g:loaded_ale_linters_ruby_rubocop')
|
||||
finish
|
||||
|
@ -1,3 +1,6 @@
|
||||
" Author: w0rp <devw0rp@gmail.com>
|
||||
" Description: Lints sh files using bash -n
|
||||
|
||||
if exists('g:loaded_ale_linters_sh_shell')
|
||||
finish
|
||||
endif
|
||||
|
@ -1,7 +1,8 @@
|
||||
#!/bin/bash -eu
|
||||
|
||||
# This script wraps DMD so we can get something which is capable of reading
|
||||
# D code from stdin.
|
||||
# Author: w0rp <devw0rp@gmail.com>
|
||||
# Description: This script wraps DMD so we can get something which is capable of reading
|
||||
# D code from stdin.
|
||||
|
||||
temp_file=`mktemp`
|
||||
mv "$temp_file" "$temp_file".d
|
||||
|
@ -1,6 +1,6 @@
|
||||
" This file sets up configuration settings for the ALE plugin.
|
||||
" Flags can be set in vimrc files and so on to disable particular features,
|
||||
" etc.
|
||||
" Author: w0rp <devw0rp@gmail.com>
|
||||
" Description: This file sets up configuration settings for the ALE plugin.
|
||||
" Flags can be set in vimrc files and so on to disable particular features
|
||||
|
||||
if exists('g:loaded_ale_flags')
|
||||
finish
|
||||
|
@ -1,3 +1,6 @@
|
||||
" Author: w0rp <devw0rp@gmail.com>
|
||||
" Description: Echoes lint message for the current line, if any
|
||||
|
||||
if exists('g:loaded_ale_cursor')
|
||||
finish
|
||||
endif
|
||||
|
@ -1,3 +1,6 @@
|
||||
" Author: w0rp <devw0rp@gmail.com>
|
||||
" Description: Draws error and warning signs into signcolumn
|
||||
|
||||
if exists('g:loaded_ale_sign')
|
||||
finish
|
||||
endif
|
||||
|
@ -1,3 +1,6 @@
|
||||
" Author: w0rp <devw0rp@gmail.com>
|
||||
" Description: Contains miscellaneous functions
|
||||
|
||||
if exists('g:loaded_ale_util')
|
||||
finish
|
||||
endif
|
||||
|
@ -1,3 +1,7 @@
|
||||
" Author: w0rp <devw0rp@gmail.com>
|
||||
" Description: Main entry point for this plugin
|
||||
" Loads linters and manages lint jobs
|
||||
|
||||
if exists('g:loaded_ale_zmain')
|
||||
finish
|
||||
endif
|
||||
|
@ -1,12 +1,12 @@
|
||||
#!/bin/bash -eu
|
||||
|
||||
# This script implements a wrapper for any program which does not accept
|
||||
# stdin input on most Unix machines. The input to the script is read to a
|
||||
# temporary file, and the first argument sets a particular file extension
|
||||
# for the temporary file.
|
||||
#
|
||||
# All of the following arguments are read as command to run.
|
||||
# Author: w0rp <devw0rp@gmail.com>
|
||||
# Description: This script implements a wrapper for any program which does not accept
|
||||
# stdin input on most Unix machines. The input to the script is read to a
|
||||
# temporary file, and the first argument sets a particular file extension
|
||||
# for the temporary file.
|
||||
|
||||
# All of the following arguments are read as command to run.
|
||||
file_extension="$1"
|
||||
shift
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user