Skip to content
This repository was archived by the owner on Sep 14, 2023. It is now read-only.

Commit 5abbe86

Browse files
committed
init(all): init commit → ★
0 parents  commit 5abbe86

File tree

311 files changed

+12973
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

311 files changed

+12973
-0
lines changed

.babelrc

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"presets": ["es2015", "react"]
3+
}

.cz-config.js

+39
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
2+
module.exports = {
3+
types: [
4+
{value: 'chore', name: 'chore: Changes to the build process or auxiliary tools\n and libraries such as documentation generation'},
5+
{value: 'docs', name: 'docs: Documentation only changes'},
6+
{value: 'feat', name: 'feat: A new feature'},
7+
{value: 'fix', name: 'fix: A bug fix'},
8+
{value: 'init', name: 'init: Initial commit'},
9+
{value: 'perf', name: 'perf: A code change that improves performance'},
10+
{value: 'refactor', name: 'refactor: A code change that neither fixes a bug nor adds a feature'},
11+
{value: 'release', name: 'release: A code release and tag'},
12+
{value: 'revert', name: 'revert: Revert to a commit'},
13+
{value: 'style', name: 'style: Changes that do not affect the meaning of the code\n (white-space, formatting, missing semi-colons, etc)'},
14+
{value: 'update', name: 'update: Updates feature'},
15+
{value: 'test', name: 'test: Adding missing tests'},
16+
{value: 'WIP', name: 'WIP: Work in progress'}
17+
],
18+
// scopes: {Array of Strings}: Specify the scopes for your particular project.
19+
// Eg.: for some banking system: ["acccounts", "payments"].
20+
// For another travelling application: ["bookings", "search", "profile"]
21+
scopes: [
22+
{name: 'lib'},
23+
{name: '__tests__/basic'},
24+
{name: '__tests__/plugin'},
25+
{name: '__tests__/watch'},
26+
{name: '__tests__'},
27+
{name: 'root'}
28+
],
29+
// scopeOverrides: {Object where key contains a Array of String}:
30+
// Use this when you want to override scopes for a specific commit type.
31+
// Example bellow specify scopes when type is fix:
32+
scopeOverrides: {},
33+
// allowCustomScopes: {boolean, default false}: adds the option custom to
34+
// scope selection so you can still typea scope if you need.
35+
allowCustomScopes: true,
36+
// allowBreakingChanges: {Array of Strings: default none}. List of commit
37+
// types you would like to the question breaking change prompted. Eg.: ['feat', 'fix']
38+
allowBreakingChanges: ['feat', 'fix']
39+
};

.editorconfig

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
# editorconfig.org
2+
root = true
3+
4+
[*]
5+
indent_style = tab
6+
end_of_line = lf
7+
charset = utf-8
8+
trim_trailing_whitespace = true
9+
insert_final_newline = true
10+
indent_style = space
11+
indent_size = 2

.eslintrc.js

