Skip to content

Commit d8eeffc

Browse files
authored
Merge pull request #16 from TheCodeRaccoons/Modifying-scalability-and-styling
Modifying scalability and styling
2 parents 922d623 + 9209d07 commit d8eeffc

31 files changed

Lines changed: 13740 additions & 2777 deletions

.eslintrc.json

Lines changed: 9 additions & 76 deletions
Original file line numberDiff line numberDiff line change
@@ -5,97 +5,30 @@
55
],
66
"rules": {
77
"max-len": [
8-
"error",
8+
"warn",
99
{
10-
"code": 100,
10+
"code": 120,
1111
"tabWidth": 4,
1212
"ignoreUrls": true,
13-
"ignoreStrings": true,
14-
"ignoreTemplateLiterals": true,
13+
"ignoreStrings": false,
14+
"ignoreTemplateLiterals": false,
1515
"ignoreRegExpLiterals": true,
1616
"ignoreComments": false
1717
}
18-
],
19-
"object-curly-newline": [
20-
"error",
21-
{
22-
"ObjectExpression": {
23-
"multiline": true,
24-
"minProperties": 3,
25-
"consistent": true
26-
},
27-
"ObjectPattern": {
28-
"multiline": true,
29-
"minProperties": 3,
30-
"consistent": true
31-
},
32-
"ImportDeclaration": {
33-
"multiline": true,
34-
"minProperties": 4,
35-
"consistent": true
36-
},
37-
"ExportDeclaration": {
38-
"multiline": true,
39-
"minProperties": 3,
40-
"consistent": true
41-
}
42-
}
43-
],
44-
"object-property-newline": [
45-
"error",
46-
{
47-
"allowAllPropertiesOnSameLine": false,
48-
"allowMultiplePropertiesPerLine": false
49-
}
50-
],
51-
"array-element-newline": [
52-
"error",
53-
{
54-
"ArrayExpression": "consistent",
55-
"ArrayPattern": "consistent"
56-
}
57-
],
58-
"function-paren-newline": ["error", "multiline-arguments"],
59-
"function-call-argument-newline": ["error", "consistent"],
60-
"indent": [
61-
"error",
62-
4,
63-
{
64-
"SwitchCase": 1,
65-
"VariableDeclarator": 1,
66-
"outerIIFEBody": 1,
67-
"MemberExpression": 1,
68-
"FunctionDeclaration": {
69-
"parameters": 1,
70-
"body": 1
71-
},
72-
"FunctionExpression": {
73-
"parameters": 1,
74-
"body": 1
75-
},
76-
"CallExpression": {
77-
"arguments": 1
78-
},
79-
"ArrayExpression": 1,
80-
"ObjectExpression": 1,
81-
"ImportDeclaration": 1,
82-
"flatTernaryExpressions": false,
83-
"ignoreComments": false
84-
}
8518
]
8619
},
8720
"overrides": [
8821
{
8922
"files": ["*.ts", "*.tsx"],
9023
"rules": {
91-
"@typescript-eslint/max-len": [
92-
"error",
24+
"max-len": [
25+
"warn",
9326
{
94-
"code": 100,
27+
"code": 120,
9528
"tabWidth": 4,
9629
"ignoreUrls": true,
97-
"ignoreStrings": true,
98-
"ignoreTemplateLiterals": true,
30+
"ignoreStrings": false,
31+
"ignoreTemplateLiterals": false,
9932
"ignoreRegExpLiterals": true,
10033
"ignoreComments": false
10134
}

.prettierrc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"printWidth": 100,
2+
"printWidth": 120,
33
"tabWidth": 4,
44
"useTabs": false,
55
"semi": true,

0 commit comments

Comments
 (0)