File tree Expand file tree Collapse file tree 3 files changed +6
-4
lines changed Expand file tree Collapse file tree 3 files changed +6
-4
lines changed Original file line number Diff line number Diff line change @@ -34,6 +34,7 @@ module.exports = {
34
34
{ avoidEscape : true , allowTemplateLiterals : false }
35
35
] ,
36
36
curly : [ 'error' , 'all' ] ,
37
+ eqeqeq : 'error' ,
37
38
'prefer-arrow-callback' : 'error'
38
39
} ,
39
40
settings : {
Original file line number Diff line number Diff line change @@ -11,16 +11,16 @@ install: pip install --upgrade --upgrade-strategy=eager pytest pytest-asyncio "j
11
11
script :
12
12
# Build the sdist (identical to what will be uploaded to eg pypi on release)
13
13
- python setup.py sdist
14
+ # Linter checks
15
+ - jlpm run eslint-check
16
+
14
17
# Install the extension from the sdist ensuring the cache is unused
15
18
- pip install jupyterlab_git[test] --pre --no-index --find-links=dist --no-deps --no-cache-dir -v
16
19
# Install the extension dependencies based on the current setup.py
17
20
- pip install jupyterlab_git[test]
18
21
# Log the current state of jupyterlab's extensions
19
22
- jupyter labextension list
20
23
21
- # Do a eslint check
22
- - jlpm run lint-check
23
-
24
24
# Rebuild jupyterlab to include our extension
25
25
- jupyter lab build
26
26
Original file line number Diff line number Diff line change 4
4
5
5
// The linter must be relaxed on this imported file.
6
6
/* eslint-disable @typescript-eslint/ban-ts-ignore */
7
- /* eslint-disable prefer-arrow-callback */
7
+ /* eslint-disable eqeqeq */
8
8
/* eslint-disable no-inner-declarations */
9
+ /* eslint-disable prefer-arrow-callback */
9
10
10
11
import CodeMirror from 'codemirror' ;
11
12
You can’t perform that action at this time.
0 commit comments