-
Notifications
You must be signed in to change notification settings - Fork 421
Expand file tree
/
Copy path.eslintrc.js
More file actions
46 lines (46 loc) · 1.57 KB
/
.eslintrc.js
File metadata and controls
46 lines (46 loc) · 1.57 KB
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
/* eslint-env node */
/** @type {import('eslint').Linter.Config} */
module.exports = {
root: true,
parser: '@typescript-eslint/parser',
parserOptions: {
/* Reset project because @angular-eslint/recommended sets this to an incompatible value */
project: null,
},
// There is no file include in ESLint. Thus, ignore all and include files via negative ignore (!)
ignorePatterns: ['/*', '!/src', '!/test'],
extends: [
'eslint:recommended',
'plugin:@typescript-eslint/recommended',
'plugin:import/recommended',
'plugin:import/typescript',
'plugin:@angular-eslint/recommended',
'plugin:@angular-eslint/template/process-inline-templates',
'plugin:prettier/recommended',
],
rules: {
'@angular-eslint/component-class-suffix': 'off',
'@angular-eslint/directive-class-suffix': 'off',
'@angular-eslint/no-conflicting-lifecycle': 'warn',
// Starting with Angular 19, non-standalone components produce a lint error. Reduce to warning until we migrate.
'@angular-eslint/prefer-standalone': 'warn',
'@typescript-eslint/no-explicit-any': 'off',
// Base rule must be disabled to avoid incorrect errors
'no-unused-vars': 'off',
'@typescript-eslint/no-unused-vars': [
'warn', // or "error"
{
argsIgnorePattern: '^_',
varsIgnorePattern: '^_',
caughtErrorsIgnorePattern: '^_',
},
],
'import/no-unresolved': [
'error',
{
// Ignore ava import because it is incorrectly reported as unresolved despite working as expected.
ignore: ['^ava$'],
},
],
},
};