emacs.d

My emacs configuration, done in a literate programming fashion using org-mode

git clone git://git.shimmy1996.com/emacs.d.git
commit 4793eaf022c895feb96a801b73b5f06221059b68
parent 5812c5c41c91854c0ce2e1aaeb91424a64dde169
Author: Shimmy Xu <shimmy.xu@shimmy1996.com>
Date:   Mon, 21 Jan 2019 12:35:58 -0500

Ignore whitespace warnings as it doesn't recongnize C++17 syntaxs.

Diffstat:
MREADME.org | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/README.org b/README.org
@@ -655,7 +655,7 @@ Set various parameters for the checker.
 #+BEGIN_SRC emacs-lisp
   (custom-set-variables
    '(flycheck-googlelint-verbose "5")
-   '(flycheck-googlelint-filter "-legal/copyright")
+   '(flycheck-googlelint-filter "-legal/copyright,-whitespace/braces")
    '(flycheck-googlelint-linelength "80"))
 #+END_SRC