|
5 | 5 | "sourceType": "module" |
6 | 6 | }, |
7 | 7 | "extends": [ |
8 | | - "plugin:@typescript-eslint/recommended", |
9 | | - "prettier/@typescript-eslint", |
10 | | - "plugin:prettier/recommended" |
| 8 | + "plugin:prettier/recommended", |
| 9 | + "plugin:@typescript-eslint/recommended" |
11 | 10 | ], |
12 | 11 | "env": { |
13 | 12 | "es6": true, |
|
25 | 24 | "arrow-body-style": ["error", "as-needed"], |
26 | 25 | "prefer-template": "error", |
27 | 26 | "max-len": ["warn", { "code": 120 }], |
28 | | - "no-unused-vars": ["warn", { |
29 | | - "argsIgnorePattern": "^_$|^e$|^reject$|^resolve$" |
30 | | - }], |
31 | 27 | "no-console": ["error", { |
32 | 28 | "allow": ["warn", "error"] |
33 | 29 | }], |
34 | 30 | "valid-jsdoc": "warn", |
35 | 31 | "semi": ["error", "always"], |
36 | 32 | "quotes": ["error", "double", { "allowTemplateLiterals": true }], |
37 | 33 | "@typescript-eslint/no-explicit-any": "off", |
38 | | - "header/header": [2, "block", ["", " Copyright 2021 The CloudEvents Authors"," SPDX-License-Identifier: Apache-2.0", ""], 2] |
| 34 | + "header/header": [2, "block", ["", " Copyright 2021 The CloudEvents Authors"," SPDX-License-Identifier: Apache-2.0", ""], 2], |
| 35 | + "no-unused-vars": "off", |
| 36 | + "@typescript-eslint/no-unused-vars": ["error"] |
39 | 37 | } |
40 | 38 | } |
0 commit comments