Return-Path: X-Original-To: apmail-allura-commits-archive@www.apache.org Delivered-To: apmail-allura-commits-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id CD7A018063 for ; Fri, 16 Oct 2015 17:06:58 +0000 (UTC) Received: (qmail 74136 invoked by uid 500); 16 Oct 2015 17:06:58 -0000 Delivered-To: apmail-allura-commits-archive@allura.apache.org Received: (qmail 74088 invoked by uid 500); 16 Oct 2015 17:06:58 -0000 Mailing-List: contact commits-help@allura.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@allura.apache.org Delivered-To: mailing list commits@allura.apache.org Received: (qmail 73808 invoked by uid 99); 16 Oct 2015 17:06:58 -0000 Received: from git1-us-west.apache.org (HELO git1-us-west.apache.org) (140.211.11.23) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 16 Oct 2015 17:06:58 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 79FBBE05E1; Fri, 16 Oct 2015 17:06:58 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: brondsem@apache.org To: commits@allura.apache.org Date: Fri, 16 Oct 2015 17:07:26 -0000 Message-Id: <19d4693ddaed4941b20e9245b05f4214@git.apache.org> In-Reply-To: <4fbeed1eb4f04c27b59aa14de4d20491@git.apache.org> References: <4fbeed1eb4f04c27b59aa14de4d20491@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: [30/46] allura git commit: [#7920] Add configured jshint and jscs [#7920] Add configured jshint and jscs Project: http://git-wip-us.apache.org/repos/asf/allura/repo Commit: http://git-wip-us.apache.org/repos/asf/allura/commit/cad92456 Tree: http://git-wip-us.apache.org/repos/asf/allura/tree/cad92456 Diff: http://git-wip-us.apache.org/repos/asf/allura/diff/cad92456 Branch: refs/heads/db/7919 Commit: cad9245650609f4bc663e389a4e4a2adf894594d Parents: c456344 Author: Heith Seewald Authored: Tue Oct 6 03:28:03 2015 -0400 Committer: Heith Seewald Committed: Thu Oct 15 15:00:17 2015 -0400 ---------------------------------------------------------------------- .jscsrc | 9 +++++++++ .jshintrc | 14 ++++++++++++++ 2 files changed, 23 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/allura/blob/cad92456/.jscsrc ---------------------------------------------------------------------- diff --git a/.jscsrc b/.jscsrc new file mode 100644 index 0000000..0568d39 --- /dev/null +++ b/.jscsrc @@ -0,0 +1,9 @@ +{ + "preset": "airbnb", + "requireCamelCaseOrUpperCaseIdentifiers": false, + "requireTrailingComma": false, + "esprima": "esprima-fb", + "fileExtensions": [ + "es6.js" + ] +} http://git-wip-us.apache.org/repos/asf/allura/blob/cad92456/.jshintrc ---------------------------------------------------------------------- diff --git a/.jshintrc b/.jshintrc new file mode 100644 index 0000000..f4ea9d1 --- /dev/null +++ b/.jshintrc @@ -0,0 +1,14 @@ +{ + "esnext": true, + "globalstrict": true, + "latedef": true, + "supernew": true, + "jquery": true, + "globals": { + "React": true, + "$": true, + "window": true, + "_": true, + "ReactReorderable": true + } +}