Skip to content

Commit c8e9ba5

Browse files
authoredApr 1, 2021
Merge pull request #81 from shinsenter/develop
v2.3.0
2 parents 83e2e5f + 8893695 commit c8e9ba5

14 files changed

+564
-485
lines changed
 

‎.build/.beautify

+28
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
{
2+
"brace_style": "collapse",
3+
"break_chained_methods": false,
4+
"comma_first": false,
5+
"e4x": true,
6+
"editorconfig": true,
7+
"end_with_newline": true,
8+
"eol": "\n",
9+
"indent_char": " ",
10+
"indent_inner_html": true,
11+
"indent_level": 0,
12+
"indent_scripts": "separate",
13+
"indent_size": "2",
14+
"indent_with_tabs": false,
15+
"jslint_happy": true,
16+
"keep_array_indentation": true,
17+
"max_preserve_newlines": "2",
18+
"operator_position": "before-newline",
19+
"preserve_newlines": true,
20+
"space_after_anon_function": false,
21+
"space_after_named_function": false,
22+
"space_before_conditional": true,
23+
"space_in_empty_paren": false,
24+
"space_in_paren": false,
25+
"unescape_strings": true,
26+
"unindent_chained_methods": false,
27+
"wrap_line_length": "120"
28+
}

‎.build/.eslintrc

