From 9590004965f7a6099c0dc88887d3e3804eca69d3 Mon Sep 17 00:00:00 2001 From: Patrick Connelly Date: Tue, 14 May 2019 14:35:21 -0400 Subject: [PATCH] Adding missing dot files --- .eslintrc.json | 105 ++++++++++++++++++++++++++ .github/ISSUE_TEMPLATE/add_rule.md | 13 ++++ .github/ISSUE_TEMPLATE/change_rule.md | 13 ++++ .github/ISSUE_TEMPLATE/remove_rule.md | 10 +++ 4 files changed, 141 insertions(+) create mode 100644 .eslintrc.json create mode 100644 .github/ISSUE_TEMPLATE/add_rule.md create mode 100644 .github/ISSUE_TEMPLATE/change_rule.md create mode 100644 .github/ISSUE_TEMPLATE/remove_rule.md diff --git a/.eslintrc.json b/.eslintrc.json new file mode 100644 index 0000000..2ba44fa --- /dev/null +++ b/.eslintrc.json @@ -0,0 +1,105 @@ +{ + "env": { + "node": true, + "jest": true + }, + "extends": "eslint:recommended", + "parserOptions": { + "ecmaVersion": 6 + }, + "rules": { + "array-bracket-spacing": [ + "error", + "always" + ], + "block-scoped-var": "error", + "block-spacing": [ + "error", + "never" + ], + "brace-style": [ + "error", + "1tbs" + ], + "comma-dangle": [ + "error", + "never" + ], + "indent": [ + "error", + 4 + ], + "linebreak-style": [ + "error", + "unix" + ], + "global-require": "error", + "no-extra-parens": "error", + "no-inline-comments": "error", + "no-lonely-if": "error", + "no-multiple-empty-lines": [ + "error", + { + "max": 1, + "maxBOF": 0, + "maxEOF": 0 + } + ], + "no-mixed-operators": "error", + "no-mixed-requires": "error", + "no-nested-ternary": "error", + "no-plusplus": "error", + "no-return-assign": "error", + "no-trailing-spaces": "error", + "no-useless-return": "error", + "object-curly-newline": [ + "error", + { + "minProperties": 2 + } + ], + "one-var": [ + "error", + { + "initialized": "never", + "uninitialized": "consecutive" + } + ], + "one-var-declaration-per-line": [ + "error", + "initializations" + ], + "padded-blocks": [ + "error", + "never" + ], + "quotes": [ + "error", + "single" + ], + "require-jsdoc": [ + "warn", + { + "require": { + "FunctionDeclaration": true, + "MethodDefinition": true, + "ClassDeclaration": true, + "ArrowFunctionExpression": true, + "FunctionExpression": true + } + } + ], + "semi": [ + "error", + "always" + ], + "space-before-function-paren": [ + "error", + { + "anonymous": "always", + "named": "never" + } + ], + "valid-jsdoc": "error" + } +} \ No newline at end of file diff --git a/.github/ISSUE_TEMPLATE/add_rule.md b/.github/ISSUE_TEMPLATE/add_rule.md new file mode 100644 index 0000000..a4b83d1 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/add_rule.md @@ -0,0 +1,13 @@ +--- +name: Add a rule +about: Add a new rule +--- + +**Describe the rule** +A clear and concise description of the rule + +Rule Categorization +| Category | Value | +| --- | --- | +| Rule Set | Parent for rule (eg. games, membership) | +| Rule Order | Number in list of rules this should be | \ No newline at end of file diff --git a/.github/ISSUE_TEMPLATE/change_rule.md b/.github/ISSUE_TEMPLATE/change_rule.md new file mode 100644 index 0000000..179c911 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/change_rule.md @@ -0,0 +1,13 @@ +--- +name: Change a rule +about: Change an existing rule +--- + +**Current Rule** +Text of the full rule + +**Proposed Change** +Text of the changed rule + +**Reason for change** +A clear and concise reason for why the rule should be changed diff --git a/.github/ISSUE_TEMPLATE/remove_rule.md b/.github/ISSUE_TEMPLATE/remove_rule.md new file mode 100644 index 0000000..e4ec579 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/remove_rule.md @@ -0,0 +1,10 @@ +--- +name: Remove a rule +about: Remove an existing rule +--- + +**Current Rule** +Text of the full rule + +**Reason for removal** +A clear and concise reason for why the rule should be removed