1
1
const importOrderConfig = require ( "./rule-configs/import-order/base.js" ) ;
2
2
const namingConventionConfig = require ( "./rule-configs/naming-convention/base.js" ) ;
3
3
4
- module . exports = {
5
- env : {
6
- browser : true ,
7
- es2021 : true ,
8
- node : true ,
9
- } ,
10
- extends : [ "airbnb-base" , "airbnb-typescript/base" , "prettier" ] ,
11
- parser : "@typescript-eslint/parser" ,
12
- parserOptions : {
13
- ecmaFeatures : {
14
- jsx : true ,
4
+ module . exports = [
5
+ {
6
+ files : [ "**/*.{ts,tsx,js,jsx,mjs}" ] ,
7
+ languageOptions : {
8
+ ecmaVersion : 2021 ,
9
+ sourceType : "module" ,
10
+ ecmaFeatures : {
11
+ jsx : true ,
12
+ } ,
13
+ parser : "@typescript-eslint/parser" ,
14
+ parserOptions : {
15
+ project : [ "./tsconfig.json" ] ,
16
+ } ,
15
17
} ,
16
- ecmaVersion : 12 ,
17
- sourceType : "module" ,
18
- project : [ "./tsconfig.json" ] ,
19
- } ,
20
- plugins : [
21
- "@typescript-eslint" ,
22
- " prettier",
23
- " import",
24
- "sort-export-all" ,
25
- " deprecation",
26
- ] ,
27
- rules : {
28
- // Prettier handles indent, whitespace and empty lines
29
- "prettier/prettier" : 2 ,
18
+ env : {
19
+ browser : true ,
20
+ node : true ,
21
+ } ,
22
+ plugins : {
23
+ "@typescript-eslint" : require ( "@typescript-eslint/eslint-plugin" ) ,
24
+ prettier : require ( "eslint-plugin- prettier") ,
25
+ import : require ( "eslint-plugin- import") ,
26
+ "sort-export-all" : require ( "eslint-plugin-sort-export-all" ) ,
27
+ deprecation : require ( "eslint-plugin- deprecation") ,
28
+ } ,
29
+ rules : {
30
+ // Prettier rules
31
+ "prettier/prettier" : 2 ,
30
32
31
- // Warn about deprecated methods and properties
32
- "deprecation/deprecation" : "warn" ,
33
+ // Warn about deprecated methods and properties
34
+ "deprecation/deprecation" : "warn" ,
33
35
34
- // Import rules
35
- "sort-export-all/sort-export-all" : [
36
- "error" ,
37
- "asc" ,
38
- {
39
- caseSensitive : false ,
40
- natural : false ,
41
- } ,
42
- ] ,
43
- "import/extensions" : [
44
- "error" ,
45
- "never" ,
46
- { svg : "always" , json : "always" , css : "always" , scss : "always" } ,
47
- ] ,
48
- "import/order" : [ "error" , importOrderConfig ] ,
49
- "import/prefer-default-export" : "off" ,
50
- "import/no-default-export" : "error" ,
51
- "import/no-extraneous-dependencies" : "error" ,
52
- "sort-imports" : [
53
- "error" ,
54
- {
55
- ignoreCase : true ,
56
- ignoreDeclarationSort : true ,
57
- ignoreMemberSort : false ,
58
- memberSyntaxSortOrder : [ "none" , "all" , "multiple" , "single" ] ,
59
- } ,
60
- ] ,
36
+ // Import rules
37
+ "sort-export-all/sort-export-all" : [
38
+ "error" ,
39
+ "asc" ,
40
+ {
41
+ caseSensitive : false ,
42
+ natural : false ,
43
+ } ,
44
+ ] ,
45
+ "import/extensions" : [
46
+ "error" ,
47
+ "never" ,
48
+ { svg : "always" , json : "always" , css : "always" , scss : "always" } ,
49
+ ] ,
50
+ "import/order" : [ "error" , importOrderConfig ] ,
51
+ "import/prefer-default-export" : "off" ,
52
+ "import/no-default-export" : "error" ,
53
+ "import/no-extraneous-dependencies" : "error" ,
54
+ "sort-imports" : [
55
+ "error" ,
56
+ {
57
+ ignoreCase : true ,
58
+ ignoreDeclarationSort : true ,
59
+ ignoreMemberSort : false ,
60
+ memberSyntaxSortOrder : [ "none" , "all" , "multiple" , "single" ] ,
61
+ } ,
62
+ ] ,
61
63
62
- // General code-style rules
63
- "@typescript-eslint/naming-convention" : namingConventionConfig ,
64
- "id-blacklist" : [
65
- 2 ,
66
- "arr" ,
67
- "cb" ,
68
- "e" ,
69
- "el" ,
70
- "err" ,
71
- "idx" ,
72
- "num" ,
73
- "str" ,
74
- "tmp" ,
75
- "val" ,
76
- ] ,
77
- "no-return-assign" : [ "error" , "except-parens" ] ,
78
- "no-unused-vars" : "off" ,
79
- "@typescript-eslint/no-unused-vars" : [
80
- "error" ,
81
- { argsIgnorePattern : "^_" , ignoreRestSiblings : true } ,
82
- ] ,
83
- "@typescript-eslint/consistent-type-imports" : "error" ,
84
- "@typescript-eslint/no-import-type-side-effects" : "error" ,
64
+ // General code-style rules
65
+ "@typescript-eslint/naming-convention" : namingConventionConfig ,
66
+ "id-blacklist" : [
67
+ 2 ,
68
+ "arr" ,
69
+ "cb" ,
70
+ "e" ,
71
+ "el" ,
72
+ "err" ,
73
+ "idx" ,
74
+ "num" ,
75
+ "str" ,
76
+ "tmp" ,
77
+ "val" ,
78
+ ] ,
79
+ "no-return-assign" : [ "error" , "except-parens" ] ,
80
+ "no-unused-vars" : "off" ,
81
+ "@typescript-eslint/no-unused-vars" : [
82
+ "error" ,
83
+ { argsIgnorePattern : "^_" , ignoreRestSiblings : true } ,
84
+ ] ,
85
+ "@typescript-eslint/consistent-type-imports" : "error" ,
86
+ "@typescript-eslint/no-import-type-side-effects" : "error" ,
85
87
86
- "prefer-destructuring" : "warn" ,
87
- "no-nested-ternary" : "warn" ,
88
+ "prefer-destructuring" : "warn" ,
89
+ "no-nested-ternary" : "warn" ,
88
90
89
- "func-style" : [ "error" , "declaration" ] ,
91
+ "func-style" : [ "error" , "declaration" ] ,
90
92
91
- // Extra rules
92
- radix : "off" ,
93
+ radix : "off" ,
94
+ } ,
93
95
} ,
94
- } ;
96
+ ] ;
0 commit comments