+256
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,256 @@
1+
{
2+
"env": {
3+
"browser": true,
4+
"es6": false
5+
},
6+
"extends": "eslint:recommended",
7+
"globals": {
8+
"Atomics": "readonly",
9+
"SharedArrayBuffer": "readonly"
10+
},
11+
"parserOptions": {
12+
"ecmaVersion": 3
13+
},
14+
"rules": {
15+
"accessor-pairs": "error",
16+
"array-bracket-newline": "error",
17+
"array-bracket-spacing": "error",
18+
"array-callback-return": "error",
19+
"array-element-newline": "off",
20+
"arrow-body-style": "error",
21+
"arrow-parens": "error",
22+
"arrow-spacing": "error",
23+
"block-scoped-var": "error",
24+
"block-spacing": [
25+
"error",
26+
"never"
27+
],
28+
"callback-return": "error",
29+
"camelcase": "off",
30+
"capitalized-comments": "off",
31+
"class-methods-use-this": "error",
32+
"comma-dangle": "error",
33+
"comma-spacing": "off",
34+
"comma-style": "error",
35+
"complexity": "error",
36+
"computed-property-spacing": [
37+
"error",
38+
"never"
39+
],
40+
"consistent-return": "error",
41+
"consistent-this": "off",
42+
"curly": "error",
43+
"default-case": "error",
44+
"dot-location": "error",
45+
"dot-notation": "error",
46+
"eol-last": "off",
47+
"eqeqeq": "off",
48+
"func-call-spacing": "error",
49+
"func-name-matching": "error",
50+
"func-names": "off",
51+
"func-style": "off",
52+
"function-paren-newline": "error",
53+
"generator-star-spacing": "error",
54+
"global-require": "error",
55+
"guard-for-in": "error",
56+
"handle-callback-err": "error",
57+
"id-blacklist": "error",
58+
"id-length": "error",
59+
"id-match": "error",
60+
"implicit-arrow-linebreak": "error",
61+
"indent": "error",
62+
"indent-legacy": "error",
63+
"init-declarations": "off",
64+
"jsx-quotes": "error",
65+
"key-spacing": "error",
66+
"line-comment-position": "error",
67+
"linebreak-style": [
68+
"error",
69+
"unix"
70+
],
71+
"lines-around-comment": "error",
72+
"lines-around-directive": "error",
73+
"lines-between-class-members": "error",
74+
"max-classes-per-file": "error",
75+
"max-depth": "error",
76+
"max-len": "off",
77+
"max-lines": "off",
78+
"max-lines-per-function": "error",
79+
"max-nested-callbacks": "error",
80+
"max-params": "off",
81+
"max-statements": "off",
82+
"max-statements-per-line": "off",
83+
"multiline-comment-style": "off",
84+
"new-cap": "error",
85+
"new-parens": "error",
86+
"newline-after-var": "off",
87+
"newline-before-return": "error",
88+
"newline-per-chained-call": "error",
89+
"no-alert": "error",
90+
"no-array-constructor": "error",
91+
"no-async-promise-executor": "error",
92+
"no-await-in-loop": "error",
93+
"no-bitwise": "error",
94+
"no-buffer-constructor": "error",
95+
"no-caller": "error",
96+
"no-catch-shadow": "error",
97+
"no-confusing-arrow": "error",
98+
"no-continue": "error",
99+
"no-console": "off",
100+
"no-div-regex": "error",
101+
"no-duplicate-imports": "error",
102+
"no-else-return": "error",
103+
"no-empty-function": "off",
104+
"no-eq-null": "error",
105+
"no-eval": "error",
106+
"no-extend-native": "error",
107+
"no-extra-bind": "error",
108+
"no-extra-label": "error",
109+
"no-extra-parens": "error",
110+
"no-floating-decimal": "error",
111+
"no-implicit-coercion": "error",
112+
"no-implicit-globals": "error",
113+
"no-implied-eval": "error",
114+
"no-inline-comments": "error",
115+
"no-invalid-this": "error",
116+
"no-iterator": "error",
117+
"no-label-var": "error",
118+
"no-labels": "error",
119+
"no-lone-blocks": "error",
120+
"no-lonely-if": "error",
121+
"no-loop-func": "error",
122+
"no-magic-numbers": "off",
123+
"no-misleading-character-class": "error",
124+
"no-mixed-operators": "off",
125+
"no-mixed-requires": "error",
126+
"no-multi-assign": "off",
127+
"no-multi-spaces": "off",
128+
"no-multi-str": "error",
129+
"no-multiple-empty-lines": "error",
130+
"no-native-reassign": "error",
131+
"no-negated-condition": "error",
132+
"no-negated-in-lhs": "error",
133+
"no-nested-ternary": "error",
134+
"no-new": "error",
135+
"no-new-func": "off",
136+
"no-new-object": "error",
137+
"no-new-require": "error",
138+
"no-new-wrappers": "error",
139+
"no-octal-escape": "error",
140+
"no-param-reassign": "off",
141+
"no-path-concat": "error",
142+
"no-plusplus": "off",
143+
"no-process-env": "error",
144+
"no-process-exit": "error",
145+
"no-proto": "error",
146+
"no-prototype-builtins": "error",
147+
"no-restricted-globals": "error",
148+
"no-restricted-imports": "error",
149+
"no-restricted-modules": "error",
150+
"no-restricted-properties": "error",
151+
"no-restricted-syntax": "error",
152+
"no-return-assign": "error",
153+
"no-return-await": "error",
154+
"no-script-url": "error",
155+
"no-self-compare": "error",
156+
"no-sequences": "off",
157+
"no-shadow": "off",
158+
"no-shadow-restricted-names": "error",
159+
"no-spaced-func": "error",
160+
"no-sync": "error",
161+
"no-tabs": "error",
162+
"no-template-curly-in-string": "error",
163+
"no-ternary": "off",
164+
"no-throw-literal": "error",
165+
"no-trailing-spaces": "error",
166+
"no-undef-init": "error",
167+
"no-undefined": "error",
168+
"no-underscore-dangle": "off",
169+
"no-unmodified-loop-condition": "error",
170+
"no-unneeded-ternary": "error",
171+
"no-unused-expressions": "off",
172+
"no-use-before-define": "error",
173+
"no-useless-call": "error",
174+
"no-useless-catch": "error",
175+
"no-useless-computed-key": "error",
176+
"no-useless-concat": "error",
177+
"no-useless-constructor": "error",
178+
"no-useless-rename": "error",
179+
"no-useless-return": "error",
180+
"no-var": "off",
181+
"no-void": "error",
182+
"no-warning-comments": "error",
183+
"no-whitespace-before-property": "error",
184+
"no-with": "error",
185+
"nonblock-statement-body-position": "error",
186+
"object-curly-newline": "error",
187+
"object-curly-spacing": "error",
188+
"object-property-newline": "error",
189+
"object-shorthand": "error",
190+
"one-var": "off",
191+
"one-var-declaration-per-line": "error",
192+
"operator-assignment": "error",
193+
"operator-linebreak": "error",
194+
"padded-blocks": "off",
195+
"padding-line-between-statements": "error",
196+
"prefer-arrow-callback": "off",
197+
"prefer-const": "error",
198+
"prefer-destructuring": "off",
199+
"prefer-numeric-literals": "error",
200+
"prefer-object-spread": "error",
201+
"prefer-promise-reject-errors": "error",
202+
"prefer-reflect": "off",
203+
"prefer-rest-params": "off",
204+
"prefer-spread": "error",
205+
"prefer-template": "off",
206+
"quote-props": "error",
207+
"quotes": [
208+
"error",
209+
"single"
210+
],
211+
"radix": "error",
212+
"require-atomic-updates": "error",
213+
"require-await": "error",
214+
"require-jsdoc": "off",
215+
"require-unicode-regexp": "off",
216+
"rest-spread-spacing": "error",
217+
"semi": "off",
218+
"semi-spacing": [
219+
"error",
220+
{
221+
"after": true,
222+
"before": false
223+
}
224+
],
225+
"semi-style": "error",
226+
"sort-imports": "error",
227+
"sort-keys": "error",
228+
"sort-vars": "off",
229+
"space-before-blocks": "error",
230+
"space-in-parens": [
231+
"error",
232+
"never"
233+
],
234+
"space-infix-ops": "off",
235+
"space-unary-ops": "error",
236+
"spaced-comment": "off",
237+
"strict": [
238+
"error",
239+
"never"
240+
],
241+
"switch-colon-spacing": "error",
242+
"symbol-description": "error",
243+
"template-curly-spacing": "error",
244+
"template-tag-spacing": "error",
245+
"unicode-bom": [
246+
"error",
247+
"never"
248+
],
249+
"valid-jsdoc": "error",
250+
"vars-on-top": "error",
251+
"wrap-iife": "off",
252+
"wrap-regex": "error",
253+
"yield-star-spacing": "error",
254+
"yoda": "off"
255+
}
256+
}

‎.build/.uglifyjs

+33
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
{
2+
"compress": {},
3+
"mangle": {
4+
"eval": false,
5+
"keep_fnames": false,
6+
"reserved": [],
7+
"toplevel": false
8+
},
9+
"nameCache": {},
10+
"output": {
11+
"ascii_only": true,
12+
"beautify": false,
13+
"braces": false,
14+
"indent_level": 0,
15+
"indent_start": 0,
16+
"inline_script": true,
17+
"keep_quoted_props": true,
18+
"max_line_len": false,
19+
"preamble": null,
20+
"preserve_line": false,
21+
"quote_keys": false,
22+
"quote_style": 1,
23+
"semicolons": true,
24+
"shebang": true,
25+
"source_map": null,
26+
"width": 80,
27+
"wrap_iife": false,
28+
"comments": "/^@/",
29+
"ie8": true,
30+
"webkit": true
31+
},
32+
"wrap": null
33+
}

0 commit comments

Comments
 (0)
Please sign in to comment.