|
1 | 1 | { |
2 | 2 | "name": "org-newtab", |
3 | 3 | "displayName": "__MSG_extensionName__", |
4 | | - "version": "0.0.4", |
| 4 | + "version": "0.1.0", |
5 | 5 | "description": "__MSG_extensionDescription__", |
6 | 6 | "directories": { |
7 | 7 | "test": "test" |
|
118 | 118 | }, |
119 | 119 | "useJSXTextNode": true |
120 | 120 | }, |
121 | | - "plugins": [ |
122 | | - "@typescript-eslint", |
123 | | - "react" |
124 | | - ], |
| 121 | + "plugins": ["@typescript-eslint", "react"], |
125 | 122 | "extends": [ |
126 | 123 | "eslint:recommended", |
127 | 124 | "plugin:@typescript-eslint/eslint-recommended", |
|
135 | 132 | ], |
136 | 133 | "overrides": [ |
137 | 134 | { |
138 | | - "files": [ |
139 | | - "**/__tests__/**" |
140 | | - ], |
141 | | - "plugins": [ |
142 | | - "jest" |
143 | | - ], |
144 | | - "extends": [ |
145 | | - "plugin:jest/recommended", |
146 | | - "plugin:jest/style" |
147 | | - ], |
| 135 | + "files": ["**/__tests__/**"], |
| 136 | + "plugins": ["jest"], |
| 137 | + "extends": ["plugin:jest/recommended", "plugin:jest/style"], |
148 | 138 | "rules": { |
149 | 139 | "@typescript-eslint/unbound-method": "off", |
150 | 140 | "jest/unbound-method": "error" |
151 | 141 | } |
152 | 142 | } |
153 | 143 | ], |
154 | 144 | "rules": { |
155 | | - "quotes": [ |
156 | | - "error", |
157 | | - "single" |
158 | | - ], |
159 | | - "semi": [ |
160 | | - "error", |
161 | | - "always" |
162 | | - ], |
| 145 | + "quotes": ["error", "single"], |
| 146 | + "semi": ["error", "always"], |
163 | 147 | "no-console": [ |
164 | 148 | "error", |
165 | 149 | { |
166 | | - "allow": [ |
167 | | - "warn", |
168 | | - "error", |
169 | | - "debug" |
170 | | - ] |
| 150 | + "allow": ["warn", "error", "debug"] |
171 | 151 | } |
172 | 152 | ], |
173 | | - "no-mixed-spaces-and-tabs": [ |
174 | | - "error", |
175 | | - "smart-tabs" |
176 | | - ], |
| 153 | + "no-mixed-spaces-and-tabs": ["error", "smart-tabs"], |
177 | 154 | "react/prop-types": 0, |
178 | 155 | "@typescript-eslint/unbound-method": [ |
179 | 156 | "error", |
|
198 | 175 | "arrowParens": "always", |
199 | 176 | "overrides": [ |
200 | 177 | { |
201 | | - "files": [ |
202 | | - "*.yml", |
203 | | - ".el" |
204 | | - ], |
| 178 | + "files": ["*.yml", ".el"], |
205 | 179 | "options": { |
206 | 180 | "tabWidth": 2, |
207 | 181 | "useTabs": false |
|
210 | 184 | ] |
211 | 185 | }, |
212 | 186 | "stylelint": { |
213 | | - "extends": [ |
214 | | - "stylelint-config-standard" |
215 | | - ], |
| 187 | + "extends": ["stylelint-config-standard"], |
216 | 188 | "rules": { |
217 | 189 | "comment-whitespace-inside": null, |
218 | 190 | "declaration-block-no-shorthand-property-overrides": true, |
219 | 191 | "function-no-unknown": [ |
220 | 192 | true, |
221 | 193 | { |
222 | | - "ignoreFunctions": [ |
223 | | - "/^linear$/" |
224 | | - ] |
| 194 | + "ignoreFunctions": ["/^linear$/"] |
225 | 195 | } |
226 | 196 | ], |
227 | 197 | "no-descending-specificity": null, |
228 | 198 | "selector-pseudo-class-no-unknown": [ |
229 | 199 | true, |
230 | 200 | { |
231 | | - "ignorePseudoClasses": [ |
232 | | - "global" |
233 | | - ] |
| 201 | + "ignorePseudoClasses": ["global"] |
234 | 202 | } |
235 | 203 | ], |
236 | 204 | "value-keyword-case": null |
237 | 205 | } |
238 | 206 | }, |
239 | 207 | "browserslist": { |
240 | | - "production": [ |
241 | | - "> 0.2%", |
242 | | - "Firefox ESR", |
243 | | - "not dead", |
244 | | - "not op_mini all" |
245 | | - ], |
| 208 | + "production": ["> 0.2%", "Firefox ESR", "not dead", "not op_mini all"], |
246 | 209 | "development": [ |
247 | 210 | "last 1 chrome version", |
248 | 211 | "last 1 firefox version", |
|
0 commit comments