From 6187faf20384b0c5a4966343b2d4ca47f8b11e45 Mon Sep 17 00:00:00 2001 From: Philip Paquette Date: Wed, 26 Sep 2018 07:48:55 -0400 Subject: Release v1.0.0 - Diplomacy Game Engine - AGPL v3+ License --- diplomacy/web/.eslintrc | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 diplomacy/web/.eslintrc (limited to 'diplomacy/web/.eslintrc') diff --git a/diplomacy/web/.eslintrc b/diplomacy/web/.eslintrc new file mode 100644 index 0000000..85a4876 --- /dev/null +++ b/diplomacy/web/.eslintrc @@ -0,0 +1,25 @@ +{ + "plugins": [ + "react" + ], + "parserOptions": { + "ecmaVersion": 6, + "sourceType": "module", + "ecmaFeatures": { + "jsx": true + } + }, + "env": { + "es6": true, + "browser": true, + "node": true, + "mocha": true + }, + "extends": [ + "eslint:recommended", + "plugin:react/recommended" + ], + "rules": { + "semi": [2, "always", { "omitLastInOneLineBlock": true}] + } +} -- cgit v1.2.3