Skip to content
This repository was archived by the owner on Mar 23, 2022. It is now read-only.

Commit 2e5dba7

Browse files
authored
Merge pull request #333 from RaenonX-DL/dev
v2.16.0 Release
2 parents dcdb4b9 + 7530da7 commit 2e5dba7

File tree

310 files changed

+7262
-5929
lines changed

Some content is hidden

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

310 files changed

+7262
-5929
lines changed

.eslintignore

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
# Dependencies
2+
3+
node_modules/**
4+
src/api-def/**
5+
6+
# Build artifacts
7+
8+
dist/**
9+
10+
# Type definitions
11+
12+
**/*.d.ts

.eslintrc.yml

Lines changed: 32 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
---
21
env:
32
browser: true
43
es6: true
@@ -13,17 +12,6 @@ extends:
1312
- plugin:eslint-plugin-import/typescript
1413
- plugin:@next/next/recommended
1514

16-
plugins:
17-
- "@typescript-eslint"
18-
- jest-dom
19-
- react
20-
- react-hooks
21-
- testing-library
22-
- unused-imports
23-
24-
ignorePatterns:
25-
- '*.d.ts'
26-
2715
globals:
2816
Atomics: readonly
2917
SharedArrayBuffer: readonly
@@ -36,6 +24,16 @@ parserOptions:
3624
ecmaVersion: 2021
3725
sourceType: module
3826

27+
plugins:
28+
- "@typescript-eslint"
29+
- jest-dom
30+
- react
31+
- react-hooks
32+
- testing-library
33+
34+
ignorePatterns:
35+
- '*.d.ts'
36+
3937
rules:
4038
"@typescript-eslint/no-unused-vars":
4139
- error
@@ -51,7 +49,7 @@ rules:
5149
- error
5250
- 2
5351
- ignoredNodes:
54-
- TSTypeParameterInstantiation
52+
- TSTypeParameterInstantiation
5553
MemberExpression: 1
5654

5755
# Needs to disable local indent for this rule to work properly
@@ -83,6 +81,27 @@ rules:
8381
order: asc
8482
caseInsensitive: true
8583

84+
import/newline-after-import:
85+
- error
86+
- count: 2
87+
88+
import/no-unresolved:
89+
- error
90+
- ignore:
91+
- csstype
92+
93+
object-curly-spacing: off
94+
95+
"@typescript-eslint/object-curly-spacing":
96+
- error
97+
- never
98+
99+
semi:
100+
- off
101+
102+
"@typescript-eslint/semi":
103+
- error
104+
86105
space-in-parens:
87106
- error
88107
- never
@@ -95,9 +114,6 @@ rules:
95114
- error
96115
- beforeSelfClosing: never
97116

98-
unused-imports/no-unused-imports:
99-
- error
100-
101117
"@next/next/no-img-element":
102118
- off
103119

0 commit comments

Comments
 (0)