forked from DethAriel/ng-recaptcha
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc.js
60 lines (60 loc) · 1.89 KB
/
.eslintrc.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
module.exports = {
root: true,
parserOptions: {
ecmaVersion: 2017,
},
env: {
es6: true,
},
overrides: [
{
files: ["*.ts"],
parserOptions: {
project: [
"./projects/ng-recaptcha/tsconfig.spec.json",
"./projects/ng-recaptcha/tsconfig.lib.json",
"./projects/ng-recaptcha/tsconfig.lib.prod.json",
"./projects/demo/cypress/tsconfig.json",
"./projects/demo/tsconfig.app.json",
"./tsconfig.node.json",
"./tsconfig.json",
],
createDefaultProgram: true,
},
extends: [
"eslint:recommended",
"plugin:@typescript-eslint/recommended",
"plugin:@typescript-eslint/recommended-requiring-type-checking",
"plugin:@angular-eslint/recommended",
// This is required if you use inline templates in Components
"plugin:@angular-eslint/template/process-inline-templates",
"prettier",
],
rules: {
// this produces false-positives on `RecaptchaValueAccessorDirective.selector` (complains about absence of prefix in re-captcha[**formControlName])
// "@angular-eslint/directive-selector": [
// "error",
// { type: "attribute", prefix: "re", style: "camelCase" },
// ],
"@angular-eslint/directive-selector": 0,
"@angular-eslint/component-selector": ["error", { type: "element", prefix: "re", style: "kebab-case" }],
"@typescript-eslint/no-namespace": [
"error",
{
allowDeclarations: true,
},
],
},
},
{
files: ["*.html"],
extends: ["plugin:@angular-eslint/template/recommended"],
rules: {
/**
* Any template/HTML related rules you wish to use/reconfigure over and above the
* recommended set provided by the @angular-eslint project would go here.
*/
},
},
],
};