mirror of
https://github.com/zrgn/zrgn.github.io
synced 2025-04-04 14:48:47 +00:00
Adding missing dot files
This commit is contained in:
parent
2cddf004e1
commit
9590004965
4 changed files with 141 additions and 0 deletions
105
.eslintrc.json
Normal file
105
.eslintrc.json
Normal file
|
@ -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"
|
||||||
|
}
|
||||||
|
}
|
13
.github/ISSUE_TEMPLATE/add_rule.md
vendored
Normal file
13
.github/ISSUE_TEMPLATE/add_rule.md
vendored
Normal file
|
@ -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 |
|
13
.github/ISSUE_TEMPLATE/change_rule.md
vendored
Normal file
13
.github/ISSUE_TEMPLATE/change_rule.md
vendored
Normal file
|
@ -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
|
10
.github/ISSUE_TEMPLATE/remove_rule.md
vendored
Normal file
10
.github/ISSUE_TEMPLATE/remove_rule.md
vendored
Normal file
|
@ -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
|
Loading…
Add table
Reference in a new issue