Skip to content

Commit f9828fa

Browse files
committed
ADD: Cypress config;
Signed-off-by: HarmonySkull <[email protected]>
1 parent f9fc767 commit f9828fa

File tree

1,520 files changed

+4120
-149
lines changed

Some content is hidden

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

1,520 files changed

+4120
-149
lines changed

.eslintignore

Lines changed: 119 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,115 @@
1+
### macOS template
2+
# General
3+
.DS_Store
4+
.AppleDouble
5+
.LSOverride
6+
7+
# Icon must end with two \r
8+
Icon
9+
10+
# Thumbnails
11+
._*
12+
13+
# Files that might appear in the root of a volume
14+
.DocumentRevisions-V100
15+
.fseventsd
16+
.Spotlight-V100
17+
.TemporaryItems
18+
.Trashes
19+
.VolumeIcon.icns
20+
.com.apple.timemachine.donotpresent
21+
22+
# Directories potentially created on remote AFP share
23+
.AppleDB
24+
.AppleDesktop
25+
Network Trash Folder
26+
Temporary Items
27+
.apdisk
28+
29+
### VisualStudioCode template
30+
.vscode/*
31+
!.vscode/settings.json
32+
!.vscode/tasks.json
33+
!.vscode/launch.json
34+
!.vscode/extensions.json
35+
*.code-workspace
36+
37+
# Local History for Visual Studio Code
38+
.history/
39+
40+
### JetBrains template
41+
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio, WebStorm and Rider
42+
# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
43+
44+
# User-specific stuff
45+
.idea/**/workspace.xml
46+
.idea/**/tasks.xml
47+
.idea/**/usage.statistics.xml
48+
.idea/**/dictionaries
49+
.idea/**/shelf
50+
51+
# Generated files
52+
.idea/**/contentModel.xml
53+
54+
# Sensitive or high-churn files
55+
.idea/**/dataSources/
56+
.idea/**/dataSources.ids
57+
.idea/**/dataSources.local.xml
58+
.idea/**/sqlDataSources.xml
59+
.idea/**/dynamic.xml
60+
.idea/**/uiDesigner.xml
61+
.idea/**/dbnavigator.xml
62+
63+
# Gradle
64+
.idea/**/gradle.xml
65+
.idea/**/libraries
66+
67+
# Gradle and Maven with auto-import
68+
# When using Gradle or Maven with auto-import, you should exclude module files,
69+
# since they will be recreated, and may cause churn. Uncomment if using
70+
# auto-import.
71+
# .idea/artifacts
72+
# .idea/compiler.xml
73+
# .idea/jarRepositories.xml
74+
# .idea/modules.xml
75+
# .idea/*.iml
76+
# .idea/modules
77+
# *.iml
78+
# *.ipr
79+
80+
# CMake
81+
cmake-build-*/
82+
83+
# Mongo Explorer plugin
84+
.idea/**/mongoSettings.xml
85+
86+
# File-based project format
87+
*.iws
88+
89+
# IntelliJ
90+
out/
91+
92+
# mpeltonen/sbt-idea plugin
93+
.idea_modules/
94+
95+
# JIRA plugin
96+
atlassian-ide-plugin.xml
97+
98+
# Cursive Clojure plugin
99+
.idea/replstate.xml
100+
101+
# Crashlytics plugin (for Android Studio and IntelliJ)
102+
com_crashlytics_export_strings.xml
103+
crashlytics.properties
104+
crashlytics-build.properties
105+
fabric.properties
106+
107+
# Editor-based Rest Client
108+
.idea/httpRequests
109+
110+
# Android studio 3.1+ serialized cache file
111+
.idea/caches/build_file_checksums.ser
112+
1113
### Node template
2114
# Logs
3115
logs
@@ -110,10 +222,12 @@ dist
110222
.vscode-test
111223

112224
# yarn v2
113-
.yarn/cache
225+
.pnp.*
226+
.yarn/*
227+
!.yarn/sdks
228+
!.yarn/patches
229+
!.yarn/plugins
230+
!.yarn/releases
231+
!.yarn/versions
114232
.yarn/unplugged
115233
.yarn/build-state.yml
116-
.yarn/install-state.gz
117-
.pnp.*
118-
119-
/.yarn/releases/yarn-berry.cjs

.eslintrc.json

Lines changed: 35 additions & 34 deletions
Original file line numberDiff line numberDiff line change
@@ -1,38 +1,39 @@
11
{
2-
"env": {
3-
"browser": true,
4-
"es2021": true,
5-
"node": true
2+
"env": {
3+
"browser": true,
4+
"es2021": true,
5+
"node": true
6+
},
7+
"extends": [
8+
"eslint:recommended",
9+
"plugin:react/recommended",
10+
"plugin:@typescript-eslint/recommended"
11+
],
12+
"parser": "@typescript-eslint/parser",
13+
"parserOptions": {
14+
"ecmaFeatures": {
15+
"jsx": true
616
},
7-
"extends": [
8-
"eslint:recommended",
9-
"plugin:react/recommended",
10-
"plugin:@typescript-eslint/recommended"
17+
"ecmaVersion": "latest",
18+
"sourceType": "module"
19+
},
20+
"plugins": [
21+
"react",
22+
"prettier",
23+
"@typescript-eslint"
24+
],
25+
"rules": {
26+
"@typescript-eslint/no-non-null-assertion": "off",
27+
"prettier/prettier": [
28+
"error",
29+
{
30+
"endOfLine": "auto"
31+
},
32+
{
33+
"usePrettierrc": true
34+
}
1135
],
12-
"parser": "@typescript-eslint/parser",
13-
"parserOptions": {
14-
"ecmaFeatures": {
15-
"jsx": true
16-
},
17-
"ecmaVersion": "latest",
18-
"sourceType": "module"
19-
},
20-
"plugins": [
21-
"react",
22-
"prettier",
23-
"@typescript-eslint"
24-
],
25-
"rules": {
26-
"@typescript-eslint/no-non-null-assertion": "off",
27-
"prettier/prettier": [
28-
"error",
29-
{
30-
"endOfLine": "auto"
31-
},
32-
{
33-
"usePrettierrc": true
34-
}
35-
],
36-
"react/react-in-jsx-scope": "off"
37-
}
36+
"react/react-in-jsx-scope": "off",
37+
"@typescript-eslint/no-namespace": "off"
38+
}
3839
}

0 commit comments

Comments
 (0)