File tree Expand file tree Collapse file tree 1 file changed +0
-65
lines changed Expand file tree Collapse file tree 1 file changed +0
-65
lines changed Original file line number Diff line number Diff line change 6969 "typescript-eslint" : " ^8.9.0" ,
7070 "web-ext" : " ^8.3.0"
7171 },
72- "eslintConfig" : {
73- "root" : true ,
74- "extends" : [
75- " eslint:recommended" ,
76- " plugin:@typescript-eslint/recommended" ,
77- " plugin:import/errors" ,
78- " plugin:import/warnings" ,
79- " plugin:import/typescript" ,
80- " prettier"
81- ],
82- "plugins" : [
83- " @typescript-eslint"
84- ],
85- "parser" : " @typescript-eslint/parser" ,
86- "parserOptions" : {
87- "sourceType" : " module"
88- },
89- "env" : {
90- "browser" : true ,
91- "node" : true
92- },
93- "ignorePatterns" : [
94- " *.html"
95- ],
96- "rules" : {
97- "@typescript-eslint/no-explicit-any" : " off" ,
98- "@typescript-eslint/explicit-member-accessibility" : " error" ,
99- "@typescript-eslint/no-inferrable-types" : " off" ,
100- "@typescript-eslint/no-var-requires" : " off" ,
101- "@typescript-eslint/explicit-function-return-type" : [
102- " error" ,
103- {
104- "allowExpressions" : true
105- }
106- ],
107- "@typescript-eslint/explicit-module-boundary-types" : [
108- " error" ,
109- {
110- "allowArgumentsExplicitlyTypedAsAny" : true
111- }
112- ],
113- "@typescript-eslint/no-unused-vars" : [
114- " error" ,
115- {
116- "caughtErrors" : " none"
117- }
118- ],
119- "import/order" : [
120- " error" ,
121- {
122- "alphabetize" : {
123- "order" : " asc" ,
124- "caseInsensitive" : true
125- }
126- }
127- ],
128- "sort-imports" : [
129- " error" ,
130- {
131- "ignoreCase" : true ,
132- "ignoreDeclarationSort" : true
133- }
134- ]
135- }
136- },
13772 "prettier" : {
13873 "singleQuote" : true ,
13974 "trailingComma" : " all" ,
You can’t perform that action at this time.
0 commit comments