diff options
author | merakor <cem@ckyln.com> | 2020-12-21 11:34:22 +0000 |
---|---|---|
committer | merakor <cem@ckyln.com> | 2020-12-21 11:34:22 +0000 |
commit | cadb3dc73197e651ce9782cd1529905c183a2700 (patch) | |
tree | 1f74ddc177a47358136fe819aa1979f86b36fea8 | |
parent | f1cd3c042aaf8aaa29ab166976012d2ed9cc907d (diff) | |
download | cpt-cadb3dc73197e651ce9782cd1529905c183a2700.tar.gz |
dir-local: fix excluded warning list
FossilOrigin-Name: aaaa279be11e88bfa2745b442a2543ef176cd79d9d5537f25e6f93928bd61ae4
-rw-r--r-- | .dir-locals.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.dir-locals.el b/.dir-locals.el index b7ac48b..fcd3688 100644 --- a/.dir-locals.el +++ b/.dir-locals.el @@ -1,4 +1,4 @@ ;;; Directory Local Variables ;;; For more information see (info "(emacs) Directory Variables") -((sh-mode . ((flycheck-shellcheck-excluded-warnings . '(2119))))) +((sh-mode . ((flycheck-shellcheck-excluded-warnings . '("2119"))))) |