+201
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,201 @@
1+
module.exports = {
2+
"env": {
3+
"browser": true,
4+
"commonjs": true,
5+
"es6": true,
6+
"node": true
7+
},
8+
"extends": "eslint:recommended",
9+
"parserOptions": {
10+
"sourceType": "module"
11+
},
12+
"globals": {
13+
"$": true,
14+
"_": true,
15+
"Immutable": true
16+
},
17+
18+
"plugins": [
19+
// e.g. "react" (must run `npm install eslint-plugin-react` first)
20+
],
21+
"rules": {
22+
////////// Possible Errors //////////
23+
24+
"comma-dangle": 2, // disallow trailing commas in object literals
25+
"no-cond-assign": 2, // disallow assignment in conditional expressions
26+
"no-console": 2, // disallow use of console (off by default in the node environment)
27+
"no-constant-condition": 2, // disallow use of constant expressions in conditions
28+
"no-control-regex": 2, // disallow control characters in regular expressions
29+
"no-debugger": 2, // disallow use of debugger
30+
"no-dupe-args": 2, // disallow duplicate arguments in functions
31+
"no-dupe-keys": 2, // disallow duplicate keys when creating object literals
32+
"no-duplicate-case": 2, // disallow a duplicate case label
33+
"no-empty-character-class": 2, // disallow the use of empty character classes in regular expressions
34+
"no-empty": 2, // disallow empty statements
35+
"no-ex-assign": 2, // disallow assigning to the exception in a catch block
36+
"no-extra-boolean-cast": 2, // disallow double-negation boolean casts in a boolean context
37+
"no-extra-parens": 0, // disallow unnecessary parentheses (off by default)
38+
"no-extra-semi": 2, // disallow unnecessary semicolons
39+
"no-func-assign": 2, // disallow overwriting functions written as function declarations
40+
"no-inner-declarations": 2, // disallow function or variable declarations in nested blocks
41+
"no-invalid-regexp": 2, // disallow invalid regular expression strings in the RegExp constructor
42+
"no-irregular-whitespace": 2, // disallow irregular whitespace outside of strings and comments
43+
"no-negated-in-lhs": 2, // disallow negation of the left operand of an in expression
44+
"no-obj-calls": 2, // disallow the use of object properties of the global object (Math and JSON) as functions
45+
"no-regex-spaces": 2, // disallow multiple spaces in a regular expression literal
46+
"no-reserved-keys": 0, // disallow reserved words being used as object literal keys (off by default)
47+
"no-sparse-arrays": 2, // disallow sparse arrays
48+
"no-unreachable": 2, // disallow unreachable statements after a return, throw, continue, or break statement
49+
"use-isnan": 2, // disallow comparisons with the value NaN
50+
"valid-jsdoc": 0, // Ensure JSDoc comments are valid (off by default)
51+
"valid-typeof": 0, // Ensure that the results of typeof are compared against a valid string
52+
"no-unexpected-multiline": 2, // Avoid code that looks like two expressions but is actually one (off by default)
53+
////////// Best Practices //////////
54+
55+
"accessor-pairs": 2, // enforces getter/setter pairs in objects (off by default)
56+
"block-scoped-var": 2, // treat var statements as if they were block scoped (off by default)
57+
"complexity": 2, // specify the maximum cyclomatic complexity allowed in a program (off by default)
58+
"consistent-return": 0, // require return statements to either always or never specify values
59+
"curly": 2, // specify curly brace conventions for all control statements
60+
"default-case": 2, // require default case in switch statements (off by default)
61+
"dot-notation": 2, // encourages use of dot notation whenever possible
62+
"dot-location": 0, // enforces consistent newlines before or after dots (off by default)
63+
"eqeqeq": 2, // require the use of === and !==
64+
"guard-for-in": 2, // make sure for-in loops have an if statement (off by default)
65+
"no-alert": 2, // disallow the use of alert, confirm, and prompt
66+
"no-caller": 2, // disallow use of arguments.caller or arguments.callee
67+
"no-div-regex": 2, // disallow division operators explicitly at beginning of regular expression (off by default)
68+
"no-else-return": 2, // disallow else after a return in an if (off by default)
69+
"no-eq-null": 2, // disallow comparisons to null without a type-checking operator (off by default)
70+
"no-eval": 2, // disallow use of eval()
71+
"no-extend-native": 2, // disallow adding to native types
72+
"no-extra-bind": 2, // disallow unnecessary function binding
73+
"no-fallthrough": 2, // disallow fallthrough of case statements
74+
"no-floating-decimal": 2, // disallow the use of leading or trailing decimal points in numeric literals (off by default)
75+
"no-implied-eval": 2, // disallow use of eval()-like methods
76+
"no-iterator": 2, // disallow usage of __iterator__ property
77+
"no-labels": 2, // disallow use of labeled statements
78+
"no-lone-blocks": 2, // disallow unnecessary nested blocks
79+
"no-loop-func": 2, // disallow creation of functions within loops
80+
"no-multi-spaces": 0, // disallow use of multiple spaces
81+
"no-multi-str": 2, // disallow use of multiline strings
82+
"no-native-reassign": 2, // disallow reassignments of native objects
83+
"no-new-func": 2, // disallow use of new operator for Function object
84+
"no-new-wrappers": 2, // disallows creating new instances of String, Number, and Boolean
85+
"no-new": 2, // disallow use of new operator when not part of the assignment or comparison
86+
"no-octal-escape": 2, // disallow use of octal escape sequences in string literals, such as var foo = "Copyright \251";
87+
"no-octal": 2, // disallow use of octal literals
88+
"no-param-reassign": 0, // disallow reassignment of function parameters (off by default)
89+
"no-process-env": 2, // disallow use of process.env (off by default)
90+
"no-proto": 2, // disallow usage of __proto__ property
91+
"no-redeclare": 2, // disallow declaring the same variable more then once
92+
"no-return-assign": 2, // disallow use of assignment in return statement
93+
"no-script-url": 2, // disallow use of javascript: urls
94+
"no-self-compare": 2, // disallow comparisons where both sides are exactly the same (off by default)
95+
"no-sequences": 2, // disallow use of comma operator
96+
"no-throw-literal": 2, // restrict what can be thrown as an exception (off by default)
97+
"no-unused-expressions": 2, // disallow usage of expressions in statement position
98+
"no-void": 2, // disallow use of void operator (off by default)
99+
"no-warning-comments": 2, // disallow usage of configurable warning terms in comments, e.g. TODO or FIXME (off by default)
100+
"no-with": 2, // disallow use of the with statement
101+
"radix": 2, // require use of the second argument for parseInt() (off by default)
102+
"vars-on-top": 2, // requires to declare all vars on top of their containing scope (off by default)
103+
"wrap-iife": 2, // require immediate function invocation to be wrapped in parentheses (off by default)
104+
"yoda": 2, // require or disallow Yoda conditions
105+
106+
////////// Variables //////////
107+
108+
"no-catch-shadow": 2, // disallow the catch clause parameter name being the same as a variable in the outer scope (off by default in the node environment)
109+
"no-delete-var": 2, // disallow deletion of variables
110+
"no-label-var": 2, // disallow labels that share a name with a variable
111+
"no-shadow": 2, // disallow declaration of variables already declared in the outer scope
112+
"no-shadow-restricted-names": 2, // disallow shadowing of names such as arguments
113+
"no-undef": 2, // disallow use of undeclared variables unless mentioned in a /*global */ block
114+
"no-undef-init": 2, // disallow use of undefined when initializing variables
115+
"no-undefined": 2, // disallow use of undefined variable (off by default)
116+
"no-unused-vars": 2, // disallow declaration of variables that are not used in the code
117+
"no-use-before-define": 2, // disallow use of variables before they are defined
118+
119+
120+
////////// Node.js //////////
121+
122+
"handle-callback-err": 2, // enforces error handling in callbacks (off by default) (on by default in the node environment)
123+
"no-mixed-requires": 2, // disallow mixing regular variable and require declarations (off by default) (on by default in the node environment)
124+
"no-new-require": 2, // disallow use of new operator with the require function (off by default) (on by default in the node environment)
125+
"no-path-concat": 2, // disallow string concatenation with __dirname and __filename (off by default) (on by default in the node environment)
126+
"no-process-exit": 2, // disallow process.exit() (on by default in the node environment)
127+
"no-restricted-modules": 2, // restrict usage of specified node modules (off by default)
128+
"no-sync": 2, // disallow use of synchronous methods (off by default)
129+
130+
131+
////////// Stylistic Issues //////////
132+
133+
"array-bracket-spacing": 2, // enforce spacing inside array brackets (off by default)
134+
"brace-style": [2, "1tbs", { // enforce one true brace style (off by default)
135+
"allowSingleLine": true
136+
}],
137+
"camelcase": 2, // require camel case names
138+
"comma-spacing": 2, // enforce spacing before and after comma
139+
"comma-style": 2, // enforce one true comma style (off by default)
140+
"computed-property-spacing": 2, // require or disallow padding inside computed properties (off by default)
141+
"consistent-this": 0, // enforces consistent naming when capturing the current execution context (off by default)
142+
"eol-last": 2, // enforce newline at the end of file, with no multiple empty lines
143+
"func-names": 0, // require function expressions to have a name (off by default)
144+
"func-style": 2, // enforces use of function declarations or expressions (off by default)
145+
"indent": [1, 2, { // this option sets a specific tab width for your code (off by default)
146+
"SwitchCase": 2,
147+
"VariableDeclarator": { "var": 2, "let": 2, "const": 3}
148+
}],
149+
"key-spacing": 2, // enforces spacing between keys and values in object literal properties
150+
"lines-around-comment": 0, // enforces empty lines around comments (off by default)
151+
"linebreak-style": 2, // disallow mixed 'LF' and 'CRLF' as linebreaks (off by default)
152+
"max-nested-callbacks": 2, // specify the maximum depth callbacks can be nested (off by default)
153+
"new-cap": 1, // require a capital letter for constructors
154+
"new-parens": 2, // disallow the omission of parentheses when invoking a constructor with no arguments
155+
"new-parens": 2, // disallow the omission of parentheses when invoking a constructor with no arguments
156+
"newline-after-var": 0, // allow/disallow an empty newline after var statement (off by default)
157+
"no-array-constructor": 2, // disallow use of the Array constructor
158+
"no-continue": 1, // disallow use of the continue statement (off by default)
159+
"no-inline-comments": 2, // disallow comments inline after code (off by default)
160+
"no-lonely-if": 2, // disallow if as the only statement in an else block (off by default)
161+
"no-mixed-spaces-and-tabs": 2, // disallow mixed spaces and tabs for indentation
162+
"no-multiple-empty-lines": 0, // disallow multiple empty lines (off by default)
163+
"no-nested-ternary": 2, // disallow nested ternary expressions (off by default)
164+
"no-new-object": 2, // disallow use of the Object constructor
165+
"no-spaced-func": 2, // disallow space between function identifier and application
166+
"no-ternary": 0, // disallow the use of ternary operators (off by default)
167+
"no-trailing-spaces": 2, // disallow trailing whitespace at the end of lines
168+
"no-underscore-dangle": 0, // disallow dangling underscores in identifiers
169+
"one-var": 0, // allow just one var statement per function (off by default)
170+
"operator-assignment": 2, // require assignment operator shorthand where possible or prohibit it entirely (off by default)
171+
"operator-linebreak": 0, // enforce operators to be placed before or after line breaks (off by default)
172+
"padded-blocks": 0, // enforce padding within blocks (off by default)
173+
"quotes": [2, "single"], // require quotes around object literal property names (off by default)
174+
"quote-props": [2, "as-needed"], // specify whether double or single quotes should be used
175+
"semi-spacing": [2, { // enforce spacing before and after semicolons
176+
"before": false,
177+
"after": true
178+
}],
179+
"semi": [2, "always"], // require or disallow use of semicolons instead of ASI
180+
"sort-vars": 0, // sort variables within the same declaration block (off by default)
181+
"space-after-keywords": 0, // require a space after certain keywords (off by default)
182+
"space-before-blocks": 2, // require or disallow space before blocks (off by default)
183+
"space-before-function-paren": 0, // require or disallow space before function opening parenthesis (off by default)
184+
"space-in-parens": 2, // require or disallow spaces inside parentheses (off by default)
185+
"space-infix-ops": 2, // require spaces around operators
186+
"space-unary-ops": 2, // require or disallow spaces before/after unary operators (words on by default, nonwords off by default)
187+
"spaced-comment": 0, // require or disallow a space immediately following the // or /* in a comment (off by default)
188+
"wrap-regex": 2, // require regex literals to be wrapped in parentheses (off by default)
189+
190+
191+
////////// ECMAScript 6 //////////
192+
193+
"constructor-super": 2, // verify super() callings in constructors (off by default)
194+
"generator-star-spacing": 2, // enforce the spacing around the * in generator functions (off by default)
195+
"no-this-before-super": 2, // disallow to use this/super before super() calling in constructors (off by default)
196+
"no-var": 2, // require let or const instead of var (off by default)
197+
"object-shorthand": 0, // require method and property shorthand syntax for object literals (off by default)
198+
"prefer-const": 1, // suggest using of const declaration for variables that are never modified after declared (off by default)
199+
200+
}
201+
};

