-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc.cjs
37 lines (36 loc) · 899 Bytes
/
.eslintrc.cjs
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
/** @type {import('eslint').Linter.Config} */ const config = {
root: true,
parserOptions: {
parser: '@typescript-eslint/parser',
sourceType: 'module',
},
env: {
browser: true,
},
plugins: ['@typescript-eslint'],
extends: [
'eslint:recommended',
'plugin:@typescript-eslint/recommended',
],
rules: {
// Necessary to use tabs for indentation.
'no-tabs': ['error', { allowIndentationTabs: true }],
indent: 'off',
'@typescript-eslint/indent': ['error', 'tab'],
// Other rules.
'comma-dangle': 'off',
'@typescript-eslint/comma-dangle': ['error', 'always-multiline'],
'space-before-function-paren': ['error', 'always'],
'@typescript-eslint/no-unused-vars': ['error', { 'ignoreRestSiblings': true }],
},
overrides: [
{
files: '*.test.ts',
rules: {
'@typescript-eslint/ban-ts-comment': 'off',
},
},
],
}
/* eslint-env node */
module.exports = config