File tree 3 files changed +22
-13
lines changed
3 files changed +22
-13
lines changed Original file line number Diff line number Diff line change 5
5
],
6
6
"root": true,
7
7
"rules": {
8
+ "canonical/destructuring-property-newline": 0,
9
+ "canonical/export-specifier-newline": 0,
10
+ "canonical/filename-match-exported": 0,
11
+ "canonical/filename-match-regex": 0,
12
+ "canonical/id-match": 0,
13
+ "canonical/import-specifier-newline": 0,
14
+ "canonical/no-use-extend-native": 0,
15
+ "require-unicode-regexp": 0,
16
+ "canonical/sort-keys": 0,
17
+ "filenames/match-regex": 0,
8
18
"flowtype/no-weak-types": 0,
9
19
"flowtype/require-parameter-type": 0,
10
- "flowtype/require-return-type": 0
20
+ "flowtype/require-return-type": 0,
21
+ "no-undef": 0
11
22
},
12
23
"plugins": [
13
24
"promise"
Original file line number Diff line number Diff line change 1
- /* eslint-disable filenames/match-regex */
2
-
3
1
import YouTubePlayer from 'youtube-player' ;
4
2
5
3
global . YouTubePlayer = YouTubePlayer ;
Original file line number Diff line number Diff line change 1
- /* eslint-disable filenames/match-regex, import/no-commonjs */
1
+ /* eslint-disable import/no-commonjs */
2
2
3
3
const path = require ( 'path' ) ;
4
4
const webpack = require ( 'webpack' ) ;
@@ -11,29 +11,29 @@ module.exports = {
11
11
host : '127.0.0.1' ,
12
12
hot : false ,
13
13
noInfo : false ,
14
- port : 8000 ,
14
+ port : 8_000 ,
15
15
publicPath : '/' ,
16
- quiet : false
16
+ quiet : false ,
17
17
} ,
18
18
devtool : 'source-map' ,
19
19
entry : {
20
- 'youtube-player' : './youtube-player.js'
20
+ 'youtube-player' : './youtube-player.js' ,
21
21
} ,
22
22
module : {
23
23
loaders : [
24
24
{
25
25
include : path . resolve ( __dirname , './src' ) ,
26
26
loader : 'babel-loader' ,
27
- test : / \. j s $ /
28
- }
29
- ]
27
+ test : / \. j s $ / ,
28
+ } ,
29
+ ] ,
30
30
} ,
31
31
output : {
32
32
filename : '[name].js' ,
33
33
path : __dirname ,
34
- publicPath : '/'
34
+ publicPath : '/' ,
35
35
} ,
36
36
plugins : [
37
- new webpack . NoEmitOnErrorsPlugin ( )
38
- ]
37
+ new webpack . NoEmitOnErrorsPlugin ( ) ,
38
+ ] ,
39
39
} ;
You can’t perform that action at this time.
0 commit comments