Skip to content

Commit 25a7063

Browse files
author
Ajit Kumar
committed
Transfer to Acode-Foundation
0 parents  commit 25a7063

File tree

210 files changed

+21526
-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.

210 files changed

+21526
-0
lines changed

.babelrc

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
{
2+
"presets": [
3+
"@babel/preset-env"
4+
],
5+
"plugins": [
6+
"html-tag-js/jsx/jsx-to-tag.js",
7+
"html-tag-js/jsx/syntax-parser.js",
8+
[
9+
"@babel/transform-runtime",
10+
{
11+
"regenerator": true
12+
}
13+
]
14+
],
15+
"compact": false
16+
}

.eslintignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
node_modules
2+
public
3+
typings

.eslintrc.json

Lines changed: 59 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,59 @@
1+
{
2+
"plugins": [
3+
"react",
4+
"import"
5+
],
6+
"env": {
7+
"browser": true,
8+
"es2021": true,
9+
"node": true
10+
},
11+
"extends": [
12+
"airbnb-base"
13+
],
14+
"parserOptions": {
15+
"ecmaVersion": 13,
16+
"sourceType": "module",
17+
"ecmaFeatures": {
18+
"jsx": true
19+
}
20+
},
21+
"rules": {
22+
"react/jsx-uses-react": "error",
23+
"react/jsx-uses-vars": "error",
24+
"no-use-before-define": "off",
25+
"no-param-reassign": "off",
26+
"no-plusplus": "off",
27+
"lines-between-class-members": "off",
28+
"operator-linebreak": "off",
29+
"import/no-unresolved": "error",
30+
"comma-dangle": [
31+
2,
32+
"always-multiline"
33+
]
34+
},
35+
"globals": {
36+
"main": "readonly",
37+
"app": "readonly",
38+
"ADMIN": "readonly",
39+
"tag": "readonly"
40+
},
41+
"settings": {
42+
"import/parsers": {
43+
"@typescript-eslint/parser": [
44+
".ts",
45+
".tsx"
46+
]
47+
},
48+
"import/resolver": {
49+
"node": {
50+
"paths": [
51+
"src"
52+
]
53+
},
54+
"typescript": {
55+
"alwaysTryTypes": true
56+
}
57+
}
58+
}
59+
}

.gitignore

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
node_modules
2+
.env
3+
public
4+
data
5+
.DS_Store

.hintrc

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
{
2+
"extends": [
3+
"development"
4+
],
5+
"hints": {
6+
"compat-api/css": "off",
7+
"detect-css-reflows/composite": "off"
8+
}
9+
}

.idea/.gitignore

Lines changed: 5 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/acode_app.iml

Lines changed: 12 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/codeStyles/Project.xml

Lines changed: 70 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/codeStyles/codeStyleConfig.xml

Lines changed: 5 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/inspectionProfiles/Project_Default.xml

Lines changed: 6 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)