forked from video-dev/hls.js
-
Notifications
You must be signed in to change notification settings - Fork 5
/
.eslintrc.js
136 lines (128 loc) · 3.17 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
module.exports = {
'env': {
'browser': true,
'commonjs': true,
'es6': true
},
'globals': {
// Allowed globals
'console': true,
// Compile-time defines
'__VERSION__': true,
'__USE_SUBTITLES__': true,
'__USE_ALT_AUDIO__': true,
'__USE_EME_DRM__': true
},
// see https://standardjs.com/
// see https://github.com/standard/eslint-config-standard
'extends': [
'eslint:recommended',
'standard'
],
'parser': '@typescript-eslint/parser',
'plugins': [
'@typescript-eslint'
],
'parserOptions': {
'sourceType': 'module'
},
'rules': {
// our basic style rules
'semi': [
'error',
'always'
],
'indent': [
'error',
2
],
'quotes': [
'error',
'single'
],
'linebreak-style': [
'error',
'unix'
],
// spacing
'space-infix-ops': 2,
'space-unary-ops': [2, { 'words': true, 'nonwords': false }],
'space-in-parens': ['error', 'never'],
'keyword-spacing': [2, { 'before': true, 'after': true }],
// enforce litteral objects on multiple lines
'block-spacing': 'error',
'curly': 2,
'object-curly-spacing': ['error', 'always'],
'brace-style': ['error', '1tbs', { 'allowSingleLine': false }],
// limit code block and line length
/*
"max-len": 1,
"max-statements": 1,
"max-depth": 1,
"max-nested-callbacks": 1,
"max-params": 1,
"max-statements": 1,
"max-statements-per-line": 1
*/
// loosening of code-quality rules we may want to fix later
// (warnings for now)
// forbid "one var" style, enforce one declaration per variable
'one-var': [
1,
'never'
],
'no-restricted-globals': [2,
{
'name': 'SourceBuffer',
'message': 'Use `self.SourceBuffer`'
}
],
'no-restricted-properties': [2,
{ 'property': 'findIndex' }, // Intended to block usage of Array.prototype.findIndex
{ 'property': 'find' } // Intended to block usage of Array.prototype.find
],
'standard/no-callback-literal': 1,
'import/first': 1,
'no-var': 1,
'no-empty': 1,
'no-mixed-operators': 1,
'no-unused-vars': 1,
'no-console': 1,
'no-fallthrough': 1,
'no-case-declarations': 1,
'no-irregular-whitespace': 1,
'no-self-assign': 1,
'new-cap': 1,
'no-undefined': 1,
'no-global-assign': 2,
// new rules that we should probably evaluate at some point
'no-void': 0,
'prefer-const': 0,
'indent': 0,
'array-bracket-spacing': 0,
'quote-props': 0,
'no-useless-catch': 0,
'no-prototype-builtins': 0,
'dot-notation': 0,
'lines-between-class-members': 0
},
'overrides': [
{
'files': ['*.ts'],
'rules': {
'no-unused-vars': 0,
'no-undef': 0,
'no-use-before-define': "off",
'@typescript-eslint/no-use-before-define': ["error"],
'@typescript-eslint/no-unused-vars': 1,
'@typescript-eslint/prefer-optional-chain': 2,
'@typescript-eslint/consistent-type-assertions': [ 2,
{
'assertionStyle': 'as',
'objectLiteralTypeAssertions': 'never'
}
]
}
}
]
};