.gitattributes

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
# See https://help.github.com/articles/dealing-with-line-endings
2+
3+
# These files are text and should be normalized (Convert crlf => lf)
4+
*.md text
5+
*.txt text
6+
*.html text
7+
*.css text
8+
*.js text
9+
10+
# Denote all files that are truly binary and should not be modified.
11+
*.png binary
12+
*.jpg binary
13+
*.pdf binary

.github/ISSUE_TEMPLATE.md

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
<!--
2+
(INFORMATION):
3+
+ Contributions are welcomed and appreciated with open hearts and open fingers. Before you continue, consider the following: If you have a "How do I do ...?" question, this is not the proper channel. Instead, please use the forums: forums.ctr-lang.com or stackoverflow: stackoverflow.com/questions/tagged/ctr-loader
4+
+ These "Issues" are meant for technical problems, bugs, and proposals related to the library, although, exceptions are made for noteworthy cases. If you're reporting a bug, please use the below bug template.
5+
6+
(BUG TEMPLATE):
7+
#### What's your environment:
8+
#### Expected behavior:
9+
#### Actual behavior:
10+
#### What steps and/or code will reproduce the bug:
11+
#### Have you identified what's causing the bug and/or potential solutions:
12+
#### Additional information and details:
13+
-->

.github/PULL_REQUEST_TEMPLATE.md

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
#### Description:
2+
<!--- CLOSES #X -->
3+
<!--- Describe your changes in detail, need be. -->
4+
<!--- Why is this change required and/or what problem does it solve? -->
5+
<!--- If there are breaking changes, please make a note of them. -->
6+
7+
#### Checklist:
8+
<!--- All the checkboxes must be checked even if they do not pertain -->
9+
- [ ] Update/change/fix has test(s)
10+
- [ ] Follows the existing code style
11+
- [ ] Has decent commit message(s)
12+
- [ ] Commit and code comes with a smile
13+

0 commit comments

Comments
 